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
## 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
### Patch Changes

View File

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

View File

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

View File

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

View File

@ -1,5 +1,16 @@
# @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
### Patch Changes

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,5 +1,13 @@
# @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
### Patch Changes

View File

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

View File

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