chore: update versions (#6884)

This commit is contained in:
ClarkXia 2024-05-30 10:08:41 +08:00 committed by GitHub
parent d06826ef98
commit 8ebd64e04e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
21 changed files with 76 additions and 54 deletions

View File

@ -1,5 +0,0 @@
---
'@ice/plugin-request': patch
---
chore: fix the default type of TParams

View File

@ -1,5 +0,0 @@
---
'@ice/jsx-runtime': minor
---
fix: use jsx-dev-runtime when development

View File

@ -1,5 +0,0 @@
---
'rax-compat': patch
---
lowercase props compat

View File

@ -1,6 +0,0 @@
---
'@ice/runtime': patch
'@ice/app': patch
---
feat: export useAsyncData for component Await

View File

@ -1,5 +0,0 @@
---
'@ice/app': patch
---
feat: support open specified route and list all routes

View File

@ -1,5 +0,0 @@
---
'@ice/plugin-intl': patch
---
feat: support get locale messages for global

View File

@ -1,5 +1,14 @@
# Changelog # Changelog
## 3.4.9
### Patch Changes
- 4c9456fc: feat: export useAsyncData for component Await
- b808156b: feat: support open specified route and list all routes
- Updated dependencies [4c9456fc]
- @ice/runtime@1.4.8
## 3.4.8 ## 3.4.8
### Patch Changes ### Patch Changes

View File

@ -1,6 +1,6 @@
{ {
"name": "@ice/app", "name": "@ice/app",
"version": "3.4.8", "version": "3.4.9",
"description": "provide scripts and configuration used by web framework ice", "description": "provide scripts and configuration used by web framework ice",
"type": "module", "type": "module",
"main": "./esm/index.js", "main": "./esm/index.js",
@ -49,7 +49,7 @@
"dependencies": { "dependencies": {
"@ice/bundles": "0.2.6", "@ice/bundles": "0.2.6",
"@ice/route-manifest": "1.2.2", "@ice/route-manifest": "1.2.2",
"@ice/runtime": "^1.4.7", "@ice/runtime": "^1.4.8",
"@ice/shared-config": "1.2.7", "@ice/shared-config": "1.2.7",
"@ice/webpack-config": "1.1.14", "@ice/webpack-config": "1.1.14",
"@ice/rspack-config": "1.1.7", "@ice/rspack-config": "1.1.7",

View File

@ -1,5 +1,11 @@
# @ice/jsx-runtime # @ice/jsx-runtime
## 0.3.0
### Minor Changes
- bccc7db1: fix: use jsx-dev-runtime when development
## 0.2.2 ## 0.2.2
### Patch Changes ### Patch Changes

View File

@ -1,6 +1,6 @@
{ {
"name": "@ice/jsx-runtime", "name": "@ice/jsx-runtime",
"version": "0.2.2", "version": "0.3.0",
"description": "JSX runtime for ice.", "description": "JSX runtime for ice.",
"files": [ "files": [
"esm", "esm",

View File

@ -1,5 +1,16 @@
# @ice/plugin-i18n # @ice/plugin-i18n
## 5.0.1
### Patch Changes
- Updated dependencies [bccc7db1]
- Updated dependencies [4c9456fc]
- Updated dependencies [b808156b]
- @ice/jsx-runtime@0.3.0
- @ice/runtime@1.4.8
- @ice/app@3.4.9
## 5.0.0 ## 5.0.0
### Patch Changes ### Patch Changes

View File

@ -1,6 +1,6 @@
{ {
"name": "@ice/plugin-i18n", "name": "@ice/plugin-i18n",
"version": "5.0.0", "version": "5.0.1",
"description": "I18n plugin for ice.js 3.", "description": "I18n plugin for ice.js 3.",
"files": [ "files": [
"es2017", "es2017",
@ -39,7 +39,7 @@
"plugin" "plugin"
], ],
"dependencies": { "dependencies": {
"@ice/jsx-runtime": "^0.2.2", "@ice/jsx-runtime": "^0.3.0",
"@swc/helpers": "^0.5.1", "@swc/helpers": "^0.5.1",
"accept-language-parser": "^1.5.0", "accept-language-parser": "^1.5.0",
"universal-cookie": "^4.0.4", "universal-cookie": "^4.0.4",
@ -56,8 +56,8 @@
"webpack-dev-server": "4.15.0" "webpack-dev-server": "4.15.0"
}, },
"peerDependencies": { "peerDependencies": {
"@ice/app": "^3.4.8", "@ice/app": "^3.4.9",
"@ice/runtime": "^1.4.7" "@ice/runtime": "^1.4.8"
}, },
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"

View File

@ -1,5 +1,11 @@
# @ice/plugin-intl # @ice/plugin-intl
## 1.0.1
### Patch Changes
- d06826ef: feat: support get locale messages for global
## 1.0.0 ## 1.0.0
- Initial release - Initial release

View File

@ -1,6 +1,6 @@
{ {
"name": "@ice/plugin-intl", "name": "@ice/plugin-intl",
"version": "1.0.0", "version": "1.0.1",
"description": "react intl plugin for ice.js 3.", "description": "react intl plugin for ice.js 3.",
"files": [ "files": [
"esm", "esm",
@ -27,8 +27,8 @@
"fast-glob": "^3.3.2" "fast-glob": "^3.3.2"
}, },
"devDependencies": { "devDependencies": {
"@ice/app": "^3.3.2", "@ice/app": "^3.4.9",
"@ice/runtime": "^1.2.9", "@ice/runtime": "^1.4.8",
"@types/react": "^18.0.0", "@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0" "@types/react-dom": "^18.0.0"
}, },

View File

@ -1,5 +1,11 @@
# CHANGELOG # CHANGELOG
## 1.0.3
### Patch Changes
- 570205a8: chore: fix the default type of TParams
## 1.0.2 ## 1.0.2
### Patch Changes ### Patch Changes

View File

@ -1,6 +1,6 @@
{ {
"name": "@ice/plugin-request", "name": "@ice/plugin-request",
"version": "1.0.2", "version": "1.0.3",
"description": "Request plugin for ice.", "description": "Request plugin for ice.",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
@ -53,8 +53,8 @@
"axios": "^0.27.2" "axios": "^0.27.2"
}, },
"devDependencies": { "devDependencies": {
"@ice/app": "^3.3.2", "@ice/app": "^3.4.9",
"@ice/runtime": "^1.2.9", "@ice/runtime": "^1.4.8",
"@types/react": "^18.0.0", "@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0", "@types/react-dom": "^18.0.0",
"regenerator-runtime": "^0.13.9" "regenerator-runtime": "^0.13.9"

View File

@ -1,5 +1,11 @@
# Changelog # Changelog
## 0.2.12
### Patch Changes
- 60ed0e11: lowercase props compat
## 0.2.11 ## 0.2.11
### Patch Changes ### Patch Changes

View File

@ -1,6 +1,6 @@
{ {
"name": "rax-compat", "name": "rax-compat",
"version": "0.2.11", "version": "0.2.12",
"description": "Rax compatible mode, running rax project on the react runtime.", "description": "Rax compatible mode, running rax project on the react runtime.",
"files": [ "files": [
"esm", "esm",

View File

@ -1,5 +1,13 @@
# @ice/runtime # @ice/runtime
## 1.4.8
### Patch Changes
- 4c9456fc: feat: export useAsyncData for component Await
- Updated dependencies [bccc7db1]
- @ice/jsx-runtime@0.3.0
## 1.4.7 ## 1.4.7
### Patch Changes ### Patch Changes

View File

@ -1,6 +1,6 @@
{ {
"name": "@ice/runtime", "name": "@ice/runtime",
"version": "1.4.7", "version": "1.4.8",
"description": "Runtime module for ice.js", "description": "Runtime module for ice.js",
"type": "module", "type": "module",
"types": "./esm/index.d.ts", "types": "./esm/index.d.ts",
@ -54,7 +54,7 @@
"./esm/polyfills/abortcontroller.js" "./esm/polyfills/abortcontroller.js"
], ],
"dependencies": { "dependencies": {
"@ice/jsx-runtime": "^0.2.2", "@ice/jsx-runtime": "^0.3.0",
"@ice/shared": "^1.0.2", "@ice/shared": "^1.0.2",
"@remix-run/router": "1.14.2", "@remix-run/router": "1.14.2",
"abortcontroller-polyfill": "1.7.5", "abortcontroller-polyfill": "1.7.5",

View File

@ -1681,7 +1681,7 @@ importers:
specifier: 1.1.7 specifier: 1.1.7
version: link:../rspack-config version: link:../rspack-config
'@ice/runtime': '@ice/runtime':
specifier: ^1.4.7 specifier: ^1.4.8
version: link:../runtime version: link:../runtime
'@ice/shared-config': '@ice/shared-config':
specifier: 1.2.7 specifier: 1.2.7
@ -1987,7 +1987,7 @@ importers:
packages/plugin-i18n: packages/plugin-i18n:
dependencies: dependencies:
'@ice/jsx-runtime': '@ice/jsx-runtime':
specifier: ^0.2.2 specifier: ^0.3.0
version: link:../jsx-runtime version: link:../jsx-runtime
'@swc/helpers': '@swc/helpers':
specifier: ^0.5.1 specifier: ^0.5.1
@ -2059,10 +2059,10 @@ importers:
version: 6.3.2(react@18.2.0)(typescript@4.9.5) version: 6.3.2(react@18.2.0)(typescript@4.9.5)
devDependencies: devDependencies:
'@ice/app': '@ice/app':
specifier: ^3.3.2 specifier: ^3.4.9
version: link:../ice version: link:../ice
'@ice/runtime': '@ice/runtime':
specifier: ^1.2.9 specifier: ^1.4.8
version: link:../runtime version: link:../runtime
'@types/react': '@types/react':
specifier: ^18.0.0 specifier: ^18.0.0
@ -2259,10 +2259,10 @@ importers:
version: 18.2.0(react@18.2.0) version: 18.2.0(react@18.2.0)
devDependencies: devDependencies:
'@ice/app': '@ice/app':
specifier: ^3.3.2 specifier: ^3.4.9
version: link:../ice version: link:../ice
'@ice/runtime': '@ice/runtime':
specifier: ^1.2.9 specifier: ^1.4.8
version: link:../runtime version: link:../runtime
'@types/react': '@types/react':
specifier: ^18.0.0 specifier: ^18.0.0
@ -2392,7 +2392,7 @@ importers:
packages/runtime: packages/runtime:
dependencies: dependencies:
'@ice/jsx-runtime': '@ice/jsx-runtime':
specifier: ^0.2.2 specifier: ^0.3.0
version: link:../jsx-runtime version: link:../jsx-runtime
'@ice/shared': '@ice/shared':
specifier: ^1.0.2 specifier: ^1.0.2
@ -14047,6 +14047,7 @@ packages:
/glob@7.1.6: /glob@7.1.6:
resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
deprecated: Glob versions prior to v9 are no longer supported
dependencies: dependencies:
fs.realpath: 1.0.0 fs.realpath: 1.0.0
inflight: 1.0.6 inflight: 1.0.6