Skip to content

Commit f467d4c

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (132.0.20240913050246)
1 parent 8a3ee4c commit f467d4c

File tree

5 files changed

+28
-7
lines changed

5 files changed

+28
-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 = "83c227f8f9cf2607db71e3a0348bdee3beadd6cd6c1ed3f2d6fb4c6a787f6519"
5-
let version = "132.0.20240911050347"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.132.20240911050347/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "3510645205fe6551866be037a17ee162182cda4ccae486796167f3d06caea878"
5+
let version = "132.0.20240913050246"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.132.20240913050246/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "80ad128ad34dcd92d50d51a76eb6a32966613676983220c743c54467e2fd8cba"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.132.20240911050347/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "65f252a8de3c00ee0574223b9c2cfb57f41c4de705bc70095f36a869aa7790a9"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.132.20240913050246/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: 9, day: 11, hour: 5, minute: 13, second: 39))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 9, day: 13, hour: 5, minute: 20, second: 21))
2727
}
2828

2929
enum NimbusEvents {

swift-source/all/Generated/tabs.swift

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -800,6 +800,8 @@ public func FfiConverterTypeTabsBridgedEngine_lower(_ value: TabsBridgedEngine)
800800
public protocol TabsStoreProtocol: AnyObject {
801801
func bridgedEngine() -> TabsBridgedEngine
802802

803+
func closeConnection()
804+
803805
func getAll() -> [ClientRemoteTabs]
804806

805807
func newRemoteCommandStore() -> RemoteCommandStore
@@ -863,6 +865,11 @@ open class TabsStore:
863865
})
864866
}
865867

868+
open func closeConnection() { try! rustCall {
869+
uniffi_tabs_fn_method_tabsstore_close_connection(self.uniffiClonePointer(), $0)
870+
}
871+
}
872+
866873
open func getAll() -> [ClientRemoteTabs] {
867874
return try! FfiConverterSequenceTypeClientRemoteTabs.lift(try! rustCall {
868875
uniffi_tabs_fn_method_tabsstore_get_all(self.uniffiClonePointer(), $0)
@@ -1532,6 +1539,9 @@ private var initializationResult: InitializationResult = {
15321539
if uniffi_tabs_checksum_method_tabsstore_bridged_engine() != 43478 {
15331540
return InitializationResult.apiChecksumMismatch
15341541
}
1542+
if uniffi_tabs_checksum_method_tabsstore_close_connection() != 6630 {
1543+
return InitializationResult.apiChecksumMismatch
1544+
}
15351545
if uniffi_tabs_checksum_method_tabsstore_get_all() != 1572 {
15361546
return InitializationResult.apiChecksumMismatch
15371547
}

swift-source/all/Generated/tabsFFI.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,11 @@ void*_Nonnull uniffi_tabs_fn_constructor_tabsstore_new(RustBuffer path, RustCall
381381
void*_Nonnull uniffi_tabs_fn_method_tabsstore_bridged_engine(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
382382
);
383383
#endif
384+
#ifndef UNIFFI_FFIDEF_UNIFFI_TABS_FN_METHOD_TABSSTORE_CLOSE_CONNECTION
385+
#define UNIFFI_FFIDEF_UNIFFI_TABS_FN_METHOD_TABSSTORE_CLOSE_CONNECTION
386+
void uniffi_tabs_fn_method_tabsstore_close_connection(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
387+
);
388+
#endif
384389
#ifndef UNIFFI_FFIDEF_UNIFFI_TABS_FN_METHOD_TABSSTORE_GET_ALL
385390
#define UNIFFI_FFIDEF_UNIFFI_TABS_FN_METHOD_TABSSTORE_GET_ALL
386391
RustBuffer uniffi_tabs_fn_method_tabsstore_get_all(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
@@ -793,6 +798,12 @@ uint16_t uniffi_tabs_checksum_method_tabsbridgedengine_wipe(void
793798
#define UNIFFI_FFIDEF_UNIFFI_TABS_CHECKSUM_METHOD_TABSSTORE_BRIDGED_ENGINE
794799
uint16_t uniffi_tabs_checksum_method_tabsstore_bridged_engine(void
795800

801+
);
802+
#endif
803+
#ifndef UNIFFI_FFIDEF_UNIFFI_TABS_CHECKSUM_METHOD_TABSSTORE_CLOSE_CONNECTION
804+
#define UNIFFI_FFIDEF_UNIFFI_TABS_CHECKSUM_METHOD_TABSSTORE_CLOSE_CONNECTION
805+
uint16_t uniffi_tabs_checksum_method_tabsstore_close_connection(void
806+
796807
);
797808
#endif
798809
#ifndef UNIFFI_FFIDEF_UNIFFI_TABS_CHECKSUM_METHOD_TABSSTORE_GET_ALL

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: 9, day: 11, hour: 5, minute: 13, second: 42))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 9, day: 13, hour: 5, minute: 20, second: 24))
2727
}
2828

2929
enum NimbusEvents {

0 commit comments

Comments
 (0)