diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7f8afc2..e47f44c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: - node-version: [18.x, 20.x, 21.x] + node-version: [18.x, 20.x, 22.x, latest] steps: - name: Checkout code diff --git a/CHANGELOG.md b/CHANGELOG.md index 12478a0..89b37a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Release Notes -## [Unreleased](https://github.com/laravel/vite-plugin/compare/v1.0.5...1.x) +## [Unreleased](https://github.com/laravel/vite-plugin/compare/v1.0.6...1.x) + +## [v1.0.6](https://github.com/laravel/vite-plugin/compare/v1.0.5...v1.0.6) - 2024-11-12 + +* Replace dead link in Security Policy by [@Jubeki](https://github.com/Jubeki) in https://github.com/laravel/vite-plugin/pull/300 +* Look for certificates in valet linux config directory by [@jameshulse](https://github.com/jameshulse) in https://github.com/laravel/vite-plugin/pull/307 ## [v1.0.5](https://github.com/laravel/vite-plugin/compare/v1.0.4...v1.0.5) - 2024-07-09 diff --git a/package.json b/package.json index eeaaad5..1f9a895 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "laravel-vite-plugin", - "version": "1.0.6", + "version": "1.1.0", "description": "Laravel plugin for Vite.", "keywords": [ "laravel", @@ -49,14 +49,14 @@ "esbuild": "0.16.10", "eslint": "^8.14.0", "typescript": "^4.6.4", - "vite": "^5.0.0", + "vite": "^6.0.0", "vitest": "^0.34.4" }, "peerDependencies": { - "vite": "^5.0.0" + "vite": "^6.0.0" }, "engines": { - "node": "^18.0.0 || >=20.0.0" + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" }, "dependencies": { "picocolors": "^1.0.0",