Skip to content

Commit 2096df3

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (121.0.20231107050313)
1 parent 2232bf1 commit 2096df3

File tree

6 files changed

+7
-46
lines changed

6 files changed

+7
-46
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 = "f8dfb5b75b501ab59a41102c80e802874cceb23025a7e8571664a971de961368"
5-
let version = "121.0.20231104050329"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.121.20231104050329/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "5dc9a45d2fec380165103e028334a031e4493d27af63492f363421927238302f"
5+
let version = "121.0.20231107050313"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.121.20231107050313/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "c2d4ffad5d759b48a1558fe77c89430faf6246dd586d81c8f53d4b268cf8f871"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.121.20231104050329/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "90564cf14efcaadc02036017a4a23df5137b66d2270cf7f217253b01e9072132"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.121.20231107050313/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
@@ -25,7 +25,7 @@ extension GleanMetrics {
2525
// Intentionally left private, no external user can instantiate a new global object.
2626
}
2727

28-
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2023, month: 11, day: 4, hour: 5, minute: 18, second: 18))
28+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2023, month: 11, day: 7, hour: 5, minute: 31, second: 6))
2929
}
3030

3131
enum NimbusEvents {

swift-source/all/Generated/places.swift

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -558,9 +558,7 @@ public protocol PlacesConnectionProtocol {
558558
func deleteVisitsBetween(start: PlacesTimestamp, end: PlacesTimestamp) throws
559559
func deleteVisit(url: String, timestamp: PlacesTimestamp) throws
560560
func getTopFrecentSiteInfos(numItems: Int32, thresholdOption: FrecencyThresholdOption) throws -> [TopFrecentSiteInfo]
561-
func wipeLocalHistory() throws
562561
func deleteEverythingHistory() throws
563-
func pruneDestructively() throws
564562
func runMaintenancePrune(dbSizeLimit: UInt32) throws -> RunMaintenanceMetrics
565563
func runMaintenanceVacuum() throws
566564
func runMaintenanceOptimize() throws
@@ -811,27 +809,13 @@ public class PlacesConnection: PlacesConnectionProtocol {
811809
)
812810
}
813811

814-
public func wipeLocalHistory() throws {
815-
try
816-
rustCallWithError(FfiConverterTypePlacesApiError.lift) {
817-
uniffi_places_fn_method_placesconnection_wipe_local_history(self.pointer, $0)
818-
}
819-
}
820-
821812
public func deleteEverythingHistory() throws {
822813
try
823814
rustCallWithError(FfiConverterTypePlacesApiError.lift) {
824815
uniffi_places_fn_method_placesconnection_delete_everything_history(self.pointer, $0)
825816
}
826817
}
827818

828-
public func pruneDestructively() throws {
829-
try
830-
rustCallWithError(FfiConverterTypePlacesApiError.lift) {
831-
uniffi_places_fn_method_placesconnection_prune_destructively(self.pointer, $0)
832-
}
833-
}
834-
835819
public func runMaintenancePrune(dbSizeLimit: UInt32) throws -> RunMaintenanceMetrics {
836820
return try FfiConverterTypeRunMaintenanceMetrics.lift(
837821
rustCallWithError(FfiConverterTypePlacesApiError.lift) {
@@ -3733,15 +3717,9 @@ private var initializationResult: InitializationResult {
37333717
if uniffi_places_checksum_method_placesconnection_get_top_frecent_site_infos() != 9199 {
37343718
return InitializationResult.apiChecksumMismatch
37353719
}
3736-
if uniffi_places_checksum_method_placesconnection_wipe_local_history() != 37987 {
3737-
return InitializationResult.apiChecksumMismatch
3738-
}
37393720
if uniffi_places_checksum_method_placesconnection_delete_everything_history() != 64039 {
37403721
return InitializationResult.apiChecksumMismatch
37413722
}
3742-
if uniffi_places_checksum_method_placesconnection_prune_destructively() != 43617 {
3743-
return InitializationResult.apiChecksumMismatch
3744-
}
37453723
if uniffi_places_checksum_method_placesconnection_run_maintenance_prune() != 19326 {
37463724
return InitializationResult.apiChecksumMismatch
37473725
}

swift-source/all/Generated/placesFFI.h

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,8 @@ void uniffi_places_fn_method_placesconnection_delete_visit(void*_Nonnull ptr, Ru
136136
);
137137
RustBuffer uniffi_places_fn_method_placesconnection_get_top_frecent_site_infos(void*_Nonnull ptr, int32_t num_items, RustBuffer threshold_option, RustCallStatus *_Nonnull out_status
138138
);
139-
void uniffi_places_fn_method_placesconnection_wipe_local_history(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
140-
);
141139
void uniffi_places_fn_method_placesconnection_delete_everything_history(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
142140
);
143-
void uniffi_places_fn_method_placesconnection_prune_destructively(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
144-
);
145141
RustBuffer uniffi_places_fn_method_placesconnection_run_maintenance_prune(void*_Nonnull ptr, uint32_t db_size_limit, RustCallStatus *_Nonnull out_status
146142
);
147143
void uniffi_places_fn_method_placesconnection_run_maintenance_vacuum(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
@@ -276,15 +272,9 @@ uint16_t uniffi_places_checksum_method_placesconnection_delete_visit(void
276272
);
277273
uint16_t uniffi_places_checksum_method_placesconnection_get_top_frecent_site_infos(void
278274

279-
);
280-
uint16_t uniffi_places_checksum_method_placesconnection_wipe_local_history(void
281-
282275
);
283276
uint16_t uniffi_places_checksum_method_placesconnection_delete_everything_history(void
284277

285-
);
286-
uint16_t uniffi_places_checksum_method_placesconnection_prune_destructively(void
287-
288278
);
289279
uint16_t uniffi_places_checksum_method_placesconnection_run_maintenance_prune(void
290280

swift-source/all/Places/Places.swift

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -785,13 +785,6 @@ public class PlacesWriteConnection: PlacesReadConnection {
785785
}
786786
}
787787

788-
open func pruneDestructively() throws {
789-
try queue.sync {
790-
try self.checkApi()
791-
try self.conn.pruneDestructively()
792-
}
793-
}
794-
795788
open func acceptResult(searchString: String, url: String) throws {
796789
return try queue.sync {
797790
try self.checkApi()

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

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

28-
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2023, month: 11, day: 4, hour: 5, minute: 18, second: 21))
28+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2023, month: 11, day: 7, hour: 5, minute: 31, second: 9))
2929
}
3030

3131
enum NimbusEvents {

0 commit comments

Comments
 (0)