Skip to content

Commit 81caaaf

Browse files
chore(ios): update spm from 7.0.0 to 8.0.0-beta (#145)
1 parent 4da3e4f commit 81caaaf

File tree

8 files changed

+1287
-1229
lines changed

8 files changed

+1287
-1229
lines changed

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1274,13 +1274,6 @@ Supports markers of either either "legacy" or "advanced" types.
12741274
<code>google.maps.<a href="#marker">Marker</a> | google.maps.marker.AdvancedMarkerElement</code>
12751275

12761276

1277-
#### Marker
1278-
1279-
Supports markers of either either "legacy" or "advanced" types.
1280-
1281-
<code>google.maps.<a href="#marker">Marker</a> | google.maps.marker.AdvancedMarkerElement</code>
1282-
1283-
12841277
### Enums
12851278

12861279

example-app-spm/ios/App/CapApp-SPM/Package.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ let package = Package(
1111
targets: ["CapApp-SPM"])
1212
],
1313
dependencies: [
14-
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", exact: "7.4.1"),
15-
.package(name: "CapacitorApp", path: "../../../../node_modules/.pnpm/@capacitor+app@7.1.0_@capacitor+core@7.4.1/node_modules/@capacitor/app"),
14+
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", exact: "8.0.0-beta.0"),
15+
.package(name: "CapacitorApp", path: "../../../../node_modules/.pnpm/@capacitor+app@8.0.0-beta.0_@capacitor+core@8.0.0-beta.0/node_modules/@capacitor/app"),
1616
.package(name: "CapacitorGoogleMaps", path: "../../../../plugin"),
17-
.package(name: "CapacitorHaptics", path: "../../../../node_modules/.pnpm/@capacitor+haptics@7.0.2_@capacitor+core@7.4.1/node_modules/@capacitor/haptics"),
18-
.package(name: "CapacitorKeyboard", path: "../../../../node_modules/.pnpm/@capacitor+keyboard@7.0.3_@capacitor+core@7.4.1/node_modules/@capacitor/keyboard"),
19-
.package(name: "CapacitorStatusBar", path: "../../../../node_modules/.pnpm/@capacitor+status-bar@7.0.3_@capacitor+core@7.4.1/node_modules/@capacitor/status-bar")
17+
.package(name: "CapacitorHaptics", path: "../../../../node_modules/.pnpm/@capacitor+haptics@8.0.0-next.2_@capacitor+core@8.0.0-beta.0/node_modules/@capacitor/haptics"),
18+
.package(name: "CapacitorKeyboard", path: "../../../../node_modules/.pnpm/@capacitor+keyboard@8.0.0-next.3_@capacitor+core@8.0.0-beta.0/node_modules/@capacitor/keyboard"),
19+
.package(name: "CapacitorStatusBar", path: "../../../../node_modules/.pnpm/@capacitor+status-bar@8.0.0-beta.0_@capacitor+core@8.0.0-beta.0/node_modules/@capacitor/status-bar")
2020
],
2121
targets: [
2222
.target(

example-app-spm/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
"version": "0.0.2",
44
"private": true,
55
"dependencies": {
6-
"@capacitor/android": "^7.0.0",
7-
"@capacitor/app": "^7.0.0",
8-
"@capacitor/core": "^7.0.0",
6+
"@capacitor/android": "next",
7+
"@capacitor/app": "next",
8+
"@capacitor/core": "next",
99
"@capacitor/google-maps": "workspace:*",
10-
"@capacitor/haptics": "^7.0.0",
11-
"@capacitor/ios": "^7.0.0",
12-
"@capacitor/keyboard": "^7.0.0",
13-
"@capacitor/status-bar": "^7.0.0",
10+
"@capacitor/haptics": "next",
11+
"@capacitor/ios": "next",
12+
"@capacitor/keyboard": "next",
13+
"@capacitor/status-bar": "next",
1414
"@ionic/react": "^6.0.0",
1515
"@ionic/react-router": "^6.0.0",
1616
"@testing-library/jest-dom": "^5.11.9",
@@ -69,7 +69,7 @@
6969
]
7070
},
7171
"devDependencies": {
72-
"@capacitor/cli": "^7.0.0"
72+
"@capacitor/cli": "next"
7373
},
7474
"description": "An Ionic project"
7575
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"ci:publish:dev": "lerna publish prerelease --conventional-commits --conventional-prerelease --preid dev-$(date +\"%Y%m%dT%H%M%S\") --force-publish --no-changelog --no-git-tag-version --dist-tag dev --no-push --yes"
1717
},
1818
"devDependencies": {
19-
"@capacitor/ios": ">=7.0.0",
19+
"@capacitor/ios": "next",
2020
"@types/node": "^20.11.25",
2121
"glob": "^11.0.0",
2222
"husky": "^9.0.1",

plugin/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ let package = Package(
1010
targets: ["CapacitorGoogleMapsPlugin"])
1111
],
1212
dependencies: [
13-
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "7.0.0"),
13+
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.0-beta"),
1414
.package(url: "https://github.com/googlemaps/ios-maps-sdk.git", .upToNextMajor(from:"9.4.0")),
1515
.package(url: "https://github.com/googlemaps/google-maps-ios-utils.git", .exact("6.1.0"))
1616
],

plugin/e2e-tests/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
"version": "0.0.1",
44
"private": true,
55
"dependencies": {
6-
"@capacitor/app": "^7.0.0",
7-
"@capacitor/android": "^7.0.0",
8-
"@capacitor/core": "^7.0.0",
6+
"@capacitor/app": "next",
7+
"@capacitor/android": "next",
8+
"@capacitor/core": "next",
99
"@capacitor/google-maps": "file:..",
10-
"@capacitor/haptics": "^7.0.0",
11-
"@capacitor/ios": "^7.0.0",
12-
"@capacitor/keyboard": "^7.0.0",
13-
"@capacitor/status-bar": "^7.0.0",
10+
"@capacitor/haptics": "next",
11+
"@capacitor/ios": "next",
12+
"@capacitor/keyboard": "next",
13+
"@capacitor/status-bar": "next",
1414
"@ionic/react": "^6.0.0",
1515
"@ionic/react-router": "^6.0.0",
1616
"@testing-library/jest-dom": "^5.11.9",
@@ -77,7 +77,7 @@
7777
]
7878
},
7979
"devDependencies": {
80-
"@capacitor/cli": "^7.0.0",
80+
"@capacitor/cli": "next",
8181
"@ionic/e2e": "0.2.0-next.6",
8282
"@ionic/e2e-components-ionic": "0.2.0-next.6",
8383
"appium": "^1.22.1"

plugin/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@
5656
"unittest:android": "cd ./unit-tests/android && ./gradlew testDebugUnitTest"
5757
},
5858
"devDependencies": {
59-
"@capacitor/android": ">=7.0.0",
60-
"@capacitor/core": ">=7.0.0",
59+
"@capacitor/android": "next",
60+
"@capacitor/core": "next",
6161
"@capacitor/docgen": "0.3.0",
62-
"@capacitor/ios": ">=7.0.0",
62+
"@capacitor/ios": "next",
6363
"@ionic/prettier-config": "^1.0.1",
6464
"@types/resize-observer-browser": "^0.1.7",
6565
"@types/supercluster": "^7.1.0",
@@ -77,7 +77,7 @@
7777
"typescript": "^5.4.2"
7878
},
7979
"peerDependencies": {
80-
"@capacitor/core": ">=7.0.0"
80+
"@capacitor/core": "next"
8181
},
8282
"capacitor": {
8383
"ios": {

0 commit comments

Comments
 (0)