-
Notifications
You must be signed in to change notification settings - Fork 130
Comparing changes
Open a pull request
base repository: swiftlang/swift-tools-support-core
base: swift-6.0.3-RELEASE
head repository: swiftlang/swift-tools-support-core
compare: swift-6.1-RELEASE
- 15 commits
- 16 files changed
- 10 contributors
Commits on Apr 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b170d46 - Browse repository at this point
Copy the full SHA b170d46View commit details
Commits on Jun 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 76504af - Browse repository at this point
Copy the full SHA 76504afView commit details
Commits on Jun 27, 2024
-
Delete CODE_OF_CONDUCT.md (#474)
deleting the repo level coc in favor of the org wide coc in the .github repo. this file present means that it opts-out of that.
Configuration menu - View commit details
-
Copy full SHA for de36041 - Browse repository at this point
Copy the full SHA de36041View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4efd5a7 - Browse repository at this point
Copy the full SHA 4efd5a7View commit details
Commits on Jul 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 15fafa7 - Browse repository at this point
Copy the full SHA 15fafa7View commit details
Commits on Jul 11, 2024
-
[TSCBasic] Make init public (#476)
This is mismatching the other init which is public.
Configuration menu - View commit details
-
Copy full SHA for 12fa2cf - Browse repository at this point
Copy the full SHA 12fa2cfView commit details
Commits on Aug 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a76104d - Browse repository at this point
Copy the full SHA a76104dView commit details
Commits on Aug 15, 2024
-
Fix warnings about extraneous whitespace on @Availability. (#481)
The build is generating warnings about extra space after `@availability` and before the `(`. rdar://133952407
Configuration menu - View commit details
-
Copy full SHA for 79f5ae3 - Browse repository at this point
Copy the full SHA 79f5ae3View commit details
Commits on Oct 11, 2024
-
Strip \\?\ prefix from path generated by resolveSymlink (#485)
This aligns the implementation of resolveSymlinks with that of Foundation.String._resolvingSymlinksInPath, which received this canonicalization fix in swiftlang/swift-foundation#639.
Configuration menu - View commit details
-
Copy full SHA for 27042e9 - Browse repository at this point
Copy the full SHA 27042e9View commit details
Commits on Oct 17, 2024
-
Use
read
to read data from aFileHandle
instead ofavailableData
(#486) Analogous fix to swiftlang/swift-package-manager#8047
Configuration menu - View commit details
-
Copy full SHA for ad2fc22 - Browse repository at this point
Copy the full SHA ad2fc22View commit details
Commits on Oct 24, 2024
-
Remove referenced projects from multiroot data file (#489)
We only build and test swift-tools-support-core with this multiroot-data-file, so there’s no reason why it should include any other projects.
Configuration menu - View commit details
-
Copy full SHA for ec0146e - Browse repository at this point
Copy the full SHA ec0146eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b130e0 - Browse repository at this point
Copy the full SHA 5b130e0View commit details
Commits on Oct 29, 2024
-
Fix FILEPointer typealias for Musl (#491)
Currently, `FILEPointer` is typealiased to `OpaquePointer` for Musl: ```swift #if os(Android) || canImport(Musl) public typealias FILEPointer = OpaquePointer #else public typealias FILEPointer = UnsafeMutablePointer<FILE> #endif ``` But building an executable that links against TSCBasic fails: ``` $ ~/Library/Developer/Toolchains/swift-6.0.1-RELEASE.xctoolchain/usr/bin/swift build --swift-sdk x86_64-swift-linux-musl .build/checkouts/swift-tools-support-core/Sources/TSCBasic/Process/Process.swift:706:70: error: cannot convert value of type 'UnsafeMutablePointer<FILE>' (aka 'UnsafeMutablePointer<_IO_FILE>') to expected argument type 'FILEPointer' (aka 'OpaquePointer') 704 | throw Process.Error.stdinUnavailable 705 | } 706 | let stdinStream = try LocalFileOutputByteStream(filePointer: fp, closeOnDeinit: true) | `- error: cannot convert value of type 'UnsafeMutablePointer<FILE>' (aka 'UnsafeMutablePointer<_IO_FILE>') to expected argument type 'FILEPointer' (aka 'OpaquePointer') ``` But removing the `canImport(Musl)` check allows it to compile without issue, so I assume it was put there for an earlier version of the Musl SDK (or that it was never tested).
Configuration menu - View commit details
-
Copy full SHA for 21929be - Browse repository at this point
Copy the full SHA 21929beView commit details -
Don't fail
createDirectory
if directory is created concurrently by ……another process (#490)
Configuration menu - View commit details
-
Copy full SHA for 4074f4d - Browse repository at this point
Copy the full SHA 4074f4dView commit details
Commits on Dec 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5cd61a7 - Browse repository at this point
Copy the full SHA 5cd61a7View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff swift-6.0.3-RELEASE...swift-6.1-RELEASE