Releases: apple/swift-collections
Swift Collections 1.1.4
This patch release consists of changes to the (unstable) CMake configuration. It includes no code level modifications.
This is expected to be the last planned release in the 1.1 release series. The next tagged release will be 1.2.0, bumping the required Swift toolchain to 5.9.
What's Changed
- Add more file in Sources/BitCollections/CMakeLists.txt by @lamtrinhdev in #419
- [Build] Use
SWIFT_SYSTEM_NAME
rather than just lowercasing. by @al45tair in #421 - [CMake] Handle riscv64 by @futurejones in #422
New Contributors
- @lamtrinhdev made their first contribution in #419
- @al45tair made their first contribution in #421
- @futurejones made their first contribution in #422
Full Changelog: 1.1.3...1.1.4
Swift Collections 1.1.3
This patch release ships bug fixes for issues discovered since 1.1.2.
What's Changed
- [BigString] Fix accidentally quadratic
BigString.init
by @lorentey in #405 - add 'final' keyword to class by @quokkaKyu in #403
- [CMake] Add support for WebAssembly target architectures by @kateinoigakukun in #408
- [concurrency] conform Deque.Iterator to unchecked-Sendable by @glessard in #414
New Contributors
- @quokkaKyu made their first contribution in #403
- @kateinoigakukun made their first contribution in #408
Full Changelog: 1.1.2...1.1.3
Swift Collections 1.1.2
This patch release updates the (unstable) CMake build configuration to support the swift-foundation project.
There were no changes outside of the CMake configuration.
What's Changed
- Install the Foundation toolchain module during the static swift build by @jmschonfeld in #391
- [CMake] Reduce path lengths in single-module build by @jmschonfeld in #392
- Reduce the size of the _FoundationCollections toolchain module by @jmschonfeld in #395
Full Changelog: 1.1.1...1.1.2
Swift Collections 1.1.1
This patch release resolves issues uncovered since version 1.1.0 was published.
What's Changed
- This version fixes a bogus assertion in
Deque
that can cause incorrect runtime traps in debug builds. (#381) - The unstable module
_CollectionsUtilities
was renamed toInternalCollectionsUtilities
to work around an issue in shipping versions of Xcode. This renaming is not intended to make this module public -- it remains an unstable implementation detail. (#364)
New Contributors
- @iCharlesHu made their first contribution in #373
- @jmschonfeld made their first contribution in #385
Many thanks to our contributors for their work!
List of Pull Requests
Full Changelog: 1.1.0...1.1.1
- Update README by @lorentey in #360
- Add post-merge CI support for release/1.1 branch by @shahmishal in #368
- Rename RopeModule to _RopeModule in CMakeLists.txt to match Package.swift by @iCharlesHu in #373
- Fix the incorrect file name in OrderedCollections cmake file by @iCharlesHu in #377
- [Deque]: Fix bogus assert in Deque._Storage._ensureUnique by @lorentey in #381
- [test] TreeDictionary.Keys: Remove stray print thatβs flooding test output by @lorentey in #370
- Rename _CollectionsUtilities to InternalCollectionsUtilities by @lorentey in #382
- [Rope] Fix copy-on-write violation in Rope.join by @lorentey in #384
- Add Single Module Build Mode to CMake for Foundation by @jmschonfeld in #385
Swift Collections 1.1.0
This feature release adds a number of new data structure implementations, along with minor changes to existing constructs.
New Data Structures
Heap
implements a min-max heap, backed by a native array. (Contributed by @AquaGeek)BitSet
andBitArray
are two alternate representations of a bitmap type, backed by dynamically allocated storage. (Contributed by @MahanazAtiqullah)TreeSet
andTreeDictionary
are hashed collections implementing Compressed Hash-Array Mapped Prefix Trees (CHAMP). They provide similar API asSet
/Dictionary
in the Standard Library, but as persistent data structures, supporting incremental mutations of shared instances and efficient structural diffing. (Contributed by @msteindorfer)
Other Changes
- This version of the package can only be built using Swift 5.7.2 or later.
- New methods: the
OrderedSet.isEqualSet
family of functions provide a way to test that two containers contain the same members, ignoring the order of elements. (#183, #234) - New method:
OrderedSet.filter
implements a version of the standard filter operation that returns anOrderedSet
instead of anArray
. (#159) debugDescription
implementations have been updated to follow Swift best practice. (These are called by container types likeArray
to print their elements, so they work best when they're succinct variants ofdescription
that are suitable for embedding in structured output: specifically, they must not produce unpaired delimiter characters ([
/]
,(
/)
,{
/}
,<
/>
etc), raw top level commas, semicolons, colons, unquoted strings etc.debugDescription
should not needlessly print type names etc.)
New Contributors
- @AquaGeek made their first contribution in #61
- @ejmarchant made their first contribution in #82
- @just-gull made their first contribution in #115
- @jPaolantonio made their first contribution in #121
- @MahanazAtiqullah made their first contribution in #83
- @hectormatos2011 made their first contribution in #155
- @ktoso made their first contribution in #159
- @CTMacUser made their first contribution in #116
- @hassila made their first contribution in #297
Many thanks to our contributors for their great work (and patience)!
List of Pull Requests
Full Changelog: 1.0.6...1.1.0
- Add a min-max heap implementation that can be used to back a priority queue by @AquaGeek in #61
- [benchmark] Review and extend Heap benchmarks by @lorentey in #76
- Add reference benchmarks for bit vector implementations by @lorentey in #79
- Fix Markdown link in README by @AquaGeek in #77
- Fix documentation for types conforming to ExpressibleByArrayLiteral o⦠by @ejmarchant in #82
- [Heap] Performance tweaks by @lorentey in #78
- Fix typos: missing subscript parameters by @ejmarchant in #81
- [Heap] Update implementation details section in docs by @lorentey in #84
- Update CMakeLists.txt by @compnerd in #85
- Stop depending on swift-collections-benchmark by @lorentey in #86
- [OrderedDictionary] modifyValue β updateValue by @lorentey in #91
- Add Benchmarks package to workspace by @lorentey in #93
- [OrderedDictionary] Deprecate
subscript(offset:)
for now by @lorentey in #92 - Documentation: Remove in-place mutation comments by @ejmarchant in #96
- [main] Freeze some types for consistency with their inlinable initializers by @lorentey in #98
- Follow stdlib's leading underscore rule by @ejmarchant in #95
- [Heap] Disable heap tests in release builds by @lorentey in #100
- [NFC] Merge release/1.0 to main by @lorentey in #105
- Merge
release/1.0
intomain
by @lorentey in #108 - [README] Note that
Heap
hasn't been tagged yet & list other enhancements in progress by @lorentey in #109 - PriorityQueueModule: remove
import Foundation
by @compnerd in #118 - [Heap] Remove Heap's
ascending
anddescending
views by @lorentey in #119 - [Heap] Enable heap tests in optimized builds (#101) by @just-gull in #115
- Update CMakeLists.txt by @compnerd in #122
- Fix link to package internal documentation by @jPaolantonio in #121
- Merge release/1.0 to main by @lorentey in #130
- BitArray and BitSet data structures by @MahanazAtiqullah in #83
- Sorted collections by @vihanb in #65
- Merge
release/1.0
tomain
by @lorentey in #141 - Remove Swift PM Artifacts to avoid Generated Schemes in Xcode by @hectormatos2011 in #155
- Reinstate custom schemes under Utils/swift-collections.xcworkspace by @lorentey in #156
- +OrderedSet add filter #158 by @ktoso in #159
- [Xcode] Update schemes & file template by @lorentey in #161
- [OrderedCollection] Use standard temp allocation facility, if available by @lorentey in #160
- [OrderedSet] Work around weird name lookup issue in compiler by @lorentey in #162
- =OrderedSet.filter Attempt to optimize filter impl by @ktoso in #163
- Force-inline _modify accessors to work around a performance issue by @lorentey in #165
- Merge release/1.0 branch to main by @lorentey in #172
- Incubate persistent data structures by @msteindorfer in #31
- Persistent collections updates by @lorentey in #174
- Persistent collections updates by @lorentey in #175
- Persistent collections updates (part 3) by @lorentey in #176
- Persistent collections updates (part 4) by @lorentey in #177
- [OrderedDictionary] Tiny documentation fix by @lorentey in #178
- Persistent collections updates (part 5) by @lorentey in #179
- Integrate PriorityQueueModule, BitCollections, PersistentCollections, SortedCollections into release/1.1 by @lorentey in #181
- Persistent collections updates (part 6) by @lorentey in #180
- Persistent collections updates (part 7) by @lorentey in #182
- [BitSet] Fix decoding format on 32 bit architectures by @lorentey in #185
- Persistent collections updates (part 8) by @lorentey in #184
- Persistent collections updates (part 9) by @lorentey in #188
- Add Sendable conformances to all public types by @lorentey in #191
- [test] Check baseline API expectations for set-like types by @lorentey in #192
- Fleshing out
PersistentSet
by @lorentey in #193 - Rename
PriorityQueueModule
toHeapModule
by @lorentey in #194 - [BitSet] Fix invariant violation in member subscript by @lorentey in #195
- [1.1.0] Bump minimum required Swift toolchain to 5.5 by @lorentey in #196
- Restore support for building with Swift 5.5 by @lorentey in #198
- Merge release/1.0 to release/1.1 by @lorentey in #199
- Update CMake configuration in preparation for 1.1 by @lorentey in #200
- Update CMakeLists.txt ...
Swift Collections 1.0.6
This bugfix release adds Sendable
conformances to all public types (fixing compatibility with Swift's strict concurrency checking), and speeds up equality checks (==
) of identical collection values.
What's Changed
- Fix typos: OrderedSet Documentation by @kati-kms in #322
- [1.0] build: support building in Debug mode on Windows by @compnerd in #337
- build: tweak search path for embedding by @compnerd in #338
- [OrderedDictionary] forward ordered dictionary values equality to values property by @vanvoorden in #335
- [OrderedSet] forward ordered set equality to elements property by @vanvoorden in #340
- [Deque] check deque equality with buffer identity by @vanvoorden in #341
- [OrderedDictionary] Fix usage of deprecated API in index(forKey:) docs by @lorentey in #342
- [1.0] Backport Sendable conformances on all public types by @lorentey in #343
- OrderedSet: Fix sendable conformance on old swifts by @lorentey in #346
- Update CMake configuration by @lorentey in #347
New Contributors
- @kati-kms made their first contribution in #322
- @vanvoorden made their first contribution in #335
Full Changelog: 1.0.5...1.0.6
Thank you to everyone who contributed to this release!
Swift Collections 1.0.5
This bugfix release improves compatibility with recent Swift versions, eliminating several compiler warnings on Swift 5.8 and 5.9. It contains no API-level changes.
What's Changed
- build: add ARM64 to the architecture mappings for Windows by @compnerd in #265
- Fix deprecated UnsafeMutablePointer.assign(repeating:count) method by @FelixHerrmann in #268
- [1.0][test] Fix typename shadowing warning in Swift 5.9 by @lorentey in #315
- [1.0][benchmark] Update std::function syntax for current C++ by @lorentey in #314
New Contributors
- @FelixHerrmann made their first contribution in #268
Full Changelog: 1.0.4...1.0.5
Thank you to everyone who contributed to this release!
Swift Collections 1.0.4
This is a documentation update, including the addition of basic DocC documentation bundles. This release has no functional changes.
Changes
- The package now contains documentation bundles, enabling nicer presentation of API documentation in DocC.
Fixes
- #186 [OrderedCollections] Document Sorting as Stable (by @benrimmington)
Pull requests
- #178 [OrderedDictionary] Tiny documentation fix (by @lorentey)
- #187 Fix
rethrows
position (by @ensan-hcl) - #189 [OrderedSet] Tiny doc fixes for isSuperset (by @lorentey)
- #201 [OrderedCollections] Update docs to state that the sort algorithm is stable (by @lorentey)
- #214 [OrderedSet] Small doc updates/fixes (by @lorentey)
- #252 [1.0] Add DocC documentation bundles (by @lorentey)
Full Changelog: 1.0.3...1.0.4
Thank you to everyone who contributed to this release! Your bug reports, discussions and pull requests all help improve this package.
Swift Collections 1.0.3
This release resolves issues uncovered since 1.0.2 was tagged. The fixes improve performance of some operations, resolve compile-time issues and update documentation. This release contains no observable behavioral changes.
Changes
- [Clutter] When opened in Xcode, the package no longer adds spurious schemes to dependent projects. (#155)
Fixes
- [Build-time issue] Code that is calling
OrderedDictionary
's uniquing/unique/grouping initializers and merge operations no longer gets flagged as ambiguous in certain cases involving type inference. (#125, #139) - [Build-time issue] The package no longer fails to build when library evolution is enabled. (#157) (Note: this configuration remains unsupported. This package does not provide any guarantees about ABI stability.)
- [Performance] In-place mutations of collection contents no longer result in unnecessary heap allocations. (#164)
- [Performance] On Swift 5.6 and better, some operations in the
OrderedCollections
module now make use of the stdlib's temporary allocation facility. (#160) - [Docs] Documentation was updated to clarify behavior of the
filter
andmerge
methods ofOrderedDictionary
. (#145)
Pull requests
- #140 [OrderedDictionary] Fix type inference issue with OrderedDictionary.init(grouping:by:) (by @lorentey)
- #153 [OrderedDictionary][doc] Update docs for merge/filter operations (by @lorentey)
- #155 Remove Swift PM Artifacts to avoid Generated Schemes in Xcode (by @hectormatos2011)
- #156 Reinstate custom schemes under Utils/swift-collections.xcworkspace (by @lorentey)
- #160 [OrderedCollection] Use standard temp allocation facility, if available (by @lorentey)
- #161 [Xcode] Update schemes & file template (by @lorentey)
- #162 [OrderedSet] Work around weird name lookup issue in compiler (by @lorentey)
- #165 Force-inline _modify accessors to work around a performance issue (by @lorentey)
- #169 [OrderedDictionary] Resolve call-site ambiguities (by @lorentey)
- #170 Update README for 1.0.3 (by @lorentey)
Full Changelog: 1.0.2...1.0.3
Thank you to everyone who contributed to this release! Your bug reports, discussions and pull requests all help improve this package.
Swift Collections 1.0.2
This release resolves issues uncovered since 1.0.1 was tagged, including a high severity crash in OrderedSet
and OrderedDictionary
. Upgrading is recommended for all clients.
Fixes
- Fixed a value semantic violation in
OrderedSet
andOrderedDictionary
that could result in some mutation methods corrupting shared copies of the same value, leading to subsequent crashes. (Issue #104) Deque.append(contentsOf:)
now uses an exponential storage resizing strategy, as expected. Calling it in a loop no longer results in O(n) reallocations. (Issue #113)
Pull requests
- #113 [Deque] append(contentsOf:): Use exponential capacity reservation (by @lorentey)
- #123 [OrderedSet] Add missing uniqueness check (by @lorentey)
- #126 [Utils] run-full-tests.sh: Keep going after a failure (by @lorentey)
- #128 [Utils] run-full-tests.sh: Add support for testing on Swift 5.3 without manual editing (by @lorentey)
Thank you to everyone who contributed to this release! Your bug reports, discussions and pull requests all help improve this package.