Skip to content

Commit

Permalink
chore(release): released 2.13.10
Browse files Browse the repository at this point in the history
  • Loading branch information
zoomchan-cxj committed May 25, 2022
1 parent 4f5a0b2 commit 638862d
Show file tree
Hide file tree
Showing 30 changed files with 111 additions and 26 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.13.10](https://github.com/Tencent/Hippy/compare/2.13.9...2.13.10) (2022-05-25)


### Bug Fixes

* **android:** call engine context method NullPointerException ([0c34965](https://github.com/Tencent/Hippy/commit/0c34965a3ce829a00d55b23bd82e0efff6f0b344))
* **android:** mBridgeCallback leaked in fetchResourceWithUri ([6ae7813](https://github.com/Tencent/Hippy/commit/6ae7813ae5d706aca34e4486d649c51f863a2a95))
* **core:** fix deadlock bug ([f08708f](https://github.com/Tencent/Hippy/commit/f08708fad63832ad87c92806d5184585493b8c60))
* **core:** fix iOS warning ([018f529](https://github.com/Tencent/Hippy/commit/018f5296717c77b172d8d8e3c0593bcda4068da4))
* **core:** fix memory leak in multi-context mode ([c5447e1](https://github.com/Tencent/Hippy/commit/c5447e18e2498e5e12817ef32adcc8a41dc92ebc))
* **hippy-react-web:** change rmc-list-view to hippy domain ([c9e28f4](https://github.com/Tencent/Hippy/commit/c9e28f460ff25c34a8e94e30d017dbe7743c752f))
* **ios:** fix hippy view reuse bug ([253fe78](https://github.com/Tencent/Hippy/commit/253fe7865b515c428a1232fc767b258923e989d2))
* **ios:** reduce GPU usage by reducing off-screen rendering ([#1902](https://github.com/Tencent/Hippy/issues/1902)) ([4f5a0b2](https://github.com/Tencent/Hippy/commit/4f5a0b27c4e040a0fe33b24f08ec9f596489a24b))





## [2.13.9](https://github.com/Tencent/Hippy/compare/2.13.8...2.13.9) (2022-05-16)


Expand Down
2 changes: 1 addition & 1 deletion android/sdk/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ NDK_VERSION=23.1.7779620
# Equals to setting android.defaultConfig.versionCode and versionName property
# in the build.gradle file.
#
VERSION_NAME=2.13.9
VERSION_NAME=2.13.10
VERSION_CODE=1

#
Expand Down
6 changes: 3 additions & 3 deletions examples/android-demo/res/vendor.android.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions examples/ios-demo/res/vendor.ios.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion hippy.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Pod::Spec.new do |s|
puts 'hippy.podspec read begins'
s.name = 'hippy'
s.version = '2.13.9'
s.version = '2.13.10'
s.summary = 'Hippy library for iOS'

# This description is used to generate tags and improve search results.
Expand Down
2 changes: 1 addition & 1 deletion ios/sdk/base/HippyBridge.mm
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
NSString *const HippyJavaScriptDidFailToLoadNotification = @"HippyJavaScriptDidFailToLoadNotification";
NSString *const HippyDidInitializeModuleNotification = @"HippyDidInitializeModuleNotification";
NSString *const HippyBusinessDidLoadNotification = @"HippyBusinessDidLoadNotification";
NSString *const _HippySDKVersion = @"2.13.9";
NSString *const _HippySDKVersion = @"2.13.10";

static NSMutableArray<Class> *HippyModuleClasses;
NSArray<Class> *HippyGetModuleClasses(void) {
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"packages": [
"packages/*"
],
"version": "2.13.9"
"version": "2.13.10"
}
8 changes: 8 additions & 0 deletions packages/hippy-debug-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

## [2.13.10](https://github.com/Tencent/Hippy/compare/2.13.9...2.13.10) (2022-05-25)

**Note:** Version bump only for package @hippy/debug-server





## [2.13.9](https://github.com/Tencent/Hippy/compare/2.13.8...2.13.9) (2022-05-16)

**Note:** Version bump only for package @hippy/debug-server
Expand Down
2 changes: 1 addition & 1 deletion packages/hippy-debug-server/package-lock.json

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

2 changes: 1 addition & 1 deletion packages/hippy-debug-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/debug-server",
"version": "2.13.9",
"version": "2.13.10",
"description": "Dev server for hippy-core.",
"repository": "https://github.com/Tencent/Hippy/tree/master/packages/hippy-debug-server",
"homepage": "http://hippyjs.org",
Expand Down
11 changes: 11 additions & 0 deletions packages/hippy-react-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

## [2.13.10](https://github.com/Tencent/Hippy/compare/2.13.9...2.13.10) (2022-05-25)


### Bug Fixes

* **hippy-react-web:** change rmc-list-view to hippy domain ([c9e28f4](https://github.com/Tencent/Hippy/commit/c9e28f460ff25c34a8e94e30d017dbe7743c752f))





## [2.13.9](https://github.com/Tencent/Hippy/compare/2.13.8...2.13.9) (2022-05-16)

**Note:** Version bump only for package @hippy/react-web
Expand Down
2 changes: 1 addition & 1 deletion packages/hippy-react-web/package-lock.json

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

4 changes: 2 additions & 2 deletions packages/hippy-react-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/react-web",
"version": "2.13.9",
"version": "2.13.10",
"description": "Web Adapter for Hippy React",
"main": "dist/index.js",
"homepage": "http://hippyjs.org",
Expand All @@ -17,11 +17,11 @@
"Web"
],
"dependencies": {
"@hippy/rmc-list-view": "^1.0.0",
"bezier-easing": "^2.1.0",
"debounce": "^1.2.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"@hippy/rmc-list-view": "^1.0.0",
"swiper": "^6.7.0",
"ua-parser-js": "~0.7.28"
},
Expand Down
8 changes: 8 additions & 0 deletions packages/hippy-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

## [2.13.10](https://github.com/Tencent/Hippy/compare/2.13.9...2.13.10) (2022-05-25)

**Note:** Version bump only for package @hippy/react





## [2.13.9](https://github.com/Tencent/Hippy/compare/2.13.8...2.13.9) (2022-05-16)

**Note:** Version bump only for package @hippy/react
Expand Down
2 changes: 1 addition & 1 deletion packages/hippy-react/package-lock.json

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

2 changes: 1 addition & 1 deletion packages/hippy-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/react",
"version": "2.13.9",
"version": "2.13.10",
"description": "Hippy react framework",
"main": "dist/index.js",
"homepage": "http://hippyjs.org",
Expand Down
8 changes: 8 additions & 0 deletions packages/hippy-vue-css-loader/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

## [2.13.10](https://github.com/Tencent/Hippy/compare/2.13.9...2.13.10) (2022-05-25)

**Note:** Version bump only for package @hippy/vue-css-loader





## [2.13.9](https://github.com/Tencent/Hippy/compare/2.13.8...2.13.9) (2022-05-16)

**Note:** Version bump only for package @hippy/vue-css-loader
Expand Down
2 changes: 1 addition & 1 deletion packages/hippy-vue-css-loader/package-lock.json

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

2 changes: 1 addition & 1 deletion packages/hippy-vue-css-loader/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/vue-css-loader",
"version": "2.13.9",
"version": "2.13.10",
"description": "hippy-vue style loader module for webpack",
"main": "dist/index.js",
"homepage": "http://hippyjs.org",
Expand Down
8 changes: 8 additions & 0 deletions packages/hippy-vue-loader/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

## [2.13.10](https://github.com/Tencent/Hippy/compare/2.13.9...2.13.10) (2022-05-25)

**Note:** Version bump only for package @hippy/vue-loader





## [2.13.9](https://github.com/Tencent/Hippy/compare/2.13.8...2.13.9) (2022-05-16)

**Note:** Version bump only for package @hippy/vue-loader
Expand Down
2 changes: 1 addition & 1 deletion packages/hippy-vue-loader/package-lock.json

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

2 changes: 1 addition & 1 deletion packages/hippy-vue-loader/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/vue-loader",
"version": "2.13.9",
"version": "2.13.10",
"description": "Vue single-file component loader for Webpack",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/hippy-vue-native-components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

## [2.13.10](https://github.com/Tencent/Hippy/compare/2.13.9...2.13.10) (2022-05-25)

**Note:** Version bump only for package @hippy/vue-native-components





## [2.13.9](https://github.com/Tencent/Hippy/compare/2.13.8...2.13.9) (2022-05-16)

**Note:** Version bump only for package @hippy/vue-native-components
Expand Down
2 changes: 1 addition & 1 deletion packages/hippy-vue-native-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/vue-native-components",
"version": "2.13.9",
"version": "2.13.10",
"description": "Native components middleware for Hippy-Vue, the components only for native, can't compatible with web.",
"main": "dist/index.js",
"homepage": "http://hippyjs.org",
Expand Down
8 changes: 8 additions & 0 deletions packages/hippy-vue-router/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

## [2.13.10](https://github.com/Tencent/Hippy/compare/2.13.9...2.13.10) (2022-05-25)

**Note:** Version bump only for package @hippy/vue-router





## [2.13.9](https://github.com/Tencent/Hippy/compare/2.13.8...2.13.9) (2022-05-16)

**Note:** Version bump only for package @hippy/vue-router
Expand Down
2 changes: 1 addition & 1 deletion packages/hippy-vue-router/package-lock.json

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

2 changes: 1 addition & 1 deletion packages/hippy-vue-router/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/vue-router",
"version": "2.13.9",
"version": "2.13.10",
"description": "Official router for hippy-vue",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/hippy-vue/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

## [2.13.10](https://github.com/Tencent/Hippy/compare/2.13.9...2.13.10) (2022-05-25)

**Note:** Version bump only for package @hippy/vue





## [2.13.9](https://github.com/Tencent/Hippy/compare/2.13.8...2.13.9) (2022-05-16)

**Note:** Version bump only for package @hippy/vue
Expand Down
2 changes: 1 addition & 1 deletion packages/hippy-vue/package-lock.json

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

2 changes: 1 addition & 1 deletion packages/hippy-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/vue",
"version": "2.13.9",
"version": "2.13.10",
"description": "Vue binding for Hippy native framework",
"author": "XQ Kuang <[email protected]>",
"license": "Apache-2.0",
Expand Down

0 comments on commit 638862d

Please sign in to comment.