Skip to content

Commit 9f44a79

Browse files
Update macOS/iOS library [5.1.0 -> 5.1.1]
Includes C API 5.0.0 and database 5.0.0-2025-12-08
1 parent a6dbe04 commit 9f44a79

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed

dev-doc/updating-c-library.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,18 +60,18 @@ from the relevant objectbox repository release tag (like `java-4.1.0`).
6060
For the Flutter plugins on iOS/macOS ([view releases](https://github.com/objectbox/objectbox-swift/releases))
6161

6262
```bash
63-
./tool/set-swift-version.sh 5.1.0
63+
./tool/set-swift-version.sh 5.1.1
6464
```
6565

6666
```text
67-
* Update ObjectBox database for Flutter iOS/macOS apps to 5.1.0.
67+
* Update ObjectBox database for Flutter iOS/macOS apps to 5.1.1.
6868
For existing projects, run `pod repo update` and `pod update ObjectBox` in the `ios` or `macos` directories.
6969
```
7070

7171
```text
72-
Update macOS/iOS library [5.0.0 -> 5.1.0]
72+
Update macOS/iOS library [5.1.0 -> 5.1.1]
7373
74-
Includes C API 5.0.0 and database 5.0.0-2025-11-27
74+
Includes C API 5.0.0 and database 5.0.0-2025-12-08
7575
```
7676

7777
Note: the embedded C API and ObjectBox version can be looked up

flutter_libs/ios/objectbox_flutter_libs.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
1818
s.source_files = 'Classes/**/*'
1919

2020
s.dependency 'Flutter'
21-
s.dependency 'ObjectBox', '5.1.0'
21+
s.dependency 'ObjectBox', '5.1.1'
2222

2323
# Flutter.framework does not contain a i386 slice.
2424
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }

flutter_libs/macos/objectbox_flutter_libs.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
1818
s.source_files = 'Classes/**/*'
1919

2020
s.dependency 'FlutterMacOS'
21-
s.dependency 'ObjectBox', '5.1.0'
21+
s.dependency 'ObjectBox', '5.1.1'
2222

2323
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
2424
s.swift_version = '5.3'

objectbox/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## latest
22

3+
* Update ObjectBox database for Flutter iOS/macOS apps to 5.1.1.
4+
For existing projects, run `pod repo update` and `pod update ObjectBox` in the `ios` or `macos` directories.
5+
* Sync client: fix for encrypted (`wss://`) connections on iOS devices.
6+
37
## 5.0.3 (2025-12-03)
48

59
* Update ObjectBox database for Flutter Linux/Windows, Dart Native apps to [5.0.0](https://github.com/objectbox/objectbox-c/releases/tag/v5.0.0).

sync_flutter_libs/ios/objectbox_sync_flutter_libs.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
1818
s.source_files = 'Classes/**/*'
1919

2020
s.dependency 'Flutter'
21-
s.dependency 'ObjectBox', '5.1.0-sync'
21+
s.dependency 'ObjectBox', '5.1.1-sync'
2222

2323
# Flutter.framework does not contain a i386 slice.
2424
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }

sync_flutter_libs/macos/objectbox_sync_flutter_libs.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Pod::Spec.new do |s|
1414
s.source_files = 'Classes/**/*'
1515

1616
s.dependency 'FlutterMacOS'
17-
s.dependency 'ObjectBox', '5.1.0-sync'
17+
s.dependency 'ObjectBox', '5.1.1-sync'
1818

1919
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
2020
s.swift_version = '5.3'

0 commit comments

Comments
 (0)