Skip to content

Commit 82f058b

Browse files
committed
This is a combination of 6 commits.
feat(android)!: automatically register service workers WIP chore(android): Update default value for androidxCoreVersion (#7750) chore(ci): use macos-15 (#7758) refactor(core)!: Remove deprecated plugin methods/properties (#7749) fix
1 parent a4aeb55 commit 82f058b

23 files changed

+52
-410
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
path: ~/.npm
3232
key: ${{ runner.OS }}-dependencies-cache-${{ hashFiles('**/package.json') }}
3333
lint:
34-
runs-on: macos-14
34+
runs-on: macos-15
3535
timeout-minutes: 30
3636
steps:
3737
- uses: actions/setup-node@v4
@@ -47,7 +47,7 @@ jobs:
4747
- run: brew install swiftlint
4848
- run: npm run lint
4949
test-cli:
50-
runs-on: macos-14
50+
runs-on: macos-15
5151
timeout-minutes: 30
5252
needs:
5353
- setup
@@ -89,7 +89,7 @@ jobs:
8989
- run: npm test
9090
working-directory: ./core
9191
test-ios:
92-
runs-on: macos-14
92+
runs-on: macos-15
9393
timeout-minutes: 30
9494
needs:
9595
- setup

.github/workflows/publish-ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
publish-ios:
12-
runs-on: macos-14
12+
runs-on: macos-15
1313
timeout-minutes: 30
1414
steps:
1515
- run: sudo xcode-select --switch /Applications/Xcode_16.app

.github/workflows/publish-npm-alpha.yml

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

99
jobs:
1010
deploy-npm-alpha:
11-
runs-on: macos-14
11+
runs-on: macos-15
1212
timeout-minutes: 30
1313
steps:
1414
- uses: actions/checkout@v4

.github/workflows/publish-npm-beta.yml

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

99
jobs:
1010
deploy-npm-beta:
11-
runs-on: macos-14
11+
runs-on: macos-15
1212
timeout-minutes: 30
1313
steps:
1414
- uses: actions/checkout@v4

.github/workflows/publish-npm-dev.yml

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

99
jobs:
1010
deploy-npm-dev:
11-
runs-on: macos-14
11+
runs-on: macos-15
1212
timeout-minutes: 30
1313
steps:
1414
- uses: actions/checkout@v4

.github/workflows/publish-npm-latest-from-pre.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
jobs:
1717
deploy-npm-latest:
1818
if: github.ref == 'refs/heads/main'
19-
runs-on: macos-14
19+
runs-on: macos-15
2020
timeout-minutes: 30
2121
steps:
2222
- uses: actions/checkout@v4

.github/workflows/publish-npm-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
jobs:
1717
deploy-npm-latest:
1818
if: github.ref == 'refs/heads/main'
19-
runs-on: macos-14
19+
runs-on: macos-15
2020
timeout-minutes: 30
2121
steps:
2222
- uses: actions/checkout@v4

.github/workflows/publish-npm-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
jobs:
1212
deploy-npm-nightly:
1313
if: github.ref == 'refs/heads/main'
14-
runs-on: macos-14
14+
runs-on: macos-15
1515
timeout-minutes: 30
1616
steps:
1717
- uses: actions/checkout@v4

.github/workflows/publish-npm-rc.yml

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

99
jobs:
1010
deploy-npm-rc:
11-
runs-on: macos-14
11+
runs-on: macos-15
1212
timeout-minutes: 30
1313
steps:
1414
- uses: actions/checkout@v4

android/capacitor/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ext {
22
androidxActivityVersion = project.hasProperty('androidxActivityVersion') ? rootProject.ext.androidxActivityVersion : '1.9.2'
33
androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.7.0'
44
androidxCoordinatorLayoutVersion = project.hasProperty('androidxCoordinatorLayoutVersion') ? rootProject.ext.androidxCoordinatorLayoutVersion : '1.2.0'
5-
androidxCoreVersion = project.hasProperty('androidxCoreVersion') ? rootProject.ext.androidxCoreVersion : '1.13.1'
5+
androidxCoreVersion = project.hasProperty('androidxCoreVersion') ? rootProject.ext.androidxCoreVersion : '1.15.0'
66
androidxFragmentVersion = project.hasProperty('androidxFragmentVersion') ? rootProject.ext.androidxFragmentVersion : '1.8.4'
77
androidxWebkitVersion = project.hasProperty('androidxWebkitVersion') ? rootProject.ext.androidxWebkitVersion : '1.12.1'
88
junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.2'

0 commit comments

Comments
 (0)