Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: upgrade MapLibre Native iOS to v6.10.0 #598

Merged
merged 41 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
1e468a6
feat: add GoogleLocationEngineImpl
KiwiKilian Nov 27, 2024
8e08e7c
Merge branch 'beta' into feat/google-location-engine
KiwiKilian Dec 2, 2024
9132058
fix: locatin package names
KiwiKilian Dec 2, 2024
0febd9a
Merge branch 'beta' into feat/google-location-engine
KiwiKilian Dec 28, 2024
94adc62
chore: remove debug
KiwiKilian Dec 28, 2024
f6dd68e
feat: use namespace prefix for gradle properties
KiwiKilian Dec 30, 2024
6a26674
feat: configure locationEngine via gradle.properties and sourceSets
KiwiKilian Dec 30, 2024
50f0fcb
refactor: split out ios plugin code
KiwiKilian Dec 30, 2024
4407821
test: update Podfile fixtures
KiwiKilian Dec 30, 2024
ea53e6d
test: apply mods to snapshots
KiwiKilian Dec 30, 2024
ec8e304
feat: add android expo plugin for location engine
KiwiKilian Jan 2, 2025
1052747
fix: use PropertiesItem from @expo/config-plugins
KiwiKilian Jan 2, 2025
2890d72
style: fix type import
KiwiKilian Jan 2, 2025
bd6b68a
test: improve ios fixtures
KiwiKilian Jan 2, 2025
92ac844
feat: revert plugin
KiwiKilian Jan 2, 2025
cd79948
feat: remove all new plugin files
KiwiKilian Jan 2, 2025
40d0dcb
style: remove unused import
KiwiKilian Jan 2, 2025
b6a2e8c
feat: use customizable properties with prefix
KiwiKilian Jan 2, 2025
1d239d2
feat: use withPodfile instead of withDangerousMod
KiwiKilian Jan 2, 2025
4aff753
test: use snapshot-diff for better plugin snapshots
KiwiKilian Jan 2, 2025
684b6f5
test: use snapshotDiff.getSnapshotDiffSerializer
KiwiKilian Jan 2, 2025
ae80f42
test: add Podfile fixture sources
KiwiKilian Jan 2, 2025
33f4288
Merge branch 'feat/expo-ios-plugin-clean' into feat/expo-android-plugin
KiwiKilian Jan 3, 2025
d884c88
feat: add locationEngine to Android plugin
KiwiKilian Jan 3, 2025
e22cfd5
feat: add configurable versions on Android
KiwiKilian Jan 3, 2025
69928a5
feat: add Android properties to Expo plugin
KiwiKilian Jan 3, 2025
f04adb8
docs: add doc comments to MapLibrePluginProps
KiwiKilian Jan 3, 2025
6484405
feat: allow more Podfile customization
KiwiKilian Jan 3, 2025
b24a238
feat: add iOS properties to Expo plugin
KiwiKilian Jan 3, 2025
0b79091
Merge branch 'beta' into feat/expo-plugin-props
KiwiKilian Jan 3, 2025
a9aff35
style: fix typo
KiwiKilian Jan 3, 2025
9f048ca
style: use slash regex
KiwiKilian Jan 3, 2025
eac7bb8
test: fix applyPodfileConstants behavior
KiwiKilian Jan 3, 2025
28e815d
fix: update iOS native version regex
KiwiKilian Jan 3, 2025
620153b
style: fix linting import type
KiwiKilian Jan 3, 2025
82daefc
refactor: rename constants to global variables
KiwiKilian Jan 4, 2025
2a5216b
docs: add customization docs
KiwiKilian Jan 4, 2025
a2c87ca
docs: improve customization wordings
KiwiKilian Jan 4, 2025
d29f652
docs: customization wording
KiwiKilian Jan 4, 2025
af57075
feat: upgrade MapLibre Native iOS to v6.10.0
KiwiKilian Jan 10, 2025
b10ea8a
Merge branch 'beta' into feat/upgrade-ios
KiwiKilian Jan 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guides/setup/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This package wraps MapLibre Native for Android and iOS, these are the currently
</dd>
<dt>iOS</dt>
<dd>
<a href="https://github.com/maplibre/maplibre-native/releases/tag/ios-v6.9.0">6.9.0</a>
<a href="https://github.com/maplibre/maplibre-native/releases/tag/ios-v6.10.0">6.10.0</a>
</dd>
</dl>

Expand Down
2 changes: 1 addition & 1 deletion maplibre-react-native.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))

# Global Variable Defaults
$MLRN_NATIVE_VERSION ||= "6.9.0"
$MLRN_NATIVE_VERSION ||= "6.10.0"
$MLRN_SPM_SPEC ||= {
url: "https://github.com/maplibre/maplibre-gl-native-distribution",
requirement: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@
repositoryURL = "https://github.com/maplibre/maplibre-gl-native-distribution";
requirement = {
kind = exactVersion;
version = 6.9.0;
version = 6.10.0;
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/maplibre/maplibre-gl-native-distribution",
"state" : {
"revision" : "93cb32c95b48f62edb27c75792038849cdfdaa35",
"version" : "6.9.0"
"revision" : "3615e3cc81b09b78b58b183660815b0f36107b3b",
"version" : "6.10.0"
}
}
],
Expand Down
Loading