Skip to content

Commit

Permalink
v2.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
reinink committed Oct 10, 2024
1 parent bc8274c commit 3701734
Show file tree
Hide file tree
Showing 10 changed files with 133 additions and 127 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

For changes prior to v1.0.0, see the [legacy releases](https://legacy.inertiajs.com/releases).

## [Unreleased](https://github.com/inertiajs/inertia/compare/v1.2.0...HEAD)
## [Unreleased](https://github.com/inertiajs/inertia/compare/v2.0.0-beta.1...HEAD)

- v2.0 🫣
- Nothing!

## [v2.0.0-beta.1](https://github.com/inertiajs/inertia/compare/v1.2.0...v2.0.0-beta.1)

- First beta release for the upcoming Inertia.js v2.0. View documentation and upgrade guide at https://v2.inertiajs.com.

## [v1.3.0-beta.2](https://github.com/inertiajs/inertia/compare/v1.3.0-beta.1...v1.3.0-beta.2)

Expand Down
24 changes: 13 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inertiajs/core",
"version": "1.2.0",
"version": "2.0.0-beta.1",
"license": "MIT",
"description": "A framework for creating server-driven single page apps.",
"contributors": [
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inertiajs/react",
"version": "1.2.0",
"version": "2.0.0-beta.1",
"license": "MIT",
"description": "The React adapter for Inertia.js",
"contributors": [
Expand Down Expand Up @@ -59,7 +59,7 @@
"react": "^16.9.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"@inertiajs/core": "1.2.0",
"@inertiajs/core": "2.0.0-beta.1",
"lodash.isequal": "^4.5.0"
}
}
4 changes: 2 additions & 2 deletions packages/svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inertiajs/svelte",
"version": "1.2.0",
"version": "2.0.0-beta.1",
"license": "MIT",
"description": "The Svelte adapter for Inertia.js",
"contributors": [
Expand Down Expand Up @@ -43,7 +43,7 @@
"svelte": "^4.0.0 || ^5.0.0 || ^5.0.0-next.244"
},
"dependencies": {
"@inertiajs/core": "1.2.0",
"@inertiajs/core": "2.0.0-beta.1",
"html-escape": "^2.0.0",
"lodash": "^4.5.0"
},
Expand Down
122 changes: 61 additions & 61 deletions packages/vue3/package.json
Original file line number Diff line number Diff line change
@@ -1,65 +1,65 @@
{
"name": "@inertiajs/vue3",
"version": "1.2.0",
"license": "MIT",
"description": "The Vue 3 adapter for Inertia.js",
"contributors": [
"Jonathan Reinink <[email protected]>"
],
"homepage": "https://inertiajs.com/",
"repository": {
"type": "git",
"url": "https://github.com/inertiajs/inertia.git",
"directory": "packages/vue3"
"name": "@inertiajs/vue3",
"version": "2.0.0-beta.1",
"license": "MIT",
"description": "The Vue 3 adapter for Inertia.js",
"contributors": [
"Jonathan Reinink <[email protected]>"
],
"homepage": "https://inertiajs.com/",
"repository": {
"type": "git",
"url": "https://github.com/inertiajs/inertia.git",
"directory": "packages/vue3"
},
"bugs": {
"url": "https://github.com/inertiajs/inertia/issues"
},
"files": [
"dist",
"types"
],
"type": "module",
"main": "dist/index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.js"
},
"bugs": {
"url": "https://github.com/inertiajs/inertia/issues"
},
"files": [
"dist",
"types"
],
"type": "module",
"main": "dist/index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.js"
},
"./server": {
"types": "./types/server.d.ts",
"import": "./dist/server.esm.js",
"require": "./dist/server.js"
}
},
"typesVersions": {
"*": {
"server": [
"types/server.d.ts"
]
}
},
"scripts": {
"dev": "./build.js --watch",
"build": "npm run clean && ./build.js && tsc --emitDeclarationOnly --skipLibCheck",
"clean": "rm -rf types && rm -rf dist",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@playwright/test": "^1.46.1",
"@types/node": "^22.5.3",
"esbuild": "^0.16.13",
"typescript": "^4.9.4",
"vue": "^3.0.0"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {
"@inertiajs/core": "1.2.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0"
"./server": {
"types": "./types/server.d.ts",
"import": "./dist/server.esm.js",
"require": "./dist/server.js"
}
},
"typesVersions": {
"*": {
"server": [
"types/server.d.ts"
]
}
},
"scripts": {
"dev": "./build.js --watch",
"build": "npm run clean && ./build.js && tsc --emitDeclarationOnly --skipLibCheck",
"clean": "rm -rf types && rm -rf dist",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@playwright/test": "^1.46.1",
"@types/node": "^22.5.3",
"esbuild": "^0.16.13",
"typescript": "^4.9.4",
"vue": "^3.0.0"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {
"@inertiajs/core": "2.0.0-beta.1",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0"
}
}
46 changes: 23 additions & 23 deletions playgrounds/react/package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"name": "@inertiajs/react-playground",
"private": true,
"scripts": {
"dev": "vite",
"build": " vite build && vite build --ssr"
},
"type": "module",
"devDependencies": {
"@inertiajs/react": "^1.0.0",
"@types/react": "^16.14.35",
"@types/react-dom": "^16.9.18",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.13",
"axios": "^1.6.0",
"laravel-vite-plugin": "^1.0.5",
"lodash": "^4.17.19",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.5",
"vite": "^5.4.8"
}
"name": "@inertiajs/react-playground",
"private": true,
"scripts": {
"dev": "vite",
"build": " vite build && vite build --ssr"
},
"type": "module",
"devDependencies": {
"@inertiajs/react": "2.0.0-beta.1",
"@types/react": "^16.14.35",
"@types/react-dom": "^16.9.18",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.13",
"axios": "^1.6.0",
"laravel-vite-plugin": "^1.0.5",
"lodash": "^4.17.19",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.5",
"vite": "^5.4.8"
}
}
2 changes: 1 addition & 1 deletion playgrounds/svelte4/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@inertiajs/svelte": "^1.0.0",
"@inertiajs/svelte": "2.0.0-beta.1",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tsconfig/svelte": "^5.0.4",
"autoprefixer": "^10.4.13",
Expand Down
2 changes: 1 addition & 1 deletion playgrounds/svelte5/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@inertiajs/svelte": "^1.0.0",
"@inertiajs/svelte": "2.0.0-beta.1",
"@sveltejs/vite-plugin-svelte": "^4.0.0-next.6",
"@tsconfig/svelte": "^5.0.4",
"autoprefixer": "^10.4.13",
Expand Down
46 changes: 23 additions & 23 deletions playgrounds/vue3/package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"name": "@inertiajs/vue3-playground",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build && vite build --ssr"
},
"devDependencies": {
"@inertiajs/vue3": "^1.0.0",
"@vitejs/plugin-vue": "^5.0.5",
"@volar/vue-typescript": "^1.0.22",
"@vue/server-renderer": "^3.3.4",
"autoprefixer": "^10.4.13",
"axios": "^1.6.0",
"laravel-vite-plugin": "^1.0.5",
"lodash": "^4.17.19",
"postcss": "^8.4.31",
"tailwindcss": "^3.2.4",
"typescript": "^5.5.4",
"vite": "^5.3.4",
"vue": "^3.3.4",
"vue-tsc": "^2.0.0"
},
"type": "module"
"name": "@inertiajs/vue3-playground",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build && vite build --ssr"
},
"devDependencies": {
"@inertiajs/vue3": "2.0.0-beta.1",
"@vitejs/plugin-vue": "^5.0.5",
"@volar/vue-typescript": "^1.0.22",
"@vue/server-renderer": "^3.3.4",
"autoprefixer": "^10.4.13",
"axios": "^1.6.0",
"laravel-vite-plugin": "^1.0.5",
"lodash": "^4.17.19",
"postcss": "^8.4.31",
"tailwindcss": "^3.2.4",
"typescript": "^5.5.4",
"vite": "^5.3.4",
"vue": "^3.3.4",
"vue-tsc": "^2.0.0"
},
"type": "module"
}

0 comments on commit 3701734

Please sign in to comment.