diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fa345bad..47d79c631 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ For changes prior to v1.0.0, see the [legacy releases](https://legacy.inertiajs. ## [Unreleased](https://github.com/inertiajs/inertia/compare/v1.0.12...HEAD) +- Nothing + +## [v1.0.13](https://github.com/inertiajs/inertia/compare/v1.0.12...v1.0.13) + - Clear errors on form reset ([#1568](https://github.com/inertiajs/inertia/pull/1568)) - Fix Link type in React ([#1659](https://github.com/inertiajs/inertia/pull/1659)) diff --git a/package-lock.json b/package-lock.json index 45d6b5832..085bbfebb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3952,7 +3952,7 @@ }, "packages/core": { "name": "@inertiajs/core", - "version": "1.0.12", + "version": "1.0.13", "license": "MIT", "dependencies": { "axios": "^1.2.0", @@ -3985,10 +3985,10 @@ }, "packages/react": { "name": "@inertiajs/react", - "version": "1.0.12", + "version": "1.0.13", "license": "MIT", "dependencies": { - "@inertiajs/core": "1.0.12", + "@inertiajs/core": "1.0.13", "lodash.isequal": "^4.5.0" }, "devDependencies": { @@ -4017,10 +4017,10 @@ }, "packages/svelte": { "name": "@inertiajs/svelte", - "version": "1.0.12", + "version": "1.0.13", "license": "MIT", "dependencies": { - "@inertiajs/core": "1.0.12", + "@inertiajs/core": "1.0.13", "lodash.clonedeep": "^4.5.0", "lodash.isequal": "^4.5.0" }, @@ -4030,10 +4030,10 @@ }, "packages/vue2": { "name": "@inertiajs/vue2", - "version": "1.0.12", + "version": "1.0.13", "license": "MIT", "dependencies": { - "@inertiajs/core": "1.0.12", + "@inertiajs/core": "1.0.13", "lodash.clonedeep": "^4.5.0", "lodash.isequal": "^4.5.0" }, @@ -4061,10 +4061,10 @@ }, "packages/vue3": { "name": "@inertiajs/vue3", - "version": "1.0.12", + "version": "1.0.13", "license": "MIT", "dependencies": { - "@inertiajs/core": "1.0.12", + "@inertiajs/core": "1.0.13", "lodash.clonedeep": "^4.5.0", "lodash.isequal": "^4.5.0" }, @@ -4691,7 +4691,7 @@ "@inertiajs/react": { "version": "file:packages/react", "requires": { - "@inertiajs/core": "1.0.12", + "@inertiajs/core": "1.0.13", "@types/react": "^16.9.1", "@types/react-dom": "^16.9.17", "esbuild": "^0.16.13", @@ -4738,7 +4738,7 @@ "@inertiajs/svelte": { "version": "file:packages/svelte", "requires": { - "@inertiajs/core": "1.0.12", + "@inertiajs/core": "1.0.13", "lodash.clonedeep": "^4.5.0", "lodash.isequal": "^4.5.0" } @@ -4761,7 +4761,7 @@ "@inertiajs/vue2": { "version": "file:packages/vue2", "requires": { - "@inertiajs/core": "1.0.12", + "@inertiajs/core": "1.0.13", "esbuild": "^0.16.13", "lodash.clonedeep": "^4.5.0", "lodash.isequal": "^4.5.0", @@ -4797,7 +4797,7 @@ "@inertiajs/vue3": { "version": "file:packages/vue3", "requires": { - "@inertiajs/core": "1.0.12", + "@inertiajs/core": "1.0.13", "esbuild": "^0.16.13", "lodash.clonedeep": "^4.5.0", "lodash.isequal": "^4.5.0", diff --git a/packages/core/package.json b/packages/core/package.json index 3d38cb298..6f285ac22 100755 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@inertiajs/core", - "version": "1.0.12", + "version": "1.0.13", "license": "MIT", "description": "A framework for creating server-driven single page apps.", "contributors": [ diff --git a/packages/react/package.json b/packages/react/package.json index da5241476..3c9704976 100755 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@inertiajs/react", - "version": "1.0.12", + "version": "1.0.13", "license": "MIT", "description": "The React adapter for Inertia.js", "contributors": [ @@ -59,7 +59,7 @@ "react": "^16.9.0 || ^17.0.0 || ^18.0.0" }, "dependencies": { - "@inertiajs/core": "1.0.12", + "@inertiajs/core": "1.0.13", "lodash.isequal": "^4.5.0" } } diff --git a/packages/svelte/package.json b/packages/svelte/package.json index e3f98a59c..95415fc3b 100755 --- a/packages/svelte/package.json +++ b/packages/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@inertiajs/svelte", - "version": "1.0.12", + "version": "1.0.13", "license": "MIT", "description": "The Svelte adapter for Inertia.js", "contributors": [ @@ -28,7 +28,7 @@ "svelte": "^3.20.0 || ^4.0.0" }, "dependencies": { - "@inertiajs/core": "1.0.12", + "@inertiajs/core": "1.0.13", "lodash.clonedeep": "^4.5.0", "lodash.isequal": "^4.5.0" } diff --git a/packages/vue2/package.json b/packages/vue2/package.json index 4487fc5c5..c4099ee81 100755 --- a/packages/vue2/package.json +++ b/packages/vue2/package.json @@ -1,6 +1,6 @@ { "name": "@inertiajs/vue2", - "version": "1.0.12", + "version": "1.0.13", "license": "MIT", "description": "The Vue 2 adapter for Inertia.js", "contributors": [ @@ -58,7 +58,7 @@ "vue": "^2.7.0" }, "dependencies": { - "@inertiajs/core": "1.0.12", + "@inertiajs/core": "1.0.13", "lodash.clonedeep": "^4.5.0", "lodash.isequal": "^4.5.0" } diff --git a/packages/vue3/package.json b/packages/vue3/package.json index c7b59b478..0678f4b1e 100755 --- a/packages/vue3/package.json +++ b/packages/vue3/package.json @@ -1,6 +1,6 @@ { "name": "@inertiajs/vue3", - "version": "1.0.12", + "version": "1.0.13", "license": "MIT", "description": "The Vue 3 adapter for Inertia.js", "contributors": [ @@ -56,7 +56,7 @@ "vue": "^3.0.0" }, "dependencies": { - "@inertiajs/core": "1.0.12", + "@inertiajs/core": "1.0.13", "lodash.clonedeep": "^4.5.0", "lodash.isequal": "^4.5.0" }