Skip to content

Commit a3d9e61

Browse files
committed
chore(release): released 2.17.6
1 parent 730795d commit a3d9e61

File tree

35 files changed

+137
-32
lines changed

35 files changed

+137
-32
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,31 @@
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.17.6](https://github.com/iPel/Hippy/compare/2.17.5...2.17.6) (2026-03-27)
7+
8+
9+
### Bug Fixes
10+
11+
* **ios:** animation thread race and add protection for running script ([#4205](https://github.com/iPel/Hippy/issues/4205)) ([5582016](https://github.com/iPel/Hippy/commit/55820164df5f397acf60257ce77bad64bc8d50e0))
12+
* **ios:** char_traits compile error for xcode 16.3 ([382ac02](https://github.com/iPel/Hippy/commit/382ac02c0b7a0e41765582dbeb9600b517154b37))
13+
* **ios:** exception may occur while setting linearGradient prop ([47ad55e](https://github.com/iPel/Hippy/commit/47ad55e172ef5559970facb93c7f0ed8d37fac3b))
14+
* **ios:** improve accuracy of ViewPager's onPageScroll parameters ([#3992](https://github.com/iPel/Hippy/issues/3992)) ([d2e0569](https://github.com/iPel/Hippy/commit/d2e0569703c2b493a359f8d8e3ec012b0dcbdae9))
15+
* **ios:** improved accuracy of ViewPager's ScrollStateChanged API ([d6eb6cd](https://github.com/iPel/Hippy/commit/d6eb6cd6cb4fbc04c8239e3c16e49b61be4a81cc))
16+
* **ios:** iOS18 adaptation of TextView component ([4e0402c](https://github.com/iPel/Hippy/commit/4e0402cb832d7f166c58344b6c60799d00d123ed))
17+
* **ios:** turbo module type convert nullptr crash ([6a3d884](https://github.com/iPel/Hippy/commit/6a3d884db618ad1f94da304f57b5b94a8e9a29d8))
18+
* **ios:** websocket module support extra headers ([#4069](https://github.com/iPel/Hippy/issues/4069)) ([d9021a1](https://github.com/iPel/Hippy/commit/d9021a11a01864d25d5301c543c1852cc593ae5d))
19+
20+
21+
### Features
22+
23+
* **android:** support 16k page ([730795d](https://github.com/iPel/Hippy/commit/730795d27ddcacbac8d075f619684714e97372fc))
24+
* **ios:** add HippyFontChangeTriggerNotification for native font update ([3a35175](https://github.com/iPel/Hippy/commit/3a3517577d454a07b0d92cee7408ce6eb5486530))
25+
* **ios:** add initialContentIndex prop for ListView ([#4029](https://github.com/iPel/Hippy/issues/4029)) ([f51db89](https://github.com/iPel/Hippy/commit/f51db8991f20472e18570d644a4dc62935d51889))
26+
27+
28+
29+
30+
631
## [2.17.5](https://github.com/Tencent/Hippy/compare/2.17.4...2.17.5) (2024-07-18)
732

833

android/sdk/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ NDK_VERSION=25.0.8775105
4949
#
5050
# Specifies SDK version
5151
#
52-
VERSION_NAME=2.17.5
52+
VERSION_NAME=2.17.6
5353

5454
#
5555
# Whether to skip build C/C++ code

core/src/vm/jsc/native_source_code_ios.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Tencent is pleased to support the open source community by making
33
* Hippy available.
44
*
5-
* Copyright (C) 2017-2024 THL A29 Limited, a Tencent company.
5+
* Copyright (C) 2017-2026 THL A29 Limited, a Tencent company.
66
* All rights reserved.
77
*
88
* Licensed under the Apache License, Version 2.0 (the "License");

core/src/vm/v8/native_source_code_android.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Tencent is pleased to support the open source community by making
33
* Hippy available.
44
*
5-
* Copyright (C) 2017-2024 THL A29 Limited, a Tencent company.
5+
* Copyright (C) 2017-2026 THL A29 Limited, a Tencent company.
66
* All rights reserved.
77
*
88
* Licensed under the Apache License, Version 2.0 (the "License");

hippy.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'hippy'
11-
s.version = '2.17.5'
11+
s.version = '2.17.6'
1212
s.summary = 'Hippy Cross Platform Framework'
1313
s.description = <<-DESC
1414
Hippy is designed for developers to easily build cross-platform and high-performance awesome apps.

ios/sdk/base/HippyBridge.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
NSString *const HippyJavaScriptDidFailToLoadNotification = @"HippyJavaScriptDidFailToLoadNotification";
4242
NSString *const HippyDidInitializeModuleNotification = @"HippyDidInitializeModuleNotification";
4343
NSString *const HippyBusinessDidLoadNotification = @"HippyBusinessDidLoadNotification";
44-
NSString *const _HippySDKVersion = @"2.17.5";
44+
NSString *const _HippySDKVersion = @"2.17.6";
4545

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

lerna.json

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

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.17.6](https://github.com/Tencent/Hippy/compare/2.17.5...2.17.6) (2026-03-27)
7+
8+
**Note:** Version bump only for package @hippy/react-web
9+
10+
11+
12+
13+
614
## [2.17.3](https://github.com/Tencent/Hippy/compare/2.17.2...2.17.3) (2024-04-10)
715

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

packages/hippy-react-web/package-lock.json

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

packages/hippy-react-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hippy/react-web",
3-
"version": "2.17.3",
3+
"version": "2.17.6",
44
"description": "Web Adapter for Hippy React",
55
"main": "dist/cjs/index.js",
66
"module": "dist/index.js",

0 commit comments

Comments
 (0)