Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor [v134] Auto update SPM with latest rust-component 134.0.20241113050253 #23087

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion firefox-ios/Client.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -25641,7 +25641,7 @@
repositoryURL = "https://github.com/mozilla/rust-components-swift.git";
requirement = {
kind = exactVersion;
version = 134.0.20241109050310;
version = 134.0.20241113050253;
};
};
435C85EE2788F4D00072B526 /* XCRemoteSwiftPackageReference "glean-swift" */ = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/mozilla/rust-components-swift.git",
"state" : {
"revision" : "1fc07f63bef0cbdcbb223fe1b0e3bcda12861aeb",
"version" : "134.0.20241109050310"
"revision" : "f1439e4113262ae4291f6c12f0b7871b506e9f0e",
"version" : "134.0.20241113050253"
}
},
{
Expand Down
10 changes: 7 additions & 3 deletions firefox-ios/Storage/Rust/RustPlaces.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import struct MozillaAppServices.HistoryMetadataKey
import struct MozillaAppServices.HistoryMetadataObservation
import struct MozillaAppServices.HistoryMigrationResult
import struct MozillaAppServices.HistoryVisitInfosWithBound
import struct MozillaAppServices.NoteHistoryMetadataObservationOptions
import struct MozillaAppServices.PlacesTimestamp
import struct MozillaAppServices.SearchResult
import struct MozillaAppServices.TopFrecentSiteInfo
Expand Down Expand Up @@ -410,23 +411,26 @@ public class RustPlaces: BookmarksHandler, HistoryMetadataObserver {
if let title = observation.title {
let response: Void = try connection.noteHistoryMetadataObservationTitle(
key: key,
title: title
title: title,
NoteHistoryMetadataObservationOptions(ifPageMissing: .insertPage)
)
self.notificationCenter.post(name: .HistoryUpdated, object: nil)
return response
}
if let documentType = observation.documentType {
let response: Void = try connection.noteHistoryMetadataObservationDocumentType(
key: key,
documentType: documentType
documentType: documentType,
NoteHistoryMetadataObservationOptions(ifPageMissing: .insertPage)
)
self.notificationCenter.post(name: .HistoryUpdated, object: nil)
return response
}
if let viewTime = observation.viewTime {
let response: Void = try connection.noteHistoryMetadataObservationViewTime(
key: key,
viewTime: viewTime
viewTime: viewTime,
NoteHistoryMetadataObservationOptions(ifPageMissing: .insertPage)
)
self.notificationCenter.post(name: .HistoryUpdated, object: nil)
return response
Expand Down
2 changes: 1 addition & 1 deletion focus-ios/Blockzilla.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7168,7 +7168,7 @@
repositoryURL = "https://github.com/mozilla/rust-components-swift";
requirement = {
kind = exactVersion;
version = 134.0.20241109050310;
version = 134.0.20241113050253;
};
};
8A0E7F2C2BA0F0E0006BC6B6 /* XCRemoteSwiftPackageReference "Fuzi" */ = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
"repositoryURL": "https://github.com/mozilla/rust-components-swift",
"state": {
"branch": null,
"revision": "1fc07f63bef0cbdcbb223fe1b0e3bcda12861aeb",
"version": "134.0.20241109050310"
"revision": "f1439e4113262ae4291f6c12f0b7871b506e9f0e",
"version": "134.0.20241113050253"
}
},
{
Expand Down
Loading