Skip to content

Commit

Permalink
Auto update SPM with latest rust-component release 134.0.20241113050253
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
linabutler and github-actions[bot] committed Nov 14, 2024
1 parent a8321d3 commit d096b53
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
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

0 comments on commit d096b53

Please sign in to comment.