Releases: swiftlang/swift-corelibs-foundation
Releases · swiftlang/swift-corelibs-foundation
Swift 6.1 Release
What's Changed
- Allow custom dispatch include path in SwiftPM package build by @jmschonfeld in #5025
- Adopt Swift 6 and audit for Sendable by @parkera in #5000
- Re-enable tests requiring isoLatin1/macOSRoman by @jmschonfeld in #5027
- Fix local CMake build by @jmschonfeld in #5032
- [Windows] Add default dispatch header search path to standalone builds by @jmschonfeld in #5033
- Disable tests failing on amazon linux by @jmschonfeld in #5036
- Make sure that the once used for Process is static by @parkera in #5038
- Make completion-based send/receive functions public in
URLSessionWebSocketTask
by @lxbndr in #5030 - Fix CoreFoundation module install path for static build by @jmschonfeld in #5037
- Update to use dynamic replacement for _NSNumberInitializer by @jmschonfeld in #5045
- Disable test_connectTimeout for flakiness on Linux by @jrflat in #5046
- NFC: Add
.index-build
to.gitignore
by @MaxDesiatov in #5054 - Implement hook for data reading from remote URL by @jmschonfeld in #5049
- build: Repair the build on WASI platform by @MaxDesiatov in #5052
- Allow for more flexibility in what path SWIFTCI_USE_LOCAL_DEPS means by @parkera in #5048
- build: Repair the build on WASI platform (take 3) by @kateinoigakukun in #5057
- Enable WMO for release builds by @jmschonfeld in #5059
- Fix incorrect help documentation of XCTestMain by @kkebo in #5044
- Remove the workaround for WASI errno conflict by @kateinoigakukun in #5063
- Make curl an optional dependency when not building FoundationNetworking by @kateinoigakukun in #5064
- Include userInfo in Error descriptions by @jakepetroules in #5065
- Fix CFTimeZone crashes on Windows by @jmschonfeld in #5070
- [main] Fixing post-swift-foundation corelibs-foundation MUSL static SDK builds by @etcwilde in #5069
- Repair the Windows SwiftPM build by @jmschonfeld in #5068
- Fix up tests for Windows by @jmschonfeld in #5074
- Add stub for Testing module by @jmschonfeld in #5077
- Add default implementations for three default protocol conformances in the URLSessionDelegate family by @jakepetroules in #5022
- Add one more XCTAssert for isLeapMonth in TestDate.swift by @lamtrinhdev in #5080
- Fix compiler error in CoreFoundation when building in C++ mode by @egorzhdan in #5081
- Tests: prefer
XCTAssertEqual
overXCTAssertTrue
by @compnerd in #5083 - [XMLParser] Fix reentrancy issue around
currentParser
by @kateinoigakukun in #5061 - CMake: Fix accidental variable expansion of
WASI
by @kateinoigakukun in #5084 - Fix a test marked
@MainActor
but notasync
. by @grynspan in #5088 - Add a thread-safe implementation of Process.currentDirectoryURL by @jakepetroules in #4981
- Delete CODE_OF_CONDUCT.md by @parispittman in #5085
- Update CONTRIBUTING.md by @parispittman in #5086
- Restore thread-unsafe fallback for setting the Process working directory by @jakepetroules in #5090
- Correct spelling mistake: manDocumentURL -> mainDocumentURL by @jiang7369 in #5087
- Update FileManager.swift to include bracket in save message by @LordBurtz in #5093
- [Musl] Add missing autolink arguments, fix CFPosixSpawnFileActionsChdir. by @al45tair in #5097
- [CFXMLInterface] Remove spurious include path. by @al45tair in #5101
- Fix bounds checking error when parsing WWW-Authenticate field by @toffaletti in #5103
- Fix a leak when mutating CharacterSet by moving away from _SwiftNSCharacterSet wrapper by @parkera in #5107
- Fix infinite loop when force casting NSError to CocoaError by @nnabeyang in #5115
- [CoreFoundation] Replace use of strlcpy/strlcat with our own functions. by @al45tair in #5113
- Ensure that NSCharacterSet always returns an NSObject on copy by @parkera in #5118
- Move __CFAllocatorRespectsHintZeroWhenAllocating by @parkera in #5126
- Disable TestFileManager.test_emptyFilename on Windows by @jrflat in #5124
- Align fatalError messages in Objective-C bridging methods for consistency by @nnabeyang in #5123
- Fix crash when using WebSockets with URLSession.shared by @jrflat in #5128
- Improve CustomNSError.errorDomain calculation by @ChrisBenua in #5132
- suggestedFilename always returns a valid filename by @Coeur in #5019
- Fix Dictionary ordering in TestHTTPURLResponse.test_NSCoding by @jrflat in #5133
- Fix various typos by @Coeur in #5075
- [6.1] [Windows] FileManager.enumerator(at:) default error handler should continue rather than exiting by @jmschonfeld in #5138
- [6.1] Home directory for non-existent user should not fall back to /var/empty or %ALLUSERSPROFILE% by @jmschonfeld in #5145
- [6.1][Android] Get this repo building again by @finagolfin in #5151
- [6.1] Fix race condition in __CFStringGetEightBitStringEncoding by @jmschonfeld in #5156
- [6.1] New HTTP loader for URLSession by @guoye-zhang in #5168
- [6.1] Remove incorrect
guard
check for Android (#5171) by @finagolfin in #5175 - [6.1] CoreFoundation: adjust declaration of private SPI by @compnerd in #5182
- always @preconcurrency import Glibc/Musl/Android/Bionic/WASILibc [6.1] by @weissi in #5177
- [6.1] Process: unwrap the posix_spawnattr_t on Android by @hjyamauchi in #5185
- Set CMP0157 to OLD only for Windows hosts by @Steelskin in #5195
New Contributors
- @lamtrinhdev made their first contribution in #5080
- @parispittman made their first contribution in #5085
- @jiang7369 made their first contribution in #5087
- @LordBurtz made their first contribution in #5093
- @nnabeyang made their first contribution in #5115
- @ChrisBenua made their first contribution in #5132
Full Changelog: swift-6.0.3-RELEASE...swift-6.1-RELEASE
Swift 6.0.3 Release
What's Changed
- [6.0] build: Repair the build on WASI platform by @MaxDesiatov in #5053
- [6.0] Add stub for Testing module by @jmschonfeld in #5078
- [CFXMLInterface] Remove spurious include path. by @al45tair in #5102
- Fix a leak when mutating CharacterSet by moving away from _SwiftNSCharacterSet wrapper by @parkera in #5110
- Fixed an infinite loop caused by force casting NSError to CocoaError by @parkera in #5116
- Ensure that NSCharacterSet always returns an NSObject on copy by @parkera in #5120
- [6.0.x] Add a thread-safe implementation of Process.currentDirectoryURL by @jakepetroules in #5096
- Move __CFAllocatorRespectsHintZeroWhenAllocating (6.0) by @parkera in #5127
- [6.0.x] Fix crash when using WebSockets with URLSession.shared by @jrflat in #5131
- [Musl] Add back missing autolink arguments, fix CFPosixSpawnFileActionsChdir. by @al45tair in #5143
Full Changelog: swift-6.0.2-RELEASE...swift-6.0.3-RELEASE
Swift 5.10.1 Release
Merge pull request #4960 from etcwilde/ewilde/remove-removed-timezones [5.10] Removing checks for deleted timezones
Swift 5.10 Release
What's Changed
- Fix tests assuming that the temporary directory doesn't include symlinks by @tristanlabelle in #4723
- Fix typo in doc comment by @valeriyvan in #4716
- JSONDecoder.readString(): throw on invalid UTF-8 by @ruihe774 in #4675
- Foundation/Unit: add {m,u,p,n}second units to UnitDuration by @AndrewSB in #4708
- Use macOS instead of OSX by @AtariDreams in #4640
- waitUntilExit: ignore RunLoop.run()'s return value by @fischman-bcny in #4740
- Foundation: implement
Bundle.init(for:)
on Windows by @compnerd in #4744 - Move the size check to be the first thing checked in CFAllocator functions by @AtariDreams in #4641
- Foundation: add some type conversion extensions for Windows by @compnerd in #4747
- Foundation: support file system representation for long paths by @compnerd in #4746
- Foundation: simplify handler handling by @compnerd in #4751
- Tests: correct spelling of
/dev/null
on Windows by @compnerd in #4753 - Foundation: correct directory iteration on Windows by @compnerd in #4745
- Foundation: avoid unnecessary disk IO on windows file enumeration by @compnerd in #4748
- Windows long paths support by @compnerd in #4750
- Do not chdir before calling posix_spawn by @Lukasa in #4606
- Revert "Do not chdir before calling posix_spawn" by @shahmishal in #4764
- Windows: extend some type conversion definitions by @compnerd in #4766
- Foundation: support long file paths for
FileHandle
on Windows by @compnerd in #4768 - Fix
available
attributes by @woxtu in #4770 - Foundation: Windows long file support in
FileManager.createDirectory
by @compnerd in #4771 - Foundation: adjust
_fileExists
for NT style paths by @compnerd in #4773 - Fix a concurrency bug in the TestFileHandle.test_readToEndOfFileAndNotify() unit test. by @grynspan in #4787
- Add Sendable to Date, DateComponents and Data by @FranzBusch in #4777
- Foundation: unmask Windows events on the main RunLoop by @compnerd in #4759
- Foundation: adjust
moveFile
to support long paths on Windows by @compnerd in #4784 - Foundation: use NT-style paths for
CopyFileW
by @compnerd in #4793 - Foundation: improve relative path computation for iteration on Windows by @compnerd in #4797
- Remove an invalid file reference by @woxtu in #4796
- Fix
UserDefaults.string(forKey:)
behavior by @woxtu in #4780 - Fix
UserDefaults.integer(forKey:)
behavior by @woxtu in #4781 - Foundation: make
_moveItem
resilient to multiple volumes by @compnerd in #4800 - Fix
UserDefaults.float(forKey:)
behavior by @woxtu in #4782 - Foundation: adjust
_NSCleanupTemporaryFile
on Windows by @compnerd in #4801 - Foundation: alter
NSData.contents(of:options:)
on Windows by @compnerd in #4802 - Fix
UserDefaults.double(forKey:)
behavior by @woxtu in #4783 - Fix the way known locations are generated on windows by @darinf in #4805
- Fix JSONDecoder.decode(_,from:) behavior by @ypli-chn in #4807
- Cherry pick #4827 by @FranzBusch in #4829
- [5.10] Cherry-pick Fix divergent overwrite behavior of FileManager.copyItem(at:to:) on Linux and Windows by @gwynne in #4825
- [5.10] Cherry-pick Ensure URLSession and curl agree on the host #4836 by @jrflat in #4853
New Contributors
- @ruihe774 made their first contribution in #4675
- @AndrewSB made their first contribution in #4708
- @fischman-bcny made their first contribution in #4740
- @darinf made their first contribution in #4805
- @ypli-chn made their first contribution in #4807
Full Changelog: swift-5.9.2-RELEASE...swift-5.10-RELEASE
swift-4.2.2-RELEASE
Merge pull request #1797 from Kaiede/conditionalBridgeFor4.2
Swift 4.2.1 Release
Various Cookie fixes (#1706) * Various Cookie fixes - Add support for additional Set-Cookie formats that web servers can return - Properly handle HTTP header parsing to extract values since values can contain colons - Make sure to set cookies on redirect requests - Use setValue instead of addValue when applying cookies to requests otherwise, Cookie header might contain: cookie1=value1,cookie1=value1; cookie2=value2 - New unit tests for cookie formats and redirect with Set-Cookie (cherry picked from commit 97a93b5d4c1fca906254172896086183021ef374) * Remove two-digit year cookie format support & unit test (fails on Ubuntu 14.04) (#1707)
Swift 4.2 Release
swift-4.2-RELEASE Merge pull request #1643 from maksimorlovich/swift-4.2-branch