Skip to content

Commit

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

## [2.15.1](https://github.com/Tencent/Hippy/compare/2.15.0...2.15.1) (2022-10-26)


### Bug Fixes

* **android:** sticky item has incorrect height after refresh ([76694c5](https://github.com/Tencent/Hippy/commit/76694c50ca438880da36f6862d02b45417826b3a))
* **homepage:** fix Bad HTML filtering regexp ([2575799](https://github.com/Tencent/Hippy/commit/2575799f9d10a602abc7762c765dede2baf08792))
* **ios:** avoid a thread race for image component ([8541e28](https://github.com/Tencent/Hippy/commit/8541e28303e2af883e2c7a9b389f4a4b955b118a))
* **ios:** avoid CTTelephony's occasional crash ([c2536f3](https://github.com/Tencent/Hippy/commit/c2536f3096508701463130810fba190374df3562))
* **ios:** fix image view dangling pointer ([60b17db](https://github.com/Tencent/Hippy/commit/60b17dbbec2082d81403481dfed3d88f11c1e492))
* **ios:** no animation for frame reset ([ba43d47](https://github.com/Tencent/Hippy/commit/ba43d470b8eb3fbf8b5537fe0052f1eda710d3b3))
* **ios:** virtual nodes need to be flushed ([be96c20](https://github.com/Tencent/Hippy/commit/be96c20fbb7fefcbd43c671c7c814bc1e4dacefa))


### Features

* **devtools:** devtools report ([#2556](https://github.com/Tencent/Hippy/issues/2556)) ([37eb1c2](https://github.com/Tencent/Hippy/commit/37eb1c29ce92e2675ea9fdf8bf19958c857f95e5))
* **vue:** fix attribute selector & support deep selector ([87ce13e](https://github.com/Tencent/Hippy/commit/87ce13e80369a067b04af5b43371976a95fe75d6))


### Performance Improvements

* **react:** assign initialListSize if not undefined ([8634501](https://github.com/Tencent/Hippy/commit/8634501c6d5849efa3ecf3725bf1219fcc13fde7))
* **vue:** refer native script source code to reduce number of loops ([#2571](https://github.com/Tencent/Hippy/issues/2571)) ([21900d0](https://github.com/Tencent/Hippy/commit/21900d0f0b494dc78ba33b4c1bae9934d587ecfd))





# [2.15.0](https://github.com/Tencent/Hippy/compare/2.14.7...2.15.0) (2022-10-14)


Expand Down
2 changes: 1 addition & 1 deletion android/sdk/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ NDK_VERSION=25.0.8775105
#
# Specifies SDK version
#
VERSION_NAME=2.15.0
VERSION_NAME=2.15.1

#
# Whether to skip build C/C++ code
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.15.0'
s.version = '2.15.1'
s.summary = 'Hippy Cross Platform Framework'

# 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.15.0";
NSString *const _HippySDKVersion = @"2.15.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.15.0"
"version": "2.15.1"
}
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.15.1](https://github.com/Tencent/Hippy/compare/2.15.0...2.15.1) (2022-10-26)

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





# [2.15.0](https://github.com/Tencent/Hippy/compare/2.14.7...2.15.0) (2022-10-14)


Expand Down
4 changes: 2 additions & 2 deletions 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.15.0",
"version": "2.15.1",
"description": "Web Adapter for Hippy React",
"main": "dist/index.js",
"homepage": "https://hippyjs.org",
Expand Down
11 changes: 11 additions & 0 deletions packages/hippy-react/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.15.1](https://github.com/Tencent/Hippy/compare/2.15.0...2.15.1) (2022-10-26)


### Performance Improvements

* **react:** assign initialListSize if not undefined ([8634501](https://github.com/Tencent/Hippy/commit/8634501c6d5849efa3ecf3725bf1219fcc13fde7))





# [2.15.0](https://github.com/Tencent/Hippy/compare/2.14.7...2.15.0) (2022-10-14)


Expand Down
4 changes: 2 additions & 2 deletions 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.15.0",
"version": "2.15.1",
"description": "Hippy react framework",
"main": "dist/index.js",
"homepage": "https://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.15.1](https://github.com/Tencent/Hippy/compare/2.15.0...2.15.1) (2022-10-26)

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





# [2.15.0](https://github.com/Tencent/Hippy/compare/2.14.7...2.15.0) (2022-10-14)


Expand Down
4 changes: 2 additions & 2 deletions 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.15.0",
"version": "2.15.1",
"description": "hippy-vue style loader module for webpack",
"main": "dist/css-loader.js",
"homepage": "https://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.15.1](https://github.com/Tencent/Hippy/compare/2.15.0...2.15.1) (2022-10-26)

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





# [2.15.0](https://github.com/Tencent/Hippy/compare/2.14.7...2.15.0) (2022-10-14)


Expand Down
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.15.0",
"version": "2.15.1",
"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.15.1](https://github.com/Tencent/Hippy/compare/2.15.0...2.15.1) (2022-10-26)

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





# [2.15.0](https://github.com/Tencent/Hippy/compare/2.14.7...2.15.0) (2022-10-14)

**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.15.0",
"version": "2.15.1",
"description": "Native components middleware for Hippy-Vue, the components only for native, can't compatible with web.",
"main": "dist/index.js",
"homepage": "https://hippyjs.org",
Expand Down
8 changes: 8 additions & 0 deletions packages/hippy-vue-next-style-parser/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.15.1](https://github.com/Tencent/Hippy/compare/2.15.0...2.15.1) (2022-10-26)

**Note:** Version bump only for package @hippy/hippy-vue-next-style-parser





# [2.15.0](https://github.com/Tencent/Hippy/compare/2.14.7...2.15.0) (2022-10-14)


Expand Down
4 changes: 2 additions & 2 deletions packages/hippy-vue-next-style-parser/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-next-style-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/hippy-vue-next-style-parser",
"version": "2.15.0",
"version": "2.15.1",
"description": "A css subset parser for hippy-vue-next",
"author": "OpenHippy Team",
"homepage": "https://hippyjs.org",
Expand Down
16 changes: 16 additions & 0 deletions packages/hippy-vue-next/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.15.1](https://github.com/Tencent/Hippy/compare/2.15.0...2.15.1) (2022-10-26)


### Features

* **vue:** fix attribute selector & support deep selector ([87ce13e](https://github.com/Tencent/Hippy/commit/87ce13e80369a067b04af5b43371976a95fe75d6))


### Performance Improvements

* **vue:** refer native script source code to reduce number of loops ([#2571](https://github.com/Tencent/Hippy/issues/2571)) ([21900d0](https://github.com/Tencent/Hippy/commit/21900d0f0b494dc78ba33b4c1bae9934d587ecfd))





# [2.15.0](https://github.com/Tencent/Hippy/compare/2.14.7...2.15.0) (2022-10-14)


Expand Down
4 changes: 2 additions & 2 deletions packages/hippy-vue-next/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-next/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/vue-next",
"version": "2.15.0",
"version": "2.15.1",
"description": "Vue-Next binding for Hippy native framework",
"author": "OpenHippy Team",
"homepage": "https://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.15.1](https://github.com/Tencent/Hippy/compare/2.15.0...2.15.1) (2022-10-26)

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





# [2.15.0](https://github.com/Tencent/Hippy/compare/2.14.7...2.15.0) (2022-10-14)

**Note:** Version bump only for package @hippy/vue-router
Expand Down
4 changes: 2 additions & 2 deletions 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.15.0",
"version": "2.15.1",
"description": "Official router for hippy-vue",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
16 changes: 16 additions & 0 deletions packages/hippy-vue/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.15.1](https://github.com/Tencent/Hippy/compare/2.15.0...2.15.1) (2022-10-26)


### Features

* **vue:** fix attribute selector & support deep selector ([87ce13e](https://github.com/Tencent/Hippy/commit/87ce13e80369a067b04af5b43371976a95fe75d6))


### Performance Improvements

* **vue:** refer native script source code to reduce number of loops ([#2571](https://github.com/Tencent/Hippy/issues/2571)) ([21900d0](https://github.com/Tencent/Hippy/commit/21900d0f0b494dc78ba33b4c1bae9934d587ecfd))





# [2.15.0](https://github.com/Tencent/Hippy/compare/2.14.7...2.15.0) (2022-10-14)


Expand Down
4 changes: 2 additions & 2 deletions packages/hippy-vue/package-lock.json

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

Loading

0 comments on commit 7b1ef74

Please sign in to comment.