From 48e3d8b6f96f53bfa8c2950503adfeab63fc6fc4 Mon Sep 17 00:00:00 2001 From: ClarkXia Date: Tue, 22 Aug 2023 12:07:37 +0800 Subject: [PATCH] chore: update versions (#6482) --- .changeset/happy-avocados-eat.md | 6 ------ .changeset/late-trains-relate.md | 5 ----- packages/bundles/CHANGELOG.md | 6 ++++++ packages/bundles/package.json | 2 +- packages/ice/CHANGELOG.md | 15 +++++++++++++++ packages/ice/package.json | 10 +++++----- packages/plugin-i18n/CHANGELOG.md | 7 +++++++ packages/plugin-i18n/package.json | 4 ++-- packages/rspack-config/CHANGELOG.md | 9 +++++++++ packages/rspack-config/package.json | 6 +++--- packages/shared-config/CHANGELOG.md | 8 ++++++++ packages/shared-config/package.json | 4 ++-- packages/webpack-config/CHANGELOG.md | 12 ++++++++++++ packages/webpack-config/package.json | 6 +++--- pnpm-lock.yaml | 18 +++++++++--------- 15 files changed, 82 insertions(+), 36 deletions(-) delete mode 100644 .changeset/happy-avocados-eat.md delete mode 100644 .changeset/late-trains-relate.md create mode 100644 packages/rspack-config/CHANGELOG.md create mode 100644 packages/shared-config/CHANGELOG.md diff --git a/.changeset/happy-avocados-eat.md b/.changeset/happy-avocados-eat.md deleted file mode 100644 index c052ea2e6c..0000000000 --- a/.changeset/happy-avocados-eat.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@ice/webpack-config': minor -'@ice/app': minor ---- - -feat: support build by rust tools diff --git a/.changeset/late-trains-relate.md b/.changeset/late-trains-relate.md deleted file mode 100644 index a0289e71cc..0000000000 --- a/.changeset/late-trains-relate.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@ice/bundles': patch ---- - -fix: bump @swc/core, webpack, swc plugins, core-js version diff --git a/packages/bundles/CHANGELOG.md b/packages/bundles/CHANGELOG.md index d7901ddba0..fcbebf07e1 100644 --- a/packages/bundles/CHANGELOG.md +++ b/packages/bundles/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.1.14 + +### Patch Changes + +- 1dbcfa51: fix: bump @swc/core, webpack, swc plugins, core-js version + ## 0.1.13 ### Patch Changes diff --git a/packages/bundles/package.json b/packages/bundles/package.json index 923099c6f0..342fe8cc6c 100644 --- a/packages/bundles/package.json +++ b/packages/bundles/package.json @@ -1,6 +1,6 @@ { "name": "@ice/bundles", - "version": "0.1.13", + "version": "0.1.14", "license": "MIT", "author": "ICE", "description": "Basic dependencies for ice.", diff --git a/packages/ice/CHANGELOG.md b/packages/ice/CHANGELOG.md index 452a6fe2ca..8ace7c69b7 100644 --- a/packages/ice/CHANGELOG.md +++ b/packages/ice/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 3.3.0 + +### Minor Changes + +- f5d155b5: feat: support build by rust tools + +### Patch Changes + +- Updated dependencies [f5d155b5] +- Updated dependencies [1dbcfa51] + - @ice/webpack-config@1.1.0 + - @ice/bundles@0.1.14 + - @ice/rspack-config@1.0.1 + - @ice/shared-config@1.0.1 + ## 3.2.10 ### Patch Changes diff --git a/packages/ice/package.json b/packages/ice/package.json index 6a84ef6eeb..646f0c8f3b 100644 --- a/packages/ice/package.json +++ b/packages/ice/package.json @@ -1,6 +1,6 @@ { "name": "@ice/app", - "version": "3.2.10", + "version": "3.3.0", "description": "provide scripts and configuration used by web framework ice", "type": "module", "main": "./esm/index.js", @@ -37,12 +37,12 @@ "bugs": "https://github.com/alibaba/ice/issues", "homepage": "https://v3.ice.work", "dependencies": { - "@ice/bundles": "0.1.13", + "@ice/bundles": "0.1.14", "@ice/route-manifest": "1.2.1", "@ice/runtime": "^1.2.7", - "@ice/shared-config": "1.0.0", - "@ice/webpack-config": "1.0.20", - "@ice/rspack-config": "1.0.0", + "@ice/shared-config": "1.0.1", + "@ice/webpack-config": "1.1.0", + "@ice/rspack-config": "1.0.1", "@swc/helpers": "0.5.1", "@types/express": "^4.17.14", "address": "^1.1.2", diff --git a/packages/plugin-i18n/CHANGELOG.md b/packages/plugin-i18n/CHANGELOG.md index d8b24f2b95..269e39ad0c 100644 --- a/packages/plugin-i18n/CHANGELOG.md +++ b/packages/plugin-i18n/CHANGELOG.md @@ -1,5 +1,12 @@ # @ice/plugin-i18n +## 2.0.0 + +### Patch Changes + +- Updated dependencies [f5d155b5] + - @ice/app@3.3.0 + ## 1.0.0 ### Major Changes diff --git a/packages/plugin-i18n/package.json b/packages/plugin-i18n/package.json index d43c8163c6..8f659d3329 100644 --- a/packages/plugin-i18n/package.json +++ b/packages/plugin-i18n/package.json @@ -1,6 +1,6 @@ { "name": "@ice/plugin-i18n", - "version": "1.0.0", + "version": "2.0.0", "description": "I18n plugin for ice.js 3.", "files": [ "es2017", @@ -55,7 +55,7 @@ "webpack-dev-server": "^4.13.2" }, "peerDependencies": { - "@ice/app": "^3.2.10", + "@ice/app": "^3.3.0", "@ice/runtime": "^1.2.7" }, "publishConfig": { diff --git a/packages/rspack-config/CHANGELOG.md b/packages/rspack-config/CHANGELOG.md new file mode 100644 index 0000000000..899f5ebdf0 --- /dev/null +++ b/packages/rspack-config/CHANGELOG.md @@ -0,0 +1,9 @@ +# @ice/rspack-config + +## 1.0.1 + +### Patch Changes + +- Updated dependencies [1dbcfa51] + - @ice/bundles@0.1.14 + - @ice/shared-config@1.0.1 diff --git a/packages/rspack-config/package.json b/packages/rspack-config/package.json index 3d5324702a..0cddb2c27b 100644 --- a/packages/rspack-config/package.json +++ b/packages/rspack-config/package.json @@ -1,6 +1,6 @@ { "name": "@ice/rspack-config", - "version": "1.0.0", + "version": "1.0.1", "repository": "alibaba/ice", "bugs": "https://github.com/alibaba/ice/issues", "homepage": "https://v3.ice.work", @@ -15,8 +15,8 @@ "*.d.ts" ], "dependencies": { - "@ice/shared-config": "1.0.0", - "@ice/bundles": "0.1.13" + "@ice/shared-config": "1.0.1", + "@ice/bundles": "0.1.14" }, "devDependencies": { "@rspack/core": "^0.2.12" diff --git a/packages/shared-config/CHANGELOG.md b/packages/shared-config/CHANGELOG.md new file mode 100644 index 0000000000..cb36722513 --- /dev/null +++ b/packages/shared-config/CHANGELOG.md @@ -0,0 +1,8 @@ +# @ice/shared-config + +## 1.0.1 + +### Patch Changes + +- Updated dependencies [1dbcfa51] + - @ice/bundles@0.1.14 diff --git a/packages/shared-config/package.json b/packages/shared-config/package.json index 1b97ba77e1..e43a151e8d 100644 --- a/packages/shared-config/package.json +++ b/packages/shared-config/package.json @@ -1,6 +1,6 @@ { "name": "@ice/shared-config", - "version": "1.0.0", + "version": "1.0.1", "repository": "alibaba/ice", "bugs": "https://github.com/alibaba/ice/issues", "homepage": "https://v3.ice.work", @@ -17,7 +17,7 @@ "*.d.ts" ], "dependencies": { - "@ice/bundles": "0.1.13", + "@ice/bundles": "0.1.14", "@rollup/pluginutils": "^4.2.0", "browserslist": "^4.19.3", "consola": "^2.15.3", diff --git a/packages/webpack-config/CHANGELOG.md b/packages/webpack-config/CHANGELOG.md index 3f131c44b6..bac6cdaa02 100644 --- a/packages/webpack-config/CHANGELOG.md +++ b/packages/webpack-config/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 1.1.0 + +### Minor Changes + +- f5d155b5: feat: support build by rust tools + +### Patch Changes + +- Updated dependencies [1dbcfa51] + - @ice/bundles@0.1.14 + - @ice/shared-config@1.0.1 + ## 1.0.20 ### Patch Changes diff --git a/packages/webpack-config/package.json b/packages/webpack-config/package.json index 71c8560288..9c2d54b0dc 100644 --- a/packages/webpack-config/package.json +++ b/packages/webpack-config/package.json @@ -1,6 +1,6 @@ { "name": "@ice/webpack-config", - "version": "1.0.20", + "version": "1.1.0", "repository": "alibaba/ice", "bugs": "https://github.com/alibaba/ice/issues", "homepage": "https://v3.ice.work", @@ -15,8 +15,8 @@ "*.d.ts" ], "dependencies": { - "@ice/shared-config": "1.0.0", - "@ice/bundles": "0.1.13", + "@ice/shared-config": "1.0.1", + "@ice/bundles": "0.1.14", "fast-glob": "^3.2.11", "process": "^0.11.10" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 10d2c19c99..49d3cd98a0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1095,12 +1095,12 @@ importers: packages/ice: specifiers: - '@ice/bundles': 0.1.13 + '@ice/bundles': 0.1.14 '@ice/route-manifest': 1.2.1 - '@ice/rspack-config': 1.0.0 + '@ice/rspack-config': 1.0.1 '@ice/runtime': ^1.2.7 - '@ice/shared-config': 1.0.0 - '@ice/webpack-config': 1.0.20 + '@ice/shared-config': 1.0.1 + '@ice/webpack-config': 1.1.0 '@rspack/core': 0.2.12 '@rspack/dev-server': 0.2.12 '@swc/helpers': 0.5.1 @@ -1570,8 +1570,8 @@ importers: packages/rspack-config: specifiers: - '@ice/bundles': 0.1.13 - '@ice/shared-config': 1.0.0 + '@ice/bundles': 0.1.14 + '@ice/shared-config': 1.0.1 '@rspack/core': ^0.2.12 dependencies: '@ice/bundles': link:../bundles @@ -1624,7 +1624,7 @@ importers: packages/shared-config: specifiers: - '@ice/bundles': 0.1.13 + '@ice/bundles': 0.1.14 '@rollup/pluginutils': ^4.2.0 browserslist: ^4.19.3 consola: ^2.15.3 @@ -1657,8 +1657,8 @@ importers: packages/webpack-config: specifiers: - '@ice/bundles': 0.1.13 - '@ice/shared-config': 1.0.0 + '@ice/bundles': 0.1.14 + '@ice/shared-config': 1.0.1 fast-glob: ^3.2.11 process: ^0.11.10 webpack: ^5.88.0