You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix possible conflict with default Reuse Identifiers (#154)
Closes#150.
- Fixed a (potential) bug where cells with the same name, but in
different modules, would provide the same (conflicting) default
`reuseIdentifier`. Default `reuseIdentifiers` now return the fully
qualified type name.
- Previous behavior: `"MyCellClassName"`
- New behavior: `"MyModuleName.MyCellClassName"`
- **Note:** This should be a transparent change and not impact any
existing code. If you were previously working around this issue by
providing a custom `reuseIdentifier`, you can now adopt the default
implementation instead.
---------
Co-authored-by: Copilot <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,15 @@ The changelog for `ReactiveCollectionsKit`. Also see [the releases on GitHub](ht
5
5
NEXT
6
6
-----
7
7
8
+
- TBA
9
+
10
+
0.1.9
11
+
-----
12
+
13
+
- Fixed a (potential) bug where cells with the same name, but in different modules, would provide the same (conflicting) default `reuseIdentifier`. Default `reuseIdentifiers` now return the fully qualified type name. ([@jessesquires](https://github.com/jessesquires), [#150](https://github.com/jessesquires/ReactiveCollectionsKit/issues/150), [#154](https://github.com/jessesquires/ReactiveCollectionsKit/pull/154))
14
+
- Previous behavior: `"MyCellClassName"`
15
+
- New behavior: `"MyModuleName.MyCellClassName"`
16
+
-**Note:** This should be a transparent change and not impact any existing code. If you were previously working around this issue by providing a custom `reuseIdentifier`, you can now adopt the default implementation instead.
8
17
- Improve debug descriptions (i.e., `CustomDebugStringConvertible`) for various types. ([@nuomi1](https://github.com/nuomi1), [#139](https://github.com/jessesquires/ReactiveCollectionsKit/pull/139))
9
18
- Implement (optional) debug logging for view model updates. You can now provide a logger for debugging purposes by setting `CollectionViewDriver.logger`. The library provides a default implementation via `RCKLogger.shared`. ([@nuomi1](https://github.com/nuomi1), [#141](https://github.com/jessesquires/ReactiveCollectionsKit/pull/141))
10
19
- Upgrade to Xcode 26. ([@jessesquires](https://github.com/jessesquires), [#153](https://github.com/jessesquires/ReactiveCollectionsKit/pull/153))
0 commit comments