Skip to content

Commit 6759214

Browse files
author
Firefox Sync Engineering
committed
Nightly auto-update (139.0.20250402050327)
1 parent b15397c commit 6759214

File tree

4 files changed

+69
-25
lines changed

4 files changed

+69
-25
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 = "29da40964b1e0f41612a724df97c89e2bc88a2bf1ab487126e500550dfa7ff7f"
5-
let version = "139.0.20250401050332"
6-
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.139.20250401050332/artifacts/public/build/MozillaRustComponents.xcframework.zip"
4+
let checksum = "1e6a359f75c4c4523c5935f0bcb705c13155df1d2fd533ad114cc94ccd5cfdbb"
5+
let version = "139.0.20250402050327"
6+
let url = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.139.20250402050327/artifacts/public/build/MozillaRustComponents.xcframework.zip"
77

88
// Focus xcframework
9-
let focusChecksum = "45e4878273c2d93ba51309ab6fe0ce0b34f3caee153318cb40dcd5703d1eac09"
10-
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.139.20250401050332/artifacts/public/build/FocusRustComponents.xcframework.zip"
9+
let focusChecksum = "26f34b60ab74bdbaacbfe49d10f1b0977fd096e3271145c773c79d8b25c8b873"
10+
let focusUrl = "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.v2.swift.139.20250402050327/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: 2025, month: 4, day: 1, hour: 5, minute: 30, second: 4))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2025, month: 4, day: 2, hour: 5, minute: 24, second: 45))
2727
}
2828

2929
enum NimbusEvents {

swift-source/all/Generated/logins.swift

Lines changed: 62 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1624,6 +1624,24 @@ public enum LoginsApiError {
16241624

16251625

16261626

1627+
/**
1628+
* NSS not initialized.
1629+
*/
1630+
case NssUninitialized
1631+
/**
1632+
* NSS error during authentication
1633+
*/
1634+
case NssAuthenticationError(reason: String
1635+
)
1636+
/**
1637+
* error during authentication (in PrimaryPasswordAuthenticator)
1638+
*/
1639+
case AuthenticationError(reason: String
1640+
)
1641+
/**
1642+
* authentication has been cancelled.
1643+
*/
1644+
case AuthenticationCanceled
16271645
/**
16281646
* The login data supplied is invalid. The reason will indicate what's wrong with it.
16291647
*/
@@ -1686,27 +1704,35 @@ public struct FfiConverterTypeLoginsApiError: FfiConverterRustBuffer {
16861704

16871705

16881706

1689-
case 1: return .InvalidRecord(
1707+
case 1: return .NssUninitialized
1708+
case 2: return .NssAuthenticationError(
16901709
reason: try FfiConverterString.read(from: &buf)
16911710
)
1692-
case 2: return .NoSuchRecord(
1711+
case 3: return .AuthenticationError(
16931712
reason: try FfiConverterString.read(from: &buf)
16941713
)
1695-
case 3: return .MissingKey
1696-
case 4: return .InvalidKey
1697-
case 5: return .EncryptionFailed(
1714+
case 4: return .AuthenticationCanceled
1715+
case 5: return .InvalidRecord(
16981716
reason: try FfiConverterString.read(from: &buf)
16991717
)
1700-
case 6: return .DecryptionFailed(
1718+
case 6: return .NoSuchRecord(
17011719
reason: try FfiConverterString.read(from: &buf)
17021720
)
1703-
case 7: return .Interrupted(
1721+
case 7: return .MissingKey
1722+
case 8: return .InvalidKey
1723+
case 9: return .EncryptionFailed(
17041724
reason: try FfiConverterString.read(from: &buf)
17051725
)
1706-
case 8: return .SyncAuthInvalid(
1726+
case 10: return .DecryptionFailed(
17071727
reason: try FfiConverterString.read(from: &buf)
17081728
)
1709-
case 9: return .UnexpectedLoginsApiError(
1729+
case 11: return .Interrupted(
1730+
reason: try FfiConverterString.read(from: &buf)
1731+
)
1732+
case 12: return .SyncAuthInvalid(
1733+
reason: try FfiConverterString.read(from: &buf)
1734+
)
1735+
case 13: return .UnexpectedLoginsApiError(
17101736
reason: try FfiConverterString.read(from: &buf)
17111737
)
17121738

@@ -1721,46 +1747,64 @@ public struct FfiConverterTypeLoginsApiError: FfiConverterRustBuffer {
17211747

17221748

17231749

1724-
case let .InvalidRecord(reason):
1750+
case .NssUninitialized:
17251751
writeInt(&buf, Int32(1))
1752+
1753+
1754+
case let .NssAuthenticationError(reason):
1755+
writeInt(&buf, Int32(2))
1756+
FfiConverterString.write(reason, into: &buf)
1757+
1758+
1759+
case let .AuthenticationError(reason):
1760+
writeInt(&buf, Int32(3))
1761+
FfiConverterString.write(reason, into: &buf)
1762+
1763+
1764+
case .AuthenticationCanceled:
1765+
writeInt(&buf, Int32(4))
1766+
1767+
1768+
case let .InvalidRecord(reason):
1769+
writeInt(&buf, Int32(5))
17261770
FfiConverterString.write(reason, into: &buf)
17271771

17281772

17291773
case let .NoSuchRecord(reason):
1730-
writeInt(&buf, Int32(2))
1774+
writeInt(&buf, Int32(6))
17311775
FfiConverterString.write(reason, into: &buf)
17321776

17331777

17341778
case .MissingKey:
1735-
writeInt(&buf, Int32(3))
1779+
writeInt(&buf, Int32(7))
17361780

17371781

17381782
case .InvalidKey:
1739-
writeInt(&buf, Int32(4))
1783+
writeInt(&buf, Int32(8))
17401784

17411785

17421786
case let .EncryptionFailed(reason):
1743-
writeInt(&buf, Int32(5))
1787+
writeInt(&buf, Int32(9))
17441788
FfiConverterString.write(reason, into: &buf)
17451789

17461790

17471791
case let .DecryptionFailed(reason):
1748-
writeInt(&buf, Int32(6))
1792+
writeInt(&buf, Int32(10))
17491793
FfiConverterString.write(reason, into: &buf)
17501794

17511795

17521796
case let .Interrupted(reason):
1753-
writeInt(&buf, Int32(7))
1797+
writeInt(&buf, Int32(11))
17541798
FfiConverterString.write(reason, into: &buf)
17551799

17561800

17571801
case let .SyncAuthInvalid(reason):
1758-
writeInt(&buf, Int32(8))
1802+
writeInt(&buf, Int32(12))
17591803
FfiConverterString.write(reason, into: &buf)
17601804

17611805

17621806
case let .UnexpectedLoginsApiError(reason):
1763-
writeInt(&buf, Int32(9))
1807+
writeInt(&buf, Int32(13))
17641808
FfiConverterString.write(reason, into: &buf)
17651809

17661810
}

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: 2025, month: 4, day: 1, hour: 5, minute: 30, second: 6))
26+
public static let info = BuildInfo(buildDate: DateComponents(calendar: Calendar.current, timeZone: TimeZone(abbreviation: "UTC"), year: 2025, month: 4, day: 2, hour: 5, minute: 24, second: 48))
2727
}
2828

2929
enum NimbusEvents {

0 commit comments

Comments
 (0)