Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/upstream/main' into multip…
Browse files Browse the repository at this point in the history
…le-forms
  • Loading branch information
unlocomqx committed Apr 7, 2024
2 parents 54306fd + ccb3ea0 commit 4305d6f
Show file tree
Hide file tree
Showing 7 changed files with 248 additions and 214 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ Headlines: Added, Changed, Deprecated, Removed, Fixed, Security
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.12.2] - 2024-03-29

### Fixed

- Fixed `FormResult` type that can be used in `onUpdate`, it didn't filter out SuperValidated.

## [2.12.0] - 2024-03-28

### Added
Expand Down
3 changes: 2 additions & 1 deletion issue.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pushd src\routes\(v2)\v2\%1
pushd src\routes\(v2)\v2\%1 || EXIT /B 1
rm +layout.svelte
grep -rl . | xargs sed -i "s#'sveltekit-superforms'#'$lib/index.js'#g"
grep -rl . | xargs sed -i -E "s#import \{ ([a-z]+) \} from 'sveltekit-superforms/adapters'#import { \1 } from '$lib/adapters/\1.js'#g"
grep -rl . | xargs sed -i -E "s#import \{ ([a-z]+)Client \} from 'sveltekit-superforms/adapters'#import { \1Client } from '$lib/adapters/\1.js'#g"
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sveltekit-superforms",
"version": "2.12.0",
"version": "2.12.2",
"author": "Andreas Söderlund <[email protected]> (https://blog.encodeart.dev)",
"description": "Making SvelteKit forms a pleasure to use!",
"keywords": [
Expand Down Expand Up @@ -136,7 +136,7 @@
"@sodaru/yup-to-json-schema": "^2.0.1",
"@vinejs/vine": "^1.8.0",
"arktype": "1.0.29-alpha",
"joi": "^17.12.2",
"joi": "^17.12.3",
"superstruct": "^1.0.4",
"valibot": "^0.30.0",
"yup": "^1.4.0",
Expand All @@ -151,11 +151,11 @@
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.2.0",
"@sveltejs/kit": "^2.5.4",
"@sveltejs/package": "^2.3.0",
"@sveltejs/kit": "^2.5.5",
"@sveltejs/package": "^2.3.1",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@types/json-schema": "^7.0.15",
"@types/node": "^20.11.30",
"@types/node": "^20.12.5",
"@types/throttle-debounce": "^5.0.2",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
Expand All @@ -169,17 +169,17 @@
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"publint": "^0.2.7",
"sass": "^1.72.0",
"svelte": "5.0.0-next.85",
"svelte-check": "^3.6.8",
"sass": "^1.74.1",
"svelte": "5.0.0-next.95",
"svelte-check": "^3.6.9",
"svelte-french-toast": "^1.2.0",
"sveltekit-flash-message": "^2.4.4",
"sveltekit-rate-limiter": "^0.5.1",
"throttle-debounce": "^5.0.0",
"tslib": "^2.6.2",
"typescript": "^5.4.3",
"typescript": "^5.4.4",
"uuid": "^9.0.1",
"vite": "^5.2.6",
"vite": "^5.2.8",
"vitest": "^1.4.0"
},
"svelte": "./dist/index.js",
Expand Down
Loading

0 comments on commit 4305d6f

Please sign in to comment.