Skip to content

Commit 7f69989

Browse files
authored
Swift Generated Code: Add @unchecked Sendable conformance to classes that conform to FeatureManifestInterface (#6963)
* Add `@unchecked Sendable` conformance to classes that conform to `FeatureManifestInterface`. * Update changelog.
1 parent 3717022 commit 7f69989

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
[Full Changelog](In progress)
44

5+
### Swift
6+
- Added `@unchecked Sendable` to classes that conform to `FeatureManifestInterface`. ([#6963](https://github.com/mozilla/application-services/pull/6963)
7+
58
# v144.0 (_2025-09-15_)
69

710
## ✨ What's New ✨

components/support/nimbus-fml/src/backends/swift/templates/FeatureManifestTemplate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/// An object for safely accessing feature configuration from Nimbus.
1414
///
1515
/// This is generated.
16-
public class {{ nimbus_object }} : FeatureManifestInterface {
16+
public class {{ nimbus_object }} : FeatureManifestInterface, @unchecked Sendable {
1717
public typealias Features = {{ features_object }}
1818

1919
///

0 commit comments

Comments
 (0)