Skip to content

Commit fc6e749

Browse files
authored
Prepare v0.16.1 releases (#1477)
* [core] v0.16.1 * [enhanced] v0.16.1
1 parent d8f9bf0 commit fc6e749

File tree

10 files changed

+30
-68
lines changed

10 files changed

+30
-68
lines changed

.github/workflows/backward_compatibility.yml

Lines changed: 0 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@ jobs:
2222
package:
2323
- core
2424
- enhanced
25-
- fwfh_cached_network_image
26-
- fwfh_chewie
27-
- fwfh_just_audio
28-
- fwfh_svg
29-
- fwfh_url_launcher
30-
- fwfh_webview
3125

3226
name: ${{ matrix.package }}
3327
runs-on: ubuntu-latest
@@ -80,51 +74,3 @@ jobs:
8074
with:
8175
flutter-version-file: packages/${{ matrix.package }}/pubspec.yaml
8276
- run: flutter test
83-
84-
core:
85-
strategy:
86-
matrix:
87-
channel:
88-
- beta
89-
- master
90-
- stable
91-
92-
# In case one of these fails, create a new PR against the `release/*` branch
93-
name: core@${{ matrix.channel }}
94-
runs-on: ubuntu-latest
95-
continue-on-error: true
96-
defaults:
97-
run:
98-
working-directory: packages/core
99-
env:
100-
GOLDEN_SKIP: "yes"
101-
steps:
102-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
103-
- name: Update pubspec.yaml
104-
run: |
105-
set -e
106-
107-
sudo snap install yq
108-
109-
# delete all overrides and use pub.dev versions
110-
yq e 'del(.dependency_overrides)' -i pubspec.yaml
111-
112-
# output for debugging
113-
cat pubspec.yaml
114-
- name: Setup Flutter
115-
uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 # v2.19.0
116-
with:
117-
channel: ${{ matrix.channel }}
118-
- run: flutter test
119-
120-
html_flex:
121-
runs-on: ubuntu-latest
122-
continue-on-error: true
123-
steps:
124-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
125-
- name: Verify hashes
126-
run: |
127-
set -e
128-
129-
_scripts=$( cat packages/core/lib/src/widgets/html_flex.dart | head -n 22 | tail -n 21 )
130-
bash -c "$_scripts"

.github/workflows/demo_app.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 # v2.19.0
2929
with:
3030
cache: true
31+
flutter-version: 3.29.0
3132
- uses: gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1
3233
- run: echo JAVA_HOME=$JAVA_HOME_17_X64 >> $GITHUB_ENV
3334

.github/workflows/flutter.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 # v2.19.0
3232
with:
3333
cache: true
34+
flutter-version: 3.29.0
3435

3536
# TODO: investigate why this fail on GitHub Actions
3637
# - run: dart format --set-exit-if-changed --output none .

.github/workflows/integration_test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 # v2.19.0
2424
with:
2525
cache: true
26+
flutter-version: 3.29.0
2627
- uses: gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1
2728
with:
2829
# only update gradle cache from demo_app.yml jobs
@@ -33,7 +34,7 @@ jobs:
3334
run: |
3435
set -e
3536
36-
dart pub global activate patrol_cli
37+
dart pub global activate patrol_cli 3.6.0
3738
3839
cd demo_app
3940
flutter build apk --config-only
@@ -70,6 +71,7 @@ jobs:
7071
uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 # v2.19.0
7172
with:
7273
cache: true
74+
flutter-version: 3.29.0
7375

7476
- name: Unlock Fastlane secrets
7577
env:
@@ -84,7 +86,7 @@ jobs:
8486
run: |
8587
set -e
8688
87-
dart pub global activate patrol_cli
89+
dart pub global activate patrol_cli 3.6.0
8890
8991
cd demo_app/ios
9092
fastlane patrol_build

packages/core/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.16.1
2+
3+
- Fix `text-align: center` inside tables (#1451)
4+
15
## 0.16.0
26

37
- Requires Flutter 3.22 (#1403)

packages/core/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flutter_widget_from_html_core
2-
version: 0.16.0
2+
version: 0.16.1
33
description: Flutter package to render html as widgets that focuses on correctness and extensibility.
44
homepage: https://github.com/daohoangson/flutter_widget_from_html/tree/master/packages/core
55

packages/enhanced/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.16.1
2+
3+
- Add support for [email protected] (requires Flutter 3.27, #1448)
4+
- Add support for [email protected] (#1475)
5+
- Add support for [email protected] (#1475)
6+
- Add support for [email protected] (#1452)
7+
- Fix `text-align: center` inside tables (#1451)
8+
19
## 0.16.0
210

311
- Requires Flutter 3.22 (#1403)

packages/enhanced/pubspec.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flutter_widget_from_html
2-
version: 0.16.0
2+
version: 0.16.1
33
description: Flutter package to render html as widgets that supports hyperlink, image, audio, video, iframe and many other tags.
44
homepage: https://github.com/daohoangson/flutter_widget_from_html
55

@@ -10,13 +10,13 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
flutter_widget_from_html_core: ^0.16.0
14-
fwfh_cached_network_image: ^0.16.0
15-
fwfh_chewie: ^0.16.0
16-
fwfh_just_audio: ^0.16.0
17-
fwfh_svg: ^0.16.0
18-
fwfh_url_launcher: ^0.16.0
19-
fwfh_webview: ^0.15.4
13+
flutter_widget_from_html_core: ">=0.16.0 <0.18.0"
14+
fwfh_cached_network_image: ^0.16.1
15+
fwfh_chewie: ^0.16.1
16+
fwfh_just_audio: ">=0.16.0 <0.18.0"
17+
fwfh_svg: ^0.16.1
18+
fwfh_url_launcher: ^0.16.1
19+
fwfh_webview: ^0.15.5
2020
html: ^0.15.0
2121

2222
dependency_overrides:

packages/fwfh_chewie/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dev_dependencies:
2323
sdk: flutter
2424
lint: any
2525
plugin_platform_interface: any
26-
video_player_platform_interface: ">=5.0.0 <7.0.0"
26+
video_player_platform_interface: 6.2.0
2727

2828
funding:
2929
- https://patreon.com/daohoangson

packages/fwfh_webview/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ dependencies:
1414
logging: ^1.0.0
1515
web: ">=0.3.0 <2.0.0"
1616
webview_flutter: ^4.0.1
17-
webview_flutter_android: ">=3.10.0 <5.0.0"
18-
webview_flutter_wkwebview: ^3.6.0
17+
webview_flutter_android: 4.5.0
18+
webview_flutter_wkwebview: 3.20.0
1919

2020
dependency_overrides:
2121
flutter_widget_from_html_core:

0 commit comments

Comments
 (0)