Skip to content

Commit 285e8a2

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (129.0.20240703050246)
1 parent 1b70f8b commit 285e8a2

File tree

5 files changed

+32
-7
lines changed

5 files changed

+32
-7
lines changed

Package.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// swift-tools-version:5.4
22
import PackageDescription
33

4-
let checksum = "556d054590809fd8ec64753297a63835c3258fd000e3acfa0a2aea7092dddd18"
5-
let version = "129.0.20240629050339"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.129.20240629050339/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "13d12097f1aa74c25b9c1bb3ba96c2ee2b1c26374b5eae6e9923e9244ece4a10"
5+
let version = "129.0.20240703050246"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.129.20240703050246/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "32a6d68bc8335578754c67e38f8133f48d7661b9d339b2f42b9d76085070d384"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.129.20240629050339/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "987a8108402b5a711142e9a76280a2da1217bcbfbc5b215ceb47d43c12bfbfd4"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.129.20240703050246/artifacts/public/build/FocusRustComponents.xcframework.zip"
1111
let package = Package(
1212
name: "MozillaRustComponentsSwift",
1313
platforms: [.iOS(.v14)],

swift-source/all/Generated/Metrics/Metrics.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ extension GleanMetrics {
2323
// Intentionally left private, no external user can instantiate a new global object.
2424
}
2525

26-
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 6, day: 29, hour: 5, minute: 14, second: 22))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 7, day: 3, hour: 5, minute: 17, second: 9))
2727
}
2828

2929
enum NimbusEvents {

swift-source/all/Generated/suggest.swift

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -688,6 +688,8 @@ public protocol SuggestStoreBuilderProtocol : AnyObject {
688688

689689
func dataPath(path: String) -> SuggestStoreBuilder
690690

691+
func loadExtension(libraryName: String, entrypoint: String?) -> SuggestStoreBuilder
692+
691693
func remoteSettingsBucketName(bucketName: String) -> SuggestStoreBuilder
692694

693695
func remoteSettingsServer(server: RemoteSettingsServer) -> SuggestStoreBuilder
@@ -764,6 +766,15 @@ open func dataPath(path: String) -> SuggestStoreBuilder {
764766
})
765767
}
766768

769+
open func loadExtension(libraryName: String, entrypoint: String?) -> SuggestStoreBuilder {
770+
return try! FfiConverterTypeSuggestStoreBuilder.lift(try! rustCall() {
771+
uniffi_suggest_fn_method_suggeststorebuilder_load_extension(self.uniffiClonePointer(),
772+
FfiConverterString.lower(libraryName),
773+
FfiConverterOptionString.lower(entrypoint),$0
774+
)
775+
})
776+
}
777+
767778
open func remoteSettingsBucketName(bucketName: String) -> SuggestStoreBuilder {
768779
return try! FfiConverterTypeSuggestStoreBuilder.lift(try! rustCall() {
769780
uniffi_suggest_fn_method_suggeststorebuilder_remote_settings_bucket_name(self.uniffiClonePointer(),
@@ -1732,6 +1743,9 @@ private var initializationResult: InitializationResult {
17321743
if (uniffi_suggest_checksum_method_suggeststorebuilder_data_path() != 50155) {
17331744
return InitializationResult.apiChecksumMismatch
17341745
}
1746+
if (uniffi_suggest_checksum_method_suggeststorebuilder_load_extension() != 3315) {
1747+
return InitializationResult.apiChecksumMismatch
1748+
}
17351749
if (uniffi_suggest_checksum_method_suggeststorebuilder_remote_settings_bucket_name() != 18802) {
17361750
return InitializationResult.apiChecksumMismatch
17371751
}

swift-source/all/Generated/suggestFFI.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,11 @@ void*_Nonnull uniffi_suggest_fn_method_suggeststorebuilder_cache_path(void*_Nonn
337337
void*_Nonnull uniffi_suggest_fn_method_suggeststorebuilder_data_path(void*_Nonnull ptr, RustBuffer path, RustCallStatus *_Nonnull out_status
338338
);
339339
#endif
340+
#ifndef UNIFFI_FFIDEF_UNIFFI_SUGGEST_FN_METHOD_SUGGESTSTOREBUILDER_LOAD_EXTENSION
341+
#define UNIFFI_FFIDEF_UNIFFI_SUGGEST_FN_METHOD_SUGGESTSTOREBUILDER_LOAD_EXTENSION
342+
void*_Nonnull uniffi_suggest_fn_method_suggeststorebuilder_load_extension(void*_Nonnull ptr, RustBuffer library_name, RustBuffer entrypoint, RustCallStatus *_Nonnull out_status
343+
);
344+
#endif
340345
#ifndef UNIFFI_FFIDEF_UNIFFI_SUGGEST_FN_METHOD_SUGGESTSTOREBUILDER_REMOTE_SETTINGS_BUCKET_NAME
341346
#define UNIFFI_FFIDEF_UNIFFI_SUGGEST_FN_METHOD_SUGGESTSTOREBUILDER_REMOTE_SETTINGS_BUCKET_NAME
342347
void*_Nonnull uniffi_suggest_fn_method_suggeststorebuilder_remote_settings_bucket_name(void*_Nonnull ptr, RustBuffer bucket_name, RustCallStatus *_Nonnull out_status
@@ -702,6 +707,12 @@ uint16_t uniffi_suggest_checksum_method_suggeststorebuilder_cache_path(void
702707
#define UNIFFI_FFIDEF_UNIFFI_SUGGEST_CHECKSUM_METHOD_SUGGESTSTOREBUILDER_DATA_PATH
703708
uint16_t uniffi_suggest_checksum_method_suggeststorebuilder_data_path(void
704709

710+
);
711+
#endif
712+
#ifndef UNIFFI_FFIDEF_UNIFFI_SUGGEST_CHECKSUM_METHOD_SUGGESTSTOREBUILDER_LOAD_EXTENSION
713+
#define UNIFFI_FFIDEF_UNIFFI_SUGGEST_CHECKSUM_METHOD_SUGGESTSTOREBUILDER_LOAD_EXTENSION
714+
uint16_t uniffi_suggest_checksum_method_suggeststorebuilder_load_extension(void
715+
705716
);
706717
#endif
707718
#ifndef UNIFFI_FFIDEF_UNIFFI_SUGGEST_CHECKSUM_METHOD_SUGGESTSTOREBUILDER_REMOTE_SETTINGS_BUCKET_NAME

swift-source/focus/Generated/Metrics/Metrics.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ extension GleanMetrics {
2323
// Intentionally left private, no external user can instantiate a new global object.
2424
}
2525

26-
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 6, day: 29, hour: 5, minute: 14, second: 24))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 7, day: 3, hour: 5, minute: 17, second: 12))
2727
}
2828

2929
enum NimbusEvents {

0 commit comments

Comments
 (0)