Skip to content

Commit fb8fcfe

Browse files
committed
chore(release): released 2.9.1
1 parent 30215b0 commit fb8fcfe

File tree

28 files changed

+129
-32
lines changed

28 files changed

+129
-32
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,37 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.9.1](https://github.com/Tencent/Hippy/compare/2.9.0...2.9.1) (2021-09-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **android:** remove add 0.5 from px2dp ([8f7b2fb](https://github.com/Tencent/Hippy/commit/8f7b2fb8481f64e3ada8fd3743a4b936becdb0d9))
12+
* **android:** enlarge DEFAULT_MAX_SCRAP to 10 ([7023c70](https://github.com/Tencent/Hippy/commit/7023c7026f4381687850bd307daf58ada110aea9))
13+
* **android:** fix v8 build script for `latest` TAG ([#975](https://github.com/Tencent/Hippy/issues/975)) ([d79012f](https://github.com/Tencent/Hippy/commit/d79012fbf775a52b9a2b1802fd96785611a8d082))
14+
* **android:** getRenderNodeHeight headerEventHelper null crash ([dff7bb3](https://github.com/Tencent/Hippy/commit/dff7bb303edd8888781eb55b073e9a392fbcbb9a))
15+
* **android:** linearGradient needs >= 2 number of colors ([eab80a6](https://github.com/Tencent/Hippy/commit/eab80a651c2e88ba4d20698465c84dce28a663f6))
16+
* **android:** use Number do type conversion ([4cbdd47](https://github.com/Tencent/Hippy/commit/4cbdd477b1b8c3c619a7946a2953782d898ca9ab))
17+
* **css-loader:** collapsable transfer to boolean ([b5b2e12](https://github.com/Tencent/Hippy/commit/b5b2e12c8e52b62aac4bc2be0eaa443cc2f50a63))
18+
* **ios:** fix a bug that a wrong zposition for section view ([#983](https://github.com/Tencent/Hippy/issues/983)) ([96eb238](https://github.com/Tencent/Hippy/commit/96eb238175b9aa19877c4c85b4ab2f2a70a7eeee))
19+
20+
21+
### Features
22+
23+
* **android:** add DevMemu module for reload ([c936581](https://github.com/Tencent/Hippy/commit/c936581411e879fa0f718c2b13e679ca543826b1))
24+
* **android:** callNative remove init flag limit ([30215b0](https://github.com/Tencent/Hippy/commit/30215b08f7b0c099f89daf731c46bb98002fc08d))
25+
* **hippy-react:** add unhideInstance api in hostconfig ([39da68a](https://github.com/Tencent/Hippy/commit/39da68a1212fc1a979886d84599a42c1fb6849f3))
26+
* **hippy-react:** compatible for react 17 ([a3c21d6](https://github.com/Tencent/Hippy/commit/a3c21d6f79b40475aa8bae7840ffa10a2bd9aa3a))
27+
28+
29+
### Reverts
30+
31+
* Revert "refactor(android): set default false to view group clip children" ([9873d21](https://github.com/Tencent/Hippy/commit/9873d214a04905d01c2dff0e3229d9b3002a1600))
32+
33+
34+
35+
36+
637
# [2.9.0](https://github.com/Tencent/Hippy/compare/2.8.4...2.9.0) (2021-09-10)
738

839

android/sdk/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ NDK_VERSION=21.4.7075529
2727

2828
#maven central sdk version
2929
#1.0.0-SNAPSHOT
30-
VERSION_NAME=2.9.0
30+
VERSION_NAME=2.9.1
3131
VERSION_CODE=1
3232

3333
#ABI

examples/android-demo/res/index.android.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/android-demo/res/vendor.android.js

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/ios-demo/res/index.ios.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/ios-demo/res/vendor.ios.js

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hippy.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Pod::Spec.new do |s|
1010
puts 'hippy.podspec read begins'
1111
s.name = 'hippy'
12-
s.version = '2.9.0'
12+
s.version = '2.9.1'
1313
s.summary = 'Hippy library for iOS'
1414

1515
# This description is used to generate tags and improve search results.

ios/sdk/base/HippyBridge.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
NSString *const HippyJavaScriptDidFailToLoadNotification = @"HippyJavaScriptDidFailToLoadNotification";
4343
NSString *const HippyDidInitializeModuleNotification = @"HippyDidInitializeModuleNotification";
4444
NSString *const HippyBusinessDidLoadNotification = @"HippyBusinessDidLoadNotification";
45-
NSString *const _HippySDKVersion = @"2.9.0";
45+
NSString *const _HippySDKVersion = @"2.9.1";
4646

4747
static NSMutableArray<Class> *HippyModuleClasses;
4848
NSArray<Class> *HippyGetModuleClasses(void) {

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"packages": [
44
"packages/*"
55
],
6-
"version": "2.9.0"
6+
"version": "2.9.1"
77
}

packages/hippy-debug-server/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.9.1](https://github.com/Tencent/Hippy/tree/master/packages/hippy-debug-server/compare/2.9.0...2.9.1) (2021-09-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **css-loader:** collapsable transfer to boolean ([b5b2e12](https://github.com/Tencent/Hippy/tree/master/packages/hippy-debug-server/commit/b5b2e12c8e52b62aac4bc2be0eaa443cc2f50a63))
12+
13+
14+
15+
16+
617
# [2.9.0](https://github.com/Tencent/Hippy/tree/master/packages/hippy-debug-server/compare/2.8.4...2.9.0) (2021-09-10)
718

819

0 commit comments

Comments
 (0)