Skip to content

Commit

Permalink
chore(release): released 2.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zoomchan-cxj committed Oct 27, 2021
1 parent 64575d7 commit cf24745
Show file tree
Hide file tree
Showing 30 changed files with 121 additions and 28 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,32 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.10.1](https://github.com/Tencent/Hippy/compare/2.10.0...2.10.1) (2021-10-27)


### Bug Fixes

* **android:** do not onRestoreInstanceState for sub views ([87bb19c](https://github.com/Tencent/Hippy/commit/87bb19c844278de5321b3341cc8ffeb39596ff4f))
* **android:** do not use JAVA 8 lambda temporary ([d5fdf41](https://github.com/Tencent/Hippy/commit/d5fdf413290eac1d115073c841f288c0ca0645dd))
* **android:** fix `hippy` library build script exception ([1534ba3](https://github.com/Tencent/Hippy/commit/1534ba3ac2ae22be126f777515a1a90e36b5c10c))
* **android:** scroll view page scroll problem ([2b22b5f](https://github.com/Tencent/Hippy/commit/2b22b5fcd5ec7e8afcf8e32d5026cf9ef4c0dc94))
* **hippy-react:** change dev condition judge ([268a6e9](https://github.com/Tencent/Hippy/commit/268a6e90eb8c926f17776a26e7f554221134f9cd))
* **hippy-vue-demo:** fix scroll height bug ([42c30ce](https://github.com/Tencent/Hippy/commit/42c30ceddf6a0a3fd70a2d6b1208f080773fc002))
* **ios:** a placeholder of text attachment for all system version ([519d40e](https://github.com/Tencent/Hippy/commit/519d40edb364ef1acbc6f5194d56b31dbf0a3f20))
* **ios:** place an empty image for placeholder ([f1e1856](https://github.com/Tencent/Hippy/commit/f1e18562d31218f258dca69512166ebe73a17e5f))


### Features

* **android:** support add native module after init engine ([d1924d6](https://github.com/Tencent/Hippy/commit/d1924d676b0fdc5e48c23772dbf0110ba3f9fd93))
* **android:** update `x5-lite` definitions ([86f9509](https://github.com/Tencent/Hippy/commit/86f9509506a1f73278848c61ba75c7f5ffdfd5a0))
* **hippy-react:** add global bubbles config ([56edf20](https://github.com/Tencent/Hippy/commit/56edf204214b56cbf1098097c34cc84d20dff069))
* **hippy-vue:** add getElemCss function ([32101dc](https://github.com/Tencent/Hippy/commit/32101dcad1bce6bde43f4253d4e0f785ce114d35))





# [2.10.0](https://github.com/Tencent/Hippy/compare/2.9.2...2.10.0) (2021-10-12)


Expand Down
2 changes: 1 addition & 1 deletion android/sdk/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ NDK_VERSION=21.4.7075529

#maven central sdk version
#1.0.0-SNAPSHOT
VERSION_NAME=2.10.0
VERSION_NAME=2.10.1
VERSION_CODE=1

#ABI
Expand Down
2 changes: 1 addition & 1 deletion examples/android-demo/res/index.android.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions examples/android-demo/res/vendor.android.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export default class TextInputExpo extends Component {
<TextInput
style={styles.input_style}
keyboardType="password"
placeholder="password"
placeholder="Password"
/>
{renderTitle('maxLength')}
<TextInput
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default {
STYLE_LOADING,
loadingState: '正在加载...',
isLoading: false,
isIos: Vue.Native.Platform.OS === 'ios',
isIos: Vue.Native.Platform === 'ios',
};
},
computed: {
Expand Down
2 changes: 1 addition & 1 deletion examples/ios-demo/res/index.ios.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 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.10.0'
s.version = '2.10.1'
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 @@ -42,7 +42,7 @@
NSString *const HippyJavaScriptDidFailToLoadNotification = @"HippyJavaScriptDidFailToLoadNotification";
NSString *const HippyDidInitializeModuleNotification = @"HippyDidInitializeModuleNotification";
NSString *const HippyBusinessDidLoadNotification = @"HippyBusinessDidLoadNotification";
NSString *const _HippySDKVersion = @"2.10.0";
NSString *const _HippySDKVersion = @"2.10.1";

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.10.0"
"version": "2.10.1"
}
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.10.1](https://github.com/Tencent/Hippy/tree/master/packages/hippy-debug-server/compare/2.10.0...2.10.1) (2021-10-27)

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





# [2.10.0](https://github.com/Tencent/Hippy/tree/master/packages/hippy-debug-server/compare/2.9.2...2.10.0) (2021-10-12)

**Note:** Version bump only for package @hippy/debug-server
Expand Down
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.10.0",
"version": "2.10.1",
"description": "Dev server for hippy-core.",
"repository": "https://github.com/Tencent/Hippy/tree/master/packages/hippy-debug-server",
"homepage": "http://hippyjs.org",
Expand Down
8 changes: 8 additions & 0 deletions packages/hippy-react-web/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.10.1](https://github.com/Tencent/Hippy/tree/master/packages/hippy-react-web/compare/2.10.0...2.10.1) (2021-10-27)

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





# [2.10.0](https://github.com/Tencent/Hippy/tree/master/packages/hippy-react-web/compare/2.9.2...2.10.0) (2021-10-12)

**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.

2 changes: 1 addition & 1 deletion 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.10.0",
"version": "2.10.1",
"description": "Web Adapter for Hippy React",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
16 changes: 16 additions & 0 deletions packages/hippy-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.10.1](https://github.com/Tencent/Hippy/tree/master/packages/hippy-react/compare/2.10.0...2.10.1) (2021-10-27)


### Bug Fixes

* **hippy-react:** change dev condition judge ([268a6e9](https://github.com/Tencent/Hippy/tree/master/packages/hippy-react/commit/268a6e90eb8c926f17776a26e7f554221134f9cd))


### Features

* **hippy-react:** add global bubbles config ([56edf20](https://github.com/Tencent/Hippy/tree/master/packages/hippy-react/commit/56edf204214b56cbf1098097c34cc84d20dff069))





# [2.10.0](https://github.com/Tencent/Hippy/tree/master/packages/hippy-react/compare/2.9.2...2.10.0) (2021-10-12)


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.10.0",
"version": "2.10.1",
"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.10.1](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue-css-loader/compare/2.10.0...2.10.1) (2021-10-27)

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





# [2.10.0](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue-css-loader/compare/2.9.2...2.10.0) (2021-10-12)


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.10.0",
"version": "2.10.1",
"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-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.10.1](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue-native-components/compare/2.10.0...2.10.1) (2021-10-27)

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





# [2.10.0](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue-native-components/compare/2.9.2...2.10.0) (2021-10-12)

**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.10.0",
"version": "2.10.1",
"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.10.1](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue-router/compare/2.10.0...2.10.1) (2021-10-27)

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





# [2.10.0](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue-router/compare/2.9.2...2.10.0) (2021-10-12)

**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.10.0",
"version": "2.10.1",
"description": "Official router for hippy-vue",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
11 changes: 11 additions & 0 deletions packages/hippy-vue/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.10.1](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue/compare/2.10.0...2.10.1) (2021-10-27)


### Features

* **hippy-vue:** add getElemCss function ([32101dc](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue/commit/32101dcad1bce6bde43f4253d4e0f785ce114d35))





# [2.10.0](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue/compare/2.9.2...2.10.0) (2021-10-12)


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.10.0",
"version": "2.10.1",
"description": "Vue binding for Hippy native framework",
"author": "XQ Kuang <[email protected]>",
"license": "Apache-2.0",
Expand Down

0 comments on commit cf24745

Please sign in to comment.