Skip to content

Commit

Permalink
chore: update versions (#6415)
Browse files Browse the repository at this point in the history
  • Loading branch information
ClarkXia authored Aug 3, 2023
1 parent 9978372 commit 8ef8384
Show file tree
Hide file tree
Showing 19 changed files with 59 additions and 51 deletions.
5 changes: 0 additions & 5 deletions .changeset/afraid-forks-cheer.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/breezy-falcons-smell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dry-pets-sing.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/green-cats-fold.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/kind-singers-jump.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silver-donuts-join.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/violet-coats-rescue.md

This file was deleted.

12 changes: 11 additions & 1 deletion packages/appear/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @ice/appear

## 0.2.0

### Minor Changes

- 8af84529: chore: weex support for ice appear

### Patch Changes

- f0d79065: fix(appear): fixup listener attach for ref callback

## v0.1.5

- [chore] bump version for pegasus component
Expand All @@ -10,4 +20,4 @@

## v0.1.0

- [feat] support VisibilityChange.
- [feat] support VisibilityChange.
2 changes: 1 addition & 1 deletion packages/appear/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ice/appear",
"version": "0.1.5",
"version": "0.2.0",
"description": "",
"main": "./esm/index.js",
"types": "./esm/index.d.ts",
Expand Down
12 changes: 12 additions & 0 deletions packages/ice/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 3.2.9

### Patch Changes

- a96af97b: fix: render twice when navigate and bump react-router to 6.14.2
- 67eae5c1: feat: support app config of runApp
- Updated dependencies [a96af97b]
- Updated dependencies [d33f3e65]
- Updated dependencies [11dd752b]
- Updated dependencies [67eae5c1]
- @ice/runtime@1.2.7

## 3.2.8

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/ice/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ice/app",
"version": "3.2.8",
"version": "3.2.9",
"description": "provide scripts and configuration used by web framework ice",
"type": "module",
"main": "./esm/index.js",
Expand Down Expand Up @@ -38,7 +38,7 @@
"dependencies": {
"@ice/bundles": "0.1.12",
"@ice/route-manifest": "1.2.0",
"@ice/runtime": "^1.2.6",
"@ice/runtime": "^1.2.7",
"@ice/webpack-config": "1.0.19",
"@swc/helpers": "0.5.1",
"@types/express": "^4.17.14",
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-i18n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
"webpack-dev-server": "^4.13.2"
},
"peerDependencies": {
"@ice/app": "^3.2.8",
"@ice/runtime": "^1.2.6"
"@ice/app": "^3.2.9",
"@ice/runtime": "^1.2.7"
},
"publishConfig": {
"access": "public"
Expand Down
6 changes: 6 additions & 0 deletions packages/plugin-pha/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 3.0.3

### Patch Changes

- e40a7cb2: fix: add `bounces` attr

## 3.0.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-pha/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ice/plugin-pha",
"version": "3.0.2",
"version": "3.0.3",
"description": "ice.js plugin for PHA.",
"license": "MIT",
"type": "module",
Expand All @@ -25,7 +25,7 @@
"htmlparser2": "^8.0.1"
},
"devDependencies": {
"@ice/app": "^3.2.8",
"@ice/app": "^3.2.9",
"build-scripts": "^2.1.1-0",
"esbuild": "^0.17.16",
"webpack": "^5.86.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/rax-compat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.2.5

### Patch Changes

- Updated dependencies [8af84529]
- Updated dependencies [f0d79065]
- @ice/appear@0.2.0

## 0.2.4

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/rax-compat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rax-compat",
"version": "0.2.4",
"version": "0.2.5",
"description": "Rax compatible mode, running rax project on the react runtime.",
"files": [
"esm",
Expand Down Expand Up @@ -51,7 +51,7 @@
"@swc/helpers": "^0.4.3",
"style-unit": "^3.0.5",
"create-react-class": "^15.7.0",
"@ice/appear": "^0.1.3"
"@ice/appear": "^0.2.0"
},
"devDependencies": {
"@ice/pkg": "1.1.2-0",
Expand Down
9 changes: 9 additions & 0 deletions packages/runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @ice/runtime

## 1.2.7

### Patch Changes

- a96af97b: fix: render twice when navigate and bump react-router to 6.14.2
- d33f3e65: feat: report detail recoverable error
- 11dd752b: fix: side effect of update suspense data may cause mulit time call
- 67eae5c1: feat: support app config of runApp

## 1.2.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ice/runtime",
"version": "1.2.6",
"version": "1.2.7",
"description": "Runtime module for ice.js",
"type": "module",
"types": "./esm/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8ef8384

Please sign in to comment.