Skip to content

Commit 0819405

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (130.0.20240713050324)
1 parent facd91b commit 0819405

File tree

5 files changed

+34
-43
lines changed

5 files changed

+34
-43
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 = "c36fa9278c98e8c1cd6b408081c0b385950bae966e26d41eba1a845c6735db20"
5-
let version = "130.0.20240710050321"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.130.20240710050321/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "de53e236c3cc4ca4bb25814d0cbd9c9abbb16d72528914460e4a32e36c15c1df"
5+
let version = "130.0.20240713050324"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.130.20240713050324/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "cea298c41632844aed72316ab3e078349158f7736010b676dc3dce7145315cfe"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.130.20240710050321/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "e2efd572da282d5714d1cd994b8e294fbe8fc7ae55b77790959faeeb7e93829a"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.130.20240713050324/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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// -*- mode: Swift -*-
22

3-
// AUTOGENERATED BY glean_parser v14.1.2. DO NOT EDIT. DO NOT COMMIT.
3+
// AUTOGENERATED BY glean_parser v14.2.0. DO NOT EDIT. DO NOT COMMIT.
44

55
#if canImport(Foundation)
66
import Foundation
@@ -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: 7, day: 10, hour: 5, minute: 13, second: 59))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 7, day: 13, hour: 5, minute: 12, second: 19))
2727
}
2828

2929
enum NimbusEvents {

swift-source/all/Generated/suggest.swift

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,6 +1221,8 @@ public enum Suggestion {
12211221
)
12221222
case weather(score: Double
12231223
)
1224+
case fakespot(fakespotGrade: String, productId: String, rating: Double, title: String, totalReviews: Int64, url: String, icon: [UInt8]?, iconMimetype: String?, score: Double
1225+
)
12241226
}
12251227

12261228

@@ -1252,6 +1254,9 @@ public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
12521254
case 7: return .weather(score: try FfiConverterDouble.read(from: &buf)
12531255
)
12541256

1257+
case 8: return .fakespot(fakespotGrade: try FfiConverterString.read(from: &buf), productId: try FfiConverterString.read(from: &buf), rating: try FfiConverterDouble.read(from: &buf), title: try FfiConverterString.read(from: &buf), totalReviews: try FfiConverterInt64.read(from: &buf), url: try FfiConverterString.read(from: &buf), icon: try FfiConverterOptionSequenceUInt8.read(from: &buf), iconMimetype: try FfiConverterOptionString.read(from: &buf), score: try FfiConverterDouble.read(from: &buf)
1258+
)
1259+
12551260
default: throw UniffiInternalError.unexpectedEnumCase
12561261
}
12571262
}
@@ -1330,6 +1335,19 @@ public struct FfiConverterTypeSuggestion: FfiConverterRustBuffer {
13301335
writeInt(&buf, Int32(7))
13311336
FfiConverterDouble.write(score, into: &buf)
13321337

1338+
1339+
case let .fakespot(fakespotGrade,productId,rating,title,totalReviews,url,icon,iconMimetype,score):
1340+
writeInt(&buf, Int32(8))
1341+
FfiConverterString.write(fakespotGrade, into: &buf)
1342+
FfiConverterString.write(productId, into: &buf)
1343+
FfiConverterDouble.write(rating, into: &buf)
1344+
FfiConverterString.write(title, into: &buf)
1345+
FfiConverterInt64.write(totalReviews, into: &buf)
1346+
FfiConverterString.write(url, into: &buf)
1347+
FfiConverterOptionSequenceUInt8.write(icon, into: &buf)
1348+
FfiConverterOptionString.write(iconMimetype, into: &buf)
1349+
FfiConverterDouble.write(score, into: &buf)
1350+
13331351
}
13341352
}
13351353
}
@@ -1362,6 +1380,7 @@ public enum SuggestionProvider {
13621380
case mdn
13631381
case weather
13641382
case ampMobile
1383+
case fakespot
13651384
}
13661385

13671386

@@ -1388,6 +1407,8 @@ public struct FfiConverterTypeSuggestionProvider: FfiConverterRustBuffer {
13881407

13891408
case 8: return .ampMobile
13901409

1410+
case 9: return .fakespot
1411+
13911412
default: throw UniffiInternalError.unexpectedEnumCase
13921413
}
13931414
}
@@ -1427,6 +1448,10 @@ public struct FfiConverterTypeSuggestionProvider: FfiConverterRustBuffer {
14271448
case .ampMobile:
14281449
writeInt(&buf, Int32(8))
14291450

1451+
1452+
case .fakespot:
1453+
writeInt(&buf, Int32(9))
1454+
14301455
}
14311456
}
14321457
}

swift-source/all/Tabs/Tabs.swift

Lines changed: 0 additions & 34 deletions
This file was deleted.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// -*- mode: Swift -*-
22

3-
// AUTOGENERATED BY glean_parser v14.1.2. DO NOT EDIT. DO NOT COMMIT.
3+
// AUTOGENERATED BY glean_parser v14.2.0. DO NOT EDIT. DO NOT COMMIT.
44

55
#if canImport(Foundation)
66
import Foundation
@@ -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: 7, day: 10, hour: 5, minute: 14, second: 1))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2024, month: 7, day: 13, hour: 5, minute: 12, second: 22))
2727
}
2828

2929
enum NimbusEvents {

0 commit comments

Comments
 (0)