diff --git a/packages/app/CHANGELOG.md b/packages/app/CHANGELOG.md index 80aea4e2ff..b6efba8006 100644 --- a/packages/app/CHANGELOG.md +++ b/packages/app/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/nuxt/framework/compare/@nuxt/app@0.3.3...@nuxt/app@0.4.0) (2021-05-20) + + +### Bug Fixes + +* **nitro:** add body + body prepended scripts to template ([#154](https://github.com/nuxt/framework/issues/154)) ([c732873](https://github.com/nuxt/framework/commit/c7328732fbf7c47a9a9a71291b54def3444e1463)) + + +### Features + +* optional pages and refactor nuxt3 ([#142](https://github.com/nuxt/framework/issues/142)) ([6b62d45](https://github.com/nuxt/framework/commit/6b62d456d7fe8c9dd92803a30dcebf0d481f65c7)) +* update vite implementation ([#130](https://github.com/nuxt/framework/issues/130)) ([9732d63](https://github.com/nuxt/framework/commit/9732d63c74b394706150ef35cc06c65d3fb185ad)) + + + + + ## [0.3.3](https://github.com/nuxt/framework/compare/@nuxt/app@0.3.2...@nuxt/app@0.3.3) (2021-04-28) **Note:** Version bump only for package @nuxt/app diff --git a/packages/app/package.json b/packages/app/package.json index 9ef04318ee..604bbb486e 100644 --- a/packages/app/package.json +++ b/packages/app/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/app", - "version": "0.3.3", + "version": "0.4.0", "repository": "nuxt/framework", "license": "MIT", "exports": { diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index bb5cb21bd3..caff15f5a2 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.3.4](https://github.com/nuxt/framework/compare/nuxt-cli@0.3.3...nuxt-cli@0.3.4) (2021-05-20) + +**Note:** Version bump only for package nuxt-cli + + + + + ## [0.3.3](https://github.com/nuxt/framework/compare/nuxt-cli@0.3.2...nuxt-cli@0.3.3) (2021-04-28) **Note:** Version bump only for package nuxt-cli diff --git a/packages/cli/package.json b/packages/cli/package.json index ebe1d56913..76cc7cf59e 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "nuxt-cli", - "version": "0.3.3", + "version": "0.3.4", "repository": "nuxt/framework", "license": "MIT", "main": "./dist/index.js", @@ -20,7 +20,7 @@ "fsevents": "~2.3.2" }, "devDependencies": { - "@nuxt/kit": "^0.5.3", + "@nuxt/kit": "^0.6.0", "@types/clear": "^0", "@types/debounce-promise": "^3", "@types/mri": "^1.1.0", diff --git a/packages/kit/CHANGELOG.md b/packages/kit/CHANGELOG.md index d55533aa66..8de46b2d26 100644 --- a/packages/kit/CHANGELOG.md +++ b/packages/kit/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.6.0](https://github.com/nuxt/framework/compare/@nuxt/kit@0.5.3...@nuxt/kit@0.6.0) (2021-05-20) + + +### Features + +* optional pages and refactor nuxt3 ([#142](https://github.com/nuxt/framework/issues/142)) ([6b62d45](https://github.com/nuxt/framework/commit/6b62d456d7fe8c9dd92803a30dcebf0d481f65c7)) + + + + + ## [0.5.3](https://github.com/nuxt/framework/compare/@nuxt/kit@0.5.2...@nuxt/kit@0.5.3) (2021-04-28) diff --git a/packages/kit/package.json b/packages/kit/package.json index 4103157956..c2df37c0b1 100644 --- a/packages/kit/package.json +++ b/packages/kit/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/kit", - "version": "0.5.3", + "version": "0.6.0", "repository": "nuxt/framework", "license": "MIT", "main": "./dist/index.js", diff --git a/packages/nitro/CHANGELOG.md b/packages/nitro/CHANGELOG.md index 3dfd0cb3ea..ddd401e6ad 100644 --- a/packages/nitro/CHANGELOG.md +++ b/packages/nitro/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.7.0](https://github.com/nuxt/framework/compare/@nuxt/nitro@0.6.3...@nuxt/nitro@0.7.0) (2021-05-20) + + +### Bug Fixes + +* **automock:** don't externalize .ts imports ([d95e002](https://github.com/nuxt/framework/commit/d95e002d5b960cd8fb64ef34cc9caa8dfabb989f)) +* **nitro:** add body + body prepended scripts to template ([#154](https://github.com/nuxt/framework/issues/154)) ([c732873](https://github.com/nuxt/framework/commit/c7328732fbf7c47a9a9a71291b54def3444e1463)) + + +### Features + +* optional pages and refactor nuxt3 ([#142](https://github.com/nuxt/framework/issues/142)) ([6b62d45](https://github.com/nuxt/framework/commit/6b62d456d7fe8c9dd92803a30dcebf0d481f65c7)) + + + + + ## [0.6.3](https://github.com/nuxt/framework/compare/@nuxt/nitro@0.6.2...@nuxt/nitro@0.6.3) (2021-04-28) **Note:** Version bump only for package @nuxt/nitro diff --git a/packages/nitro/package.json b/packages/nitro/package.json index 8579b4b6f8..52d83e6d28 100644 --- a/packages/nitro/package.json +++ b/packages/nitro/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/nitro", - "version": "0.6.3", + "version": "0.7.0", "license": "MIT", "main": "dist/index.js", "types": "./types/index.d.ts", @@ -16,7 +16,7 @@ "@cloudflare/kv-asset-handler": "^0.1.1", "@netlify/functions": "^0.7.2", "@nuxt/devalue": "^1.2.5", - "@nuxt/kit": "^0.5.3", + "@nuxt/kit": "^0.6.0", "@rollup/plugin-alias": "^3.1.2", "@rollup/plugin-commonjs": "^19.0.0", "@rollup/plugin-inject": "^4.0.2", diff --git a/packages/nuxt3/CHANGELOG.md b/packages/nuxt3/CHANGELOG.md index 507d8ffcf3..feaa049230 100644 --- a/packages/nuxt3/CHANGELOG.md +++ b/packages/nuxt3/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.7.0](https://github.com/nuxt/framework/compare/nuxt3@0.6.3...nuxt3@0.7.0) (2021-05-20) + + +### Features + +* optional pages and refactor nuxt3 ([#142](https://github.com/nuxt/framework/issues/142)) ([6b62d45](https://github.com/nuxt/framework/commit/6b62d456d7fe8c9dd92803a30dcebf0d481f65c7)) +* update vite implementation ([#130](https://github.com/nuxt/framework/issues/130)) ([9732d63](https://github.com/nuxt/framework/commit/9732d63c74b394706150ef35cc06c65d3fb185ad)) + + + + + ## [0.6.3](https://github.com/nuxt/framework/compare/nuxt3@0.6.2...nuxt3@0.6.3) (2021-04-28) **Note:** Version bump only for package nuxt3 diff --git a/packages/nuxt3/package.json b/packages/nuxt3/package.json index 2d8289dc40..445a6b039a 100644 --- a/packages/nuxt3/package.json +++ b/packages/nuxt3/package.json @@ -1,6 +1,6 @@ { "name": "nuxt3", - "version": "0.6.3", + "version": "0.7.0", "repository": "nuxt/framework", "license": "MIT", "main": "./dist/index.js", @@ -17,12 +17,12 @@ "nuxt-cli": "./bin/nuxt.js" }, "dependencies": { - "@nuxt/app": "^0.3.3", - "@nuxt/kit": "^0.5.3", - "@nuxt/nitro": "^0.6.3", - "@nuxt/pages": "^0.1.0", - "@nuxt/vite-builder": "^0.3.3", - "@nuxt/webpack-builder": "^0.3.4", + "@nuxt/app": "^0.4.0", + "@nuxt/kit": "^0.6.0", + "@nuxt/nitro": "^0.7.0", + "@nuxt/pages": "^0.2.0", + "@nuxt/vite-builder": "^0.4.0", + "@nuxt/webpack-builder": "^0.4.0", "chokidar": "^3.5.1", "consola": "^2.15.3", "defu": "^5.0.0", @@ -32,7 +32,7 @@ "hookable": "^4.4.1", "ignore": "^5.1.8", "lodash": "^4.17.21", - "nuxt-cli": "^0.3.3", + "nuxt-cli": "^0.3.4", "scule": "^0.2.1", "ufo": "^0.7.5", "upath": "^2.0.1" diff --git a/packages/pages/CHANGELOG.md b/packages/pages/CHANGELOG.md new file mode 100644 index 0000000000..b200bf9034 --- /dev/null +++ b/packages/pages/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 0.2.0 (2021-05-20) + + +### Features + +* optional pages and refactor nuxt3 ([#142](https://github.com/nuxt/framework/issues/142)) ([6b62d45](https://github.com/nuxt/framework/commit/6b62d456d7fe8c9dd92803a30dcebf0d481f65c7)) diff --git a/packages/pages/package.json b/packages/pages/package.json index 448c5a0045..1a5589b06c 100644 --- a/packages/pages/package.json +++ b/packages/pages/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/pages", - "version": "0.1.0", + "version": "0.2.0", "repository": "nuxt/framework", "license": "MIT", "types": "./dist/module.d.ts", @@ -12,7 +12,7 @@ "prepack": "unbuild" }, "dependencies": { - "@nuxt/kit": "^0.5.3", + "@nuxt/kit": "^0.6.0", "globby": "^11.0.3", "ufo": "^0.7.5", "upath": "^2.0.1", diff --git a/packages/vite/CHANGELOG.md b/packages/vite/CHANGELOG.md index 3a52624e55..ba51b439d5 100644 --- a/packages/vite/CHANGELOG.md +++ b/packages/vite/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/nuxt/framework/compare/@nuxt/vite-builder@0.3.3...@nuxt/vite-builder@0.4.0) (2021-05-20) + + +### Features + +* optional pages and refactor nuxt3 ([#142](https://github.com/nuxt/framework/issues/142)) ([6b62d45](https://github.com/nuxt/framework/commit/6b62d456d7fe8c9dd92803a30dcebf0d481f65c7)) +* update vite implementation ([#130](https://github.com/nuxt/framework/issues/130)) ([9732d63](https://github.com/nuxt/framework/commit/9732d63c74b394706150ef35cc06c65d3fb185ad)) + + + + + ## [0.3.3](https://github.com/nuxt/framework/compare/@nuxt/vite-builder@0.3.2...@nuxt/vite-builder@0.3.3) (2021-04-28) **Note:** Version bump only for package @nuxt/vite-builder diff --git a/packages/vite/package.json b/packages/vite/package.json index 6d003336dc..7c7e337277 100644 --- a/packages/vite/package.json +++ b/packages/vite/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/vite-builder", - "version": "0.3.3", + "version": "0.4.0", "repository": "nuxt/framework", "license": "MIT", "main": "./dist/index.js", @@ -15,7 +15,7 @@ "unbuild": "^0.2.3" }, "dependencies": { - "@nuxt/kit": "^0.5.3", + "@nuxt/kit": "^0.6.0", "@vitejs/plugin-vue": "^1.2.2", "@vue/compiler-sfc": "^3.0.11", "chokidar": "^3.5.1", diff --git a/packages/webpack/CHANGELOG.md b/packages/webpack/CHANGELOG.md index 0f4c3ab77f..ab961ce63c 100644 --- a/packages/webpack/CHANGELOG.md +++ b/packages/webpack/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/nuxt/framework/compare/@nuxt/webpack-builder@0.3.4...@nuxt/webpack-builder@0.4.0) (2021-05-20) + + +### Features + +* optional pages and refactor nuxt3 ([#142](https://github.com/nuxt/framework/issues/142)) ([6b62d45](https://github.com/nuxt/framework/commit/6b62d456d7fe8c9dd92803a30dcebf0d481f65c7)) +* update vite implementation ([#130](https://github.com/nuxt/framework/issues/130)) ([9732d63](https://github.com/nuxt/framework/commit/9732d63c74b394706150ef35cc06c65d3fb185ad)) + + + + + ## [0.3.4](https://github.com/nuxt/framework/compare/@nuxt/webpack-builder@0.3.3...@nuxt/webpack-builder@0.3.4) (2021-04-28) **Note:** Version bump only for package @nuxt/webpack-builder diff --git a/packages/webpack/package.json b/packages/webpack/package.json index e29c0c0897..459477a43a 100644 --- a/packages/webpack/package.json +++ b/packages/webpack/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/webpack-builder", - "version": "0.3.4", + "version": "0.4.0", "repository": "nuxt/framework", "license": "MIT", "main": "./dist/index.js", @@ -13,7 +13,7 @@ "dependencies": { "@babel/core": "^7.14.3", "@nuxt/friendly-errors-webpack-plugin": "^2.5.1", - "@nuxt/kit": "^0.5.3", + "@nuxt/kit": "^0.6.0", "@vue/babel-preset-jsx": "^1.2.4", "@vue/compiler-sfc": "^3.0.11", "babel-loader": "^8.2.2", diff --git a/yarn.lock b/yarn.lock index c21329c3b5..a0014fce31 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1615,7 +1615,7 @@ __metadata: languageName: node linkType: hard -"@nuxt/app@^0.3.3, @nuxt/app@workspace:packages/app": +"@nuxt/app@^0.4.0, @nuxt/app@workspace:packages/app": version: 0.0.0-use.local resolution: "@nuxt/app@workspace:packages/app" dependencies: @@ -1652,7 +1652,7 @@ __metadata: languageName: node linkType: hard -"@nuxt/kit@^0.5.0, @nuxt/kit@^0.5.3, @nuxt/kit@workspace:packages/kit": +"@nuxt/kit@^0.6.0, @nuxt/kit@workspace:packages/kit": version: 0.0.0-use.local resolution: "@nuxt/kit@workspace:packages/kit" dependencies: @@ -1673,14 +1673,35 @@ __metadata: languageName: unknown linkType: soft -"@nuxt/nitro@^0.6.3, @nuxt/nitro@workspace:packages/nitro": +"@nuxt/kit@npm:^0.5.0": + version: 0.5.3 + resolution: "@nuxt/kit@npm:0.5.3" + dependencies: + consola: ^2.15.3 + create-require: ^1.1.1 + defu: ^4.0.1 + dotenv: ^8.2.0 + hash-sum: ^2.0.0 + jiti: ^1.9.1 + rc9: ^1.2.0 + scule: ^0.2.1 + std-env: ^2.3.0 + ufo: ^0.7.2 + unctx: ^0.0.3 + untyped: ^0.2.5 + upath: ^2.0.1 + checksum: 0a093b03fb9d69e1a5ff507dd6401d6394295701beb0f9a9db21cd97bb6b34bbbac4bf0d8fae7e14b928ec812e7f3e2bce2e3c299b2be27f7533cc4495492c26 + languageName: node + linkType: hard + +"@nuxt/nitro@^0.7.0, @nuxt/nitro@workspace:packages/nitro": version: 0.0.0-use.local resolution: "@nuxt/nitro@workspace:packages/nitro" dependencies: "@cloudflare/kv-asset-handler": ^0.1.1 "@netlify/functions": ^0.7.2 "@nuxt/devalue": ^1.2.5 - "@nuxt/kit": ^0.5.3 + "@nuxt/kit": ^0.6.0 "@rollup/plugin-alias": ^3.1.2 "@rollup/plugin-commonjs": ^19.0.0 "@rollup/plugin-inject": ^4.0.2 @@ -1741,11 +1762,11 @@ __metadata: languageName: unknown linkType: soft -"@nuxt/pages@^0.1.0, @nuxt/pages@workspace:packages/pages": +"@nuxt/pages@^0.2.0, @nuxt/pages@workspace:packages/pages": version: 0.0.0-use.local resolution: "@nuxt/pages@workspace:packages/pages" dependencies: - "@nuxt/kit": ^0.5.3 + "@nuxt/kit": ^0.6.0 globby: ^11.0.3 ufo: ^0.7.5 unbuild: ^0.2.3 @@ -1754,11 +1775,11 @@ __metadata: languageName: unknown linkType: soft -"@nuxt/vite-builder@^0.3.3, @nuxt/vite-builder@workspace:packages/vite": +"@nuxt/vite-builder@^0.4.0, @nuxt/vite-builder@workspace:packages/vite": version: 0.0.0-use.local resolution: "@nuxt/vite-builder@workspace:packages/vite" dependencies: - "@nuxt/kit": ^0.5.3 + "@nuxt/kit": ^0.6.0 "@types/debounce": ^1.2.0 "@vitejs/plugin-vue": ^1.2.2 "@vue/compiler-sfc": ^3.0.11 @@ -1773,13 +1794,13 @@ __metadata: languageName: unknown linkType: soft -"@nuxt/webpack-builder@^0.3.4, @nuxt/webpack-builder@workspace:packages/webpack": +"@nuxt/webpack-builder@^0.4.0, @nuxt/webpack-builder@workspace:packages/webpack": version: 0.0.0-use.local resolution: "@nuxt/webpack-builder@workspace:packages/webpack" dependencies: "@babel/core": ^7.14.3 "@nuxt/friendly-errors-webpack-plugin": ^2.5.1 - "@nuxt/kit": ^0.5.3 + "@nuxt/kit": ^0.6.0 "@types/pify": ^5.0.0 "@types/terser-webpack-plugin": ^5.0.3 "@types/webpack-bundle-analyzer": ^4.4.0 @@ -5611,6 +5632,13 @@ __metadata: languageName: node linkType: hard +"dotenv@npm:^8.2.0": + version: 8.6.0 + resolution: "dotenv@npm:8.6.0" + checksum: f4649999a157061dd169118f459d88db56380b2eef68e87fa9de7201796e5f6d94fa337658d7e148f404b48652a0eefe11222d9eba0cd464497911ae56cd6f93 + languageName: node + linkType: hard + "dotenv@npm:^9.0.2": version: 9.0.2 resolution: "dotenv@npm:9.0.2" @@ -10619,11 +10647,11 @@ __metadata: languageName: node linkType: hard -"nuxt-cli@^0.3.3, nuxt-cli@workspace:packages/cli": +"nuxt-cli@^0.3.4, nuxt-cli@workspace:packages/cli": version: 0.0.0-use.local resolution: "nuxt-cli@workspace:packages/cli" dependencies: - "@nuxt/kit": ^0.5.3 + "@nuxt/kit": ^0.6.0 "@types/clear": ^0 "@types/debounce-promise": ^3 "@types/mri": ^1.1.0 @@ -10673,12 +10701,12 @@ __metadata: version: 0.0.0-use.local resolution: "nuxt3@workspace:packages/nuxt3" dependencies: - "@nuxt/app": ^0.3.3 - "@nuxt/kit": ^0.5.3 - "@nuxt/nitro": ^0.6.3 - "@nuxt/pages": ^0.1.0 - "@nuxt/vite-builder": ^0.3.3 - "@nuxt/webpack-builder": ^0.3.4 + "@nuxt/app": ^0.4.0 + "@nuxt/kit": ^0.6.0 + "@nuxt/nitro": ^0.7.0 + "@nuxt/pages": ^0.2.0 + "@nuxt/vite-builder": ^0.4.0 + "@nuxt/webpack-builder": ^0.4.0 "@types/fs-extra": ^9.0.11 "@types/hash-sum": ^1.0.0 "@types/lodash": ^4.14.169 @@ -10691,7 +10719,7 @@ __metadata: hookable: ^4.4.1 ignore: ^5.1.8 lodash: ^4.17.21 - nuxt-cli: ^0.3.3 + nuxt-cli: ^0.3.4 scule: ^0.2.1 ufo: ^0.7.5 unbuild: ^0.2.3 @@ -14354,7 +14382,7 @@ typescript@^4.2.4: languageName: node linkType: hard -"ufo@npm:^0.7.5": +"ufo@npm:^0.7.2, ufo@npm:^0.7.5": version: 0.7.5 resolution: "ufo@npm:0.7.5" checksum: 40b32a94934df4c3f9f7ab50a05660ded4f399012877b0e1bd622dd55e1422a1729fd8cb34ea62a1185d0c12a7b93b7880105e24280bc3f0120cd3e3a10b41d0