Skip to content

Commit b51d4aa

Browse files
authored
Upgrade dependencies + ios xcframework (#81)
1 parent d94616b commit b51d4aa

File tree

144 files changed

+2025
-1565
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+2025
-1565
lines changed

.github/workflows/example-docker.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
web:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: docker/setup-qemu-action@v1
15-
- uses: docker/setup-buildx-action@v1
16-
- uses: docker/login-action@v1
13+
- uses: actions/checkout@v4
14+
- uses: docker/setup-qemu-action@v3
15+
- uses: docker/setup-buildx-action@v3
16+
- uses: docker/login-action@v3
1717
with:
1818
registry: ghcr.io
1919
username: ${{ github.repository_owner }}
2020
password: ${{ secrets.CR_PAT }}
21-
- uses: docker/build-push-action@v2
21+
- uses: docker/build-push-action@v6
2222
with:
2323
context: .
2424
file: ./example/Dockerfile

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 0
1515
- uses: scottbrenner/generate-changelog-action@master

.github/workflows/tests_android.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
e2e:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
15-
- uses: actions/setup-java@v3
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-java@v4
1616
with:
1717
distribution: 'temurin'
1818
java-version: '17'
19-
- uses: android-actions/setup-android@v2
19+
- uses: android-actions/setup-android@v3
2020
- uses: subosito/flutter-action@main
2121
with:
2222
flutter-version: '3.x'

.github/workflows/tests_browser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
e2e:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- uses: subosito/flutter-action@main
1717
with:
1818
flutter-version: '3.x'

.github/workflows/tests_ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: futureware-tech/simulator-action@v1
1515
with:
1616
os: iOS
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- uses: subosito/flutter-action@main
1919
with:
2020
flutter-version: '3.x'

.github/workflows/tests_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
e2e:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: subosito/flutter-action@main
1616
with:
1717
flutter-version: '3.x'

.github/workflows/tests_macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
e2e:
1212
runs-on: macos-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: subosito/flutter-action@main
1616
with:
1717
flutter-version: '3.x'

.github/workflows/tests_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
e2e:
1212
runs-on: windows-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: subosito/flutter-action@main
1616
with:
1717
flutter-version: '3.x'

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 3.7.0
2+
- Updates binaries + Add XCFramework for ios
3+
14
## 3.6.6
25
- Revert "Fix build on web #77"
36

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ default: test
33
test:
44
cd example && flutter test integration_test/app_test.dart
55

6+
fmt:
7+
dart format . && dart fix --apply
8+
cd example && dart format . && dart fix --apply
9+
610
upgrade: upgrade-libs upgrade-flatbuffers
711

812
upgrade-libs:

0 commit comments

Comments
 (0)