Skip to content

Commit 7e87350

Browse files
authored
Merge pull request #250 from powersync-ja/update-core
Update core extension to 0.3.12
2 parents b866741 + 5f750c9 commit 7e87350

File tree

53 files changed

+809
-348
lines changed

Some content is hidden

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

53 files changed

+809
-348
lines changed

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,43 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 2025-03-06
7+
8+
### Changes
9+
10+
---
11+
12+
Packages with breaking changes:
13+
14+
- There are no breaking changes in this release.
15+
16+
Packages with other changes:
17+
18+
- [`powersync_core` - `v1.2.1`](#powersync_core---v121)
19+
- [`powersync_flutter_libs` - `v0.4.7`](#powersync_flutter_libs---v047)
20+
- [`powersync_attachments_helper` - `v0.6.18+3`](#powersync_attachments_helper---v06183)
21+
- [`powersync_sqlcipher` - `v0.1.5+1`](#powersync_sqlcipher---v0151)
22+
- [`powersync` - `v1.12.1`](#powersync---v1121)
23+
24+
Packages with dependency updates only:
25+
26+
> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project.
27+
28+
- `powersync_attachments_helper` - `v0.6.18+3`
29+
- `powersync_sqlcipher` - `v0.1.5+1`
30+
- `powersync` - `v1.12.1`
31+
32+
---
33+
34+
#### `powersync_core` - `v1.2.1`
35+
36+
- Raise minimum version of core extension to 0.3.11.
37+
38+
#### `powersync_flutter_libs` - `v0.4.7`
39+
40+
- Update core extension to 0.3.12.
41+
42+
643
## 2025-03-03
744

845
### Changes

demos/benchmarks/ios/Podfile.lock

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,25 @@ PODS:
33
- path_provider_foundation (0.0.1):
44
- Flutter
55
- FlutterMacOS
6-
- powersync-sqlite-core (0.3.11)
6+
- powersync-sqlite-core (0.3.12)
77
- powersync_flutter_libs (0.0.1):
88
- Flutter
9-
- powersync-sqlite-core (~> 0.3.11)
10-
- "sqlite3 (3.46.1+1)":
11-
- "sqlite3/common (= 3.46.1+1)"
12-
- "sqlite3/common (3.46.1+1)"
13-
- "sqlite3/dbstatvtab (3.46.1+1)":
9+
- powersync-sqlite-core (~> 0.3.12)
10+
- sqlite3 (3.49.1):
11+
- sqlite3/common (= 3.49.1)
12+
- sqlite3/common (3.49.1)
13+
- sqlite3/dbstatvtab (3.49.1):
1414
- sqlite3/common
15-
- "sqlite3/fts5 (3.46.1+1)":
15+
- sqlite3/fts5 (3.49.1):
1616
- sqlite3/common
17-
- "sqlite3/perf-threadsafe (3.46.1+1)":
17+
- sqlite3/perf-threadsafe (3.49.1):
1818
- sqlite3/common
19-
- "sqlite3/rtree (3.46.1+1)":
19+
- sqlite3/rtree (3.49.1):
2020
- sqlite3/common
2121
- sqlite3_flutter_libs (0.0.1):
2222
- Flutter
23-
- "sqlite3 (~> 3.46.0+1)"
23+
- FlutterMacOS
24+
- sqlite3 (~> 3.49.1)
2425
- sqlite3/dbstatvtab
2526
- sqlite3/fts5
2627
- sqlite3/perf-threadsafe
@@ -30,7 +31,7 @@ DEPENDENCIES:
3031
- Flutter (from `Flutter`)
3132
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
3233
- powersync_flutter_libs (from `.symlinks/plugins/powersync_flutter_libs/ios`)
33-
- sqlite3_flutter_libs (from `.symlinks/plugins/sqlite3_flutter_libs/ios`)
34+
- sqlite3_flutter_libs (from `.symlinks/plugins/sqlite3_flutter_libs/darwin`)
3435

3536
SPEC REPOS:
3637
trunk:
@@ -45,15 +46,15 @@ EXTERNAL SOURCES:
4546
powersync_flutter_libs:
4647
:path: ".symlinks/plugins/powersync_flutter_libs/ios"
4748
sqlite3_flutter_libs:
48-
:path: ".symlinks/plugins/sqlite3_flutter_libs/ios"
49+
:path: ".symlinks/plugins/sqlite3_flutter_libs/darwin"
4950

5051
SPEC CHECKSUMS:
5152
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
5253
path_provider_foundation: 080d55be775b7414fd5a5ef3ac137b97b097e564
53-
powersync-sqlite-core: 63f9e7adb74044ab7786e4f60e86994d13dcc7a9
54-
powersync_flutter_libs: 86c1c5214cbeba9d555798de5aece225ad1f5971
55-
sqlite3: 0bb0e6389d824e40296f531b858a2a0b71c0d2fb
56-
sqlite3_flutter_libs: 9379996d65aa23dcda7585a5b58766cebe0aa042
54+
powersync-sqlite-core: fcc32da5528fca9d50b185fcd777705c034e255b
55+
powersync_flutter_libs: 23a227cf1aca676e605548a4857da261b06d9421
56+
sqlite3: fc1400008a9b3525f5914ed715a5d1af0b8f4983
57+
sqlite3_flutter_libs: f8fc13346870e73fe35ebf6dbb997fbcd156b241
5758

5859
PODFILE CHECKSUM: 819463e6a0290f5a72f145ba7cde16e8b6ef0796
5960

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
PODS:
2+
- FlutterMacOS (1.0.0)
3+
- path_provider_foundation (0.0.1):
4+
- Flutter
5+
- FlutterMacOS
6+
- powersync-sqlite-core (0.3.12)
7+
- powersync_flutter_libs (0.0.1):
8+
- FlutterMacOS
9+
- powersync-sqlite-core (~> 0.3.12)
10+
- sqlite3 (3.49.1):
11+
- sqlite3/common (= 3.49.1)
12+
- sqlite3/common (3.49.1)
13+
- sqlite3/dbstatvtab (3.49.1):
14+
- sqlite3/common
15+
- sqlite3/fts5 (3.49.1):
16+
- sqlite3/common
17+
- sqlite3/perf-threadsafe (3.49.1):
18+
- sqlite3/common
19+
- sqlite3/rtree (3.49.1):
20+
- sqlite3/common
21+
- sqlite3_flutter_libs (0.0.1):
22+
- Flutter
23+
- FlutterMacOS
24+
- sqlite3 (~> 3.49.1)
25+
- sqlite3/dbstatvtab
26+
- sqlite3/fts5
27+
- sqlite3/perf-threadsafe
28+
- sqlite3/rtree
29+
30+
DEPENDENCIES:
31+
- FlutterMacOS (from `Flutter/ephemeral`)
32+
- path_provider_foundation (from `Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin`)
33+
- powersync_flutter_libs (from `Flutter/ephemeral/.symlinks/plugins/powersync_flutter_libs/macos`)
34+
- sqlite3_flutter_libs (from `Flutter/ephemeral/.symlinks/plugins/sqlite3_flutter_libs/darwin`)
35+
36+
SPEC REPOS:
37+
trunk:
38+
- powersync-sqlite-core
39+
- sqlite3
40+
41+
EXTERNAL SOURCES:
42+
FlutterMacOS:
43+
:path: Flutter/ephemeral
44+
path_provider_foundation:
45+
:path: Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin
46+
powersync_flutter_libs:
47+
:path: Flutter/ephemeral/.symlinks/plugins/powersync_flutter_libs/macos
48+
sqlite3_flutter_libs:
49+
:path: Flutter/ephemeral/.symlinks/plugins/sqlite3_flutter_libs/darwin
50+
51+
SPEC CHECKSUMS:
52+
FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24
53+
path_provider_foundation: 080d55be775b7414fd5a5ef3ac137b97b097e564
54+
powersync-sqlite-core: fcc32da5528fca9d50b185fcd777705c034e255b
55+
powersync_flutter_libs: 011c1704766d154faf2373bb9c973d26910d322b
56+
sqlite3: fc1400008a9b3525f5914ed715a5d1af0b8f4983
57+
sqlite3_flutter_libs: f8fc13346870e73fe35ebf6dbb997fbcd156b241
58+
59+
PODFILE CHECKSUM: 236401fc2c932af29a9fcf0e97baeeb2d750d367
60+
61+
COCOAPODS: 1.16.2

demos/benchmarks/macos/Runner.xcodeproj/project.pbxproj

Lines changed: 97 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };
2828
33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; };
2929
33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; };
30+
9093F47C0B6EAD77C2B783DA /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FCB7D15769DA95071391D1B /* Pods_Runner.framework */; };
31+
A10E6A04FDE0D447F4342C4E /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 65910ED980588B63D8A150F4 /* Pods_RunnerTests.framework */; };
3032
/* End PBXBuildFile section */
3133

3234
/* Begin PBXContainerItemProxy section */
@@ -60,11 +62,12 @@
6062
/* End PBXCopyFilesBuildPhase section */
6163

6264
/* Begin PBXFileReference section */
65+
1464422B31F3DF1298E426C6 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = "<group>"; };
6366
331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
6467
331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
6568
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = "<group>"; };
6669
335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = "<group>"; };
67-
33CC10ED2044A3C60003C045 /* benchmarks.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "benchmarks.app"; sourceTree = BUILT_PRODUCTS_DIR; };
70+
33CC10ED2044A3C60003C045 /* benchmarks.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = benchmarks.app; sourceTree = BUILT_PRODUCTS_DIR; };
6871
33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
6972
33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = "<group>"; };
7073
33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
@@ -76,22 +79,31 @@
7679
33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = "<group>"; };
7780
33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = "<group>"; };
7881
33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = "<group>"; };
82+
65910ED980588B63D8A150F4 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7983
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
84+
87BDA74CA76A55849C7F34EF /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = "<group>"; };
85+
8FCB7D15769DA95071391D1B /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
86+
95ED6FD4C60383CCCA983998 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
8087
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
88+
BC600AD1B46FC8B47BF4A584 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
89+
DED1D204ED98DCE172D8FD06 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = "<group>"; };
90+
F90CD46D97CB5DFA79A60335 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
8191
/* End PBXFileReference section */
8292

8393
/* Begin PBXFrameworksBuildPhase section */
8494
331C80D2294CF70F00263BE5 /* Frameworks */ = {
8595
isa = PBXFrameworksBuildPhase;
8696
buildActionMask = 2147483647;
8797
files = (
98+
A10E6A04FDE0D447F4342C4E /* Pods_RunnerTests.framework in Frameworks */,
8899
);
89100
runOnlyForDeploymentPostprocessing = 0;
90101
};
91102
33CC10EA2044A3C60003C045 /* Frameworks */ = {
92103
isa = PBXFrameworksBuildPhase;
93104
buildActionMask = 2147483647;
94105
files = (
106+
9093F47C0B6EAD77C2B783DA /* Pods_Runner.framework in Frameworks */,
95107
);
96108
runOnlyForDeploymentPostprocessing = 0;
97109
};
@@ -125,6 +137,7 @@
125137
331C80D6294CF71000263BE5 /* RunnerTests */,
126138
33CC10EE2044A3C60003C045 /* Products */,
127139
D73912EC22F37F3D000D13A0 /* Frameworks */,
140+
83FD9C0045A6BE42E567DFFF /* Pods */,
128141
);
129142
sourceTree = "<group>";
130143
};
@@ -172,9 +185,25 @@
172185
path = Runner;
173186
sourceTree = "<group>";
174187
};
188+
83FD9C0045A6BE42E567DFFF /* Pods */ = {
189+
isa = PBXGroup;
190+
children = (
191+
BC600AD1B46FC8B47BF4A584 /* Pods-Runner.debug.xcconfig */,
192+
95ED6FD4C60383CCCA983998 /* Pods-Runner.release.xcconfig */,
193+
F90CD46D97CB5DFA79A60335 /* Pods-Runner.profile.xcconfig */,
194+
1464422B31F3DF1298E426C6 /* Pods-RunnerTests.debug.xcconfig */,
195+
87BDA74CA76A55849C7F34EF /* Pods-RunnerTests.release.xcconfig */,
196+
DED1D204ED98DCE172D8FD06 /* Pods-RunnerTests.profile.xcconfig */,
197+
);
198+
name = Pods;
199+
path = Pods;
200+
sourceTree = "<group>";
201+
};
175202
D73912EC22F37F3D000D13A0 /* Frameworks */ = {
176203
isa = PBXGroup;
177204
children = (
205+
8FCB7D15769DA95071391D1B /* Pods_Runner.framework */,
206+
65910ED980588B63D8A150F4 /* Pods_RunnerTests.framework */,
178207
);
179208
name = Frameworks;
180209
sourceTree = "<group>";
@@ -186,6 +215,7 @@
186215
isa = PBXNativeTarget;
187216
buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
188217
buildPhases = (
218+
C4E73F96DDA098F470016E9F /* [CP] Check Pods Manifest.lock */,
189219
331C80D1294CF70F00263BE5 /* Sources */,
190220
331C80D2294CF70F00263BE5 /* Frameworks */,
191221
331C80D3294CF70F00263BE5 /* Resources */,
@@ -204,11 +234,13 @@
204234
isa = PBXNativeTarget;
205235
buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */;
206236
buildPhases = (
237+
294F0AD87F4F87D46586033D /* [CP] Check Pods Manifest.lock */,
207238
33CC10E92044A3C60003C045 /* Sources */,
208239
33CC10EA2044A3C60003C045 /* Frameworks */,
209240
33CC10EB2044A3C60003C045 /* Resources */,
210241
33CC110E2044A8840003C045 /* Bundle Framework */,
211242
3399D490228B24CF009A79C7 /* ShellScript */,
243+
2552B7F32AADACDD56A1879C /* [CP] Embed Pods Frameworks */,
212244
);
213245
buildRules = (
214246
);
@@ -291,6 +323,45 @@
291323
/* End PBXResourcesBuildPhase section */
292324

293325
/* Begin PBXShellScriptBuildPhase section */
326+
2552B7F32AADACDD56A1879C /* [CP] Embed Pods Frameworks */ = {
327+
isa = PBXShellScriptBuildPhase;
328+
buildActionMask = 2147483647;
329+
files = (
330+
);
331+
inputFileListPaths = (
332+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
333+
);
334+
name = "[CP] Embed Pods Frameworks";
335+
outputFileListPaths = (
336+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
337+
);
338+
runOnlyForDeploymentPostprocessing = 0;
339+
shellPath = /bin/sh;
340+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
341+
showEnvVarsInLog = 0;
342+
};
343+
294F0AD87F4F87D46586033D /* [CP] Check Pods Manifest.lock */ = {
344+
isa = PBXShellScriptBuildPhase;
345+
buildActionMask = 2147483647;
346+
files = (
347+
);
348+
inputFileListPaths = (
349+
);
350+
inputPaths = (
351+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
352+
"${PODS_ROOT}/Manifest.lock",
353+
);
354+
name = "[CP] Check Pods Manifest.lock";
355+
outputFileListPaths = (
356+
);
357+
outputPaths = (
358+
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
359+
);
360+
runOnlyForDeploymentPostprocessing = 0;
361+
shellPath = /bin/sh;
362+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
363+
showEnvVarsInLog = 0;
364+
};
294365
3399D490228B24CF009A79C7 /* ShellScript */ = {
295366
isa = PBXShellScriptBuildPhase;
296367
alwaysOutOfDate = 1;
@@ -329,6 +400,28 @@
329400
shellPath = /bin/sh;
330401
shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire";
331402
};
403+
C4E73F96DDA098F470016E9F /* [CP] Check Pods Manifest.lock */ = {
404+
isa = PBXShellScriptBuildPhase;
405+
buildActionMask = 2147483647;
406+
files = (
407+
);
408+
inputFileListPaths = (
409+
);
410+
inputPaths = (
411+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
412+
"${PODS_ROOT}/Manifest.lock",
413+
);
414+
name = "[CP] Check Pods Manifest.lock";
415+
outputFileListPaths = (
416+
);
417+
outputPaths = (
418+
"$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
419+
);
420+
runOnlyForDeploymentPostprocessing = 0;
421+
shellPath = /bin/sh;
422+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
423+
showEnvVarsInLog = 0;
424+
};
332425
/* End PBXShellScriptBuildPhase section */
333426

334427
/* Begin PBXSourcesBuildPhase section */
@@ -380,6 +473,7 @@
380473
/* Begin XCBuildConfiguration section */
381474
331C80DB294CF71000263BE5 /* Debug */ = {
382475
isa = XCBuildConfiguration;
476+
baseConfigurationReference = 1464422B31F3DF1298E426C6 /* Pods-RunnerTests.debug.xcconfig */;
383477
buildSettings = {
384478
BUNDLE_LOADER = "$(TEST_HOST)";
385479
CURRENT_PROJECT_VERSION = 1;
@@ -394,6 +488,7 @@
394488
};
395489
331C80DC294CF71000263BE5 /* Release */ = {
396490
isa = XCBuildConfiguration;
491+
baseConfigurationReference = 87BDA74CA76A55849C7F34EF /* Pods-RunnerTests.release.xcconfig */;
397492
buildSettings = {
398493
BUNDLE_LOADER = "$(TEST_HOST)";
399494
CURRENT_PROJECT_VERSION = 1;
@@ -408,6 +503,7 @@
408503
};
409504
331C80DD294CF71000263BE5 /* Profile */ = {
410505
isa = XCBuildConfiguration;
506+
baseConfigurationReference = DED1D204ED98DCE172D8FD06 /* Pods-RunnerTests.profile.xcconfig */;
411507
buildSettings = {
412508
BUNDLE_LOADER = "$(TEST_HOST)";
413509
CURRENT_PROJECT_VERSION = 1;

demos/benchmarks/macos/Runner.xcworkspace/contents.xcworkspacedata

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demos/benchmarks/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
powersync: ^1.12.0
13+
powersync: ^1.12.1
1414
path_provider: ^2.1.1
1515
path: ^1.8.3
1616
logging: ^1.2.0

0 commit comments

Comments
 (0)