Skip to content

Commit e1ada58

Browse files
committed
chore(release): released 2.8.3
1 parent 96f7451 commit e1ada58

File tree

26 files changed

+104
-24
lines changed

26 files changed

+104
-24
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
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.8.3](https://github.com/Tencent/Hippy/compare/2.8.2...2.8.3) (2021-08-12)
7+
8+
9+
### Bug Fixes
10+
11+
* **android:** remove hasNavigationBar from DimensionsUtil ([dd05d26](https://github.com/Tencent/Hippy/commit/dd05d26b2b6bd1e77107a2e3d2e6649b9a70265a))
12+
* **android:** shuold call invalidate after reset props ([c85fc75](https://github.com/Tencent/Hippy/commit/c85fc7511a56b972921a7f5866e27105ea8dab3c))
13+
* **ios:** fix gradient backgroundcolor update error ([60ceae3](https://github.com/Tencent/Hippy/commit/60ceae3d879281dd03bb7cdeaf7ee3a0c3385622))
14+
* **react:** fixed linearGradient update not work ([96f7451](https://github.com/Tencent/Hippy/commit/96f74515a8cbb5b6f43682d6e15e9744bca1455a))
15+
16+
17+
### Features
18+
19+
* **android:** add image type to HippyDrawable ([4e7d4ba](https://github.com/Tencent/Hippy/commit/4e7d4bae67c76a2d0b4b238b7f9dadacdae0cf9e))
20+
* **android:** fix cookie sync, no need to call removeSessionCookie ([6f7f766](https://github.com/Tencent/Hippy/commit/6f7f76607d43ddf709e130ade05833622576d602))
21+
* **android:** support ui element module for devtools ([1567572](https://github.com/Tencent/Hippy/commit/156757252261e7c1c78277ffe66199f6b817d185))
22+
23+
24+
25+
26+
627
## [2.8.2](https://github.com/Tencent/Hippy/compare/2.8.1...2.8.2) (2021-08-09)
728

829

android/sdk/gradle.properties

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

2626
#maven central sdk version
2727
#1.0.0-SNAPSHOT
28-
VERSION_NAME=2.8.2
28+
VERSION_NAME=2.8.3
2929
VERSION_CODE=1
3030

3131
#ABI

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

Lines changed: 5 additions & 5 deletions
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: 3 additions & 3 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.8.2'
12+
s.version = '2.8.3'
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.8.2";
45+
NSString *const _HippySDKVersion = @"2.8.3";
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.8.2"
6+
"version": "2.8.3"
77
}

packages/hippy-debug-server/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.8.3](https://github.com/Tencent/Hippy/tree/master/packages/hippy-debug-server/compare/2.8.2...2.8.3) (2021-08-12)
7+
8+
**Note:** Version bump only for package @hippy/debug-server
9+
10+
11+
12+
13+
614
## [2.8.2](https://github.com/Tencent/Hippy/tree/master/packages/hippy-debug-server/compare/2.8.1...2.8.2) (2021-08-09)
715

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

packages/hippy-debug-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hippy/debug-server",
3-
"version": "2.8.2",
3+
"version": "2.8.3",
44
"description": "Dev server for hippy-core.",
55
"repository": "https://github.com/Tencent/Hippy/tree/master/packages/hippy-debug-server",
66
"homepage": "http://hippyjs.org",

packages/hippy-react-web/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.8.3](https://github.com/Tencent/Hippy/tree/master/packages/hippy-react-web/compare/2.8.2...2.8.3) (2021-08-12)
7+
8+
**Note:** Version bump only for package @hippy/react-web
9+
10+
11+
12+
13+
614
## [2.8.2](https://github.com/Tencent/Hippy/tree/master/packages/hippy-react-web/compare/2.8.1...2.8.2) (2021-08-09)
715

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

0 commit comments

Comments
 (0)