chore(deps): update dependency apple/swift-tools-support-core to from: "0.7.3"
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| apple/swift-tools-support-core | minor | from: "0.6.1" -> from: "0.7.3" |
Release Notes
apple/swift-tools-support-core (apple/swift-tools-support-core)
v0.7.3
What's Changed
- fix FreeBSD build by @​michael-yuji in https://github.com/swiftlang/swift-tools-support-core/pull/495
- build: add additional target exports for static linking by @​compnerd in https://github.com/swiftlang/swift-tools-support-core/pull/496
- Use C to force the POSIX (not GNU) overload of strerror_r to be selected by @​jakepetroules in https://github.com/swiftlang/swift-tools-support-core/pull/497
- Revert "Use C to force the POSIX (not GNU) overload of strerror_r to be selected" by @​rintaro in https://github.com/swiftlang/swift-tools-support-core/pull/498
- Bring back "Use C to force the POSIX (not GNU) overload of strerror_r to be selected" by @​finagolfin in https://github.com/swiftlang/swift-tools-support-core/pull/500
- [Serialized diagnostics] Add support for handling the category URL by @​DougGregor in https://github.com/swiftlang/swift-tools-support-core/pull/501
- Add a function on
LocalFileOutputByteStreamto disableSIGPIPEwhen writing data to it after the receiving end is closed by @​ahoppen in https://github.com/swiftlang/swift-tools-support-core/pull/502 - Fix an issue where process handles are leaked in exec on Windows by @​jakepetroules in https://github.com/swiftlang/swift-tools-support-core/pull/503
New Contributors
- @​michael-yuji made their first contribution in https://github.com/swiftlang/swift-tools-support-core/pull/495
- @​rintaro made their first contribution in https://github.com/swiftlang/swift-tools-support-core/pull/498
Full Changelog: https://github.com/swiftlang/swift-tools-support-core/compare/0.7.2...0.7.3
v0.7.2
What's Changed
- Remove referenced projects from multiroot data file by @​ahoppen in https://github.com/swiftlang/swift-tools-support-core/pull/489
- iOS 13 is aligned with macOS 10.15 by @​weissi in https://github.com/swiftlang/swift-tools-support-core/pull/488
- Fix FILEPointer typealias for Musl by @​marcprux in https://github.com/swiftlang/swift-tools-support-core/pull/491
- Don't fail
createDirectoryif directory is created concurrently by another process by @​ahoppen in https://github.com/swiftlang/swift-tools-support-core/pull/490 - Fix the Android build by @​jakepetroules in https://github.com/swiftlang/swift-tools-support-core/pull/492
Full Changelog: https://github.com/swiftlang/swift-tools-support-core/compare/0.7.0...0.7.2
v0.7.1
What's Changed
- Remove referenced projects from multiroot data file by @​ahoppen in https://github.com/swiftlang/swift-tools-support-core/pull/489
- iOS 13 is aligned with macOS 10.15 by @​weissi in https://github.com/swiftlang/swift-tools-support-core/pull/488
Full Changelog: https://github.com/swiftlang/swift-tools-support-core/compare/0.7.0...0.7.1
v0.7.0
What's Changed
- Fix iOS/tvOS/watchOS build by adding missing availability annotations by @​jakepetroules in https://github.com/swiftlang/swift-tools-support-core/pull/394
- Add async overloads of withTemporaryFile and withTemporaryDirectory by @​jakepetroules in https://github.com/swiftlang/swift-tools-support-core/pull/396
- TSCUtility/Triple.swift: fix comment typo by @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/397
- Fix JSONMessageStreamingParser error message formatting by @​tristanlabelle in https://github.com/swiftlang/swift-tools-support-core/pull/398
- Potential workaround for a CI issue by @​neonichu in https://github.com/swiftlang/swift-tools-support-core/pull/404
- TSCBasic: handle empty paths in
WindowsPath(validatingRelativePath:)by @​compnerd in https://github.com/swiftlang/swift-tools-support-core/pull/403 - Make
FileSystemand conforming types asSendableby @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/402 - TSCUtility: deprecate
Tripletype by @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/399 - FileSystem: make all classes
finalto fixSendableerrors by @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/406 - TSCBasic: deprecate
localFileSystemsetter by @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/401 - Update CODEOWNERS by @​neonichu in https://github.com/swiftlang/swift-tools-support-core/pull/405
- refactor RelativePath to allow late stage canonicalization in support of windows by @​tomerd in https://github.com/swiftlang/swift-tools-support-core/pull/369
- TSCBasic: remove uses of
anyfromFileSystem.swiftby @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/407 - address deprecation warnings by @​tomerd in https://github.com/swiftlang/swift-tools-support-core/pull/409
- TSCBasic: make
LocalFileSystema struct by @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/410 - Add
hasQuarantineAttributetoFileSystemby @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/411 - Update resolved file by @​neonichu in https://github.com/swiftlang/swift-tools-support-core/pull/417
- TSCBasic: deprecate
<<<operator by @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/413 - mark several FileSystem APIs as disfavored overloads by @​tomerd in https://github.com/swiftlang/swift-tools-support-core/pull/418
- TSCBasic: fix compatibility with Swift 5.5 by @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/415
- Change
hasQuarantineAttribute(_:)tohasAttribute(_:_:)by @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/414 - Update requirements in
Package.swiftto match SwiftPM by @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/416 - Add
asyncoverloads ofwithLockfor FS I/O by @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/420 - README.md: add deprecation notice by @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/421
- TSCBasic: normalise the drive letter spelling on Windows by @​compnerd in https://github.com/swiftlang/swift-tools-support-core/pull/422
- Add support for Musl libc by @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/423
- TSCBasic: honour
workingDirectoryon Windows'Processmanagement by @​compnerd in https://github.com/swiftlang/swift-tools-support-core/pull/424 - SemVer works: swift-system is API stable, no need to conflict unneces… by @​weissi in https://github.com/swiftlang/swift-tools-support-core/pull/425
- TSCTestSupport: account for
:in function names by @​compnerd in https://github.com/swiftlang/swift-tools-support-core/pull/426 - [FileSystem] Add API for obtaining item replacement directory by @​neonichu in https://github.com/swiftlang/swift-tools-support-core/pull/427
- Use
URL.resourceValues()for symlink detection by @​neonichu in https://github.com/swiftlang/swift-tools-support-core/pull/428 - Add more context to malformed JSON errors by @​neonichu in https://github.com/swiftlang/swift-tools-support-core/pull/429
- Fix platform conditions in
Package.swiftby @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/431 - Provide more context for close errors in
Processby @​neonichu in https://github.com/swiftlang/swift-tools-support-core/pull/434 - Fix close error message by @​neonichu in https://github.com/swiftlang/swift-tools-support-core/pull/433
- Remove redundant addclose calls by @​neonichu in https://github.com/swiftlang/swift-tools-support-core/pull/435
- Revert "Remove redundant addclose calls (#​435)" by @​grynspan in https://github.com/swiftlang/swift-tools-support-core/pull/438
- [NFC] fix comment typo in
GraphAlgorithms.swiftby @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/441 - build: simplify the build rules with newer CMake (NFC) by @​compnerd in https://github.com/swiftlang/swift-tools-support-core/pull/442
- Remove dependency on swift-system by @​neonichu in https://github.com/swiftlang/swift-tools-support-core/pull/448
- build: allow building in Debug mode on Windows by @​compnerd in https://github.com/swiftlang/swift-tools-support-core/pull/445
- Use a concurrent queue to wait for process completion by @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/450
- TSCBasic: deprecate
ProcessSetby @​compnerd in https://github.com/swiftlang/swift-tools-support-core/pull/453 - TSCBasic: remove some deprecated interfaces in
Processby @​compnerd in https://github.com/swiftlang/swift-tools-support-core/pull/454 - TSCBasic: support case insensitivity for environment by @​compnerd in https://github.com/swiftlang/swift-tools-support-core/pull/447
- Android: add better nullability checks for nullability annotations added in NDK 26 by @​finagolfin in https://github.com/swiftlang/swift-tools-support-core/pull/444
- Fix filesystem test on macOS by @​neonichu in https://github.com/swiftlang/swift-tools-support-core/pull/460
- Allow non-blocking file locks by @​neonichu in https://github.com/swiftlang/swift-tools-support-core/pull/458
- [5.10] Fix filesystem test on macOS by @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/461
- Small cleanup to non-block based
FileLockAPI by @​neonichu in https://github.com/swiftlang/swift-tools-support-core/pull/462 - Update terminal width when progress animation is updated by @​kateinoigakukun in https://github.com/swiftlang/swift-tools-support-core/pull/463
- Put cursor at the end of last line for lit progress animation by @​kateinoigakukun in https://github.com/swiftlang/swift-tools-support-core/pull/464
- Update CODEOWNERS by @​neonichu in https://github.com/swiftlang/swift-tools-support-core/pull/468
- Implement
CodableforProcessEnvironmentKeyby @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/469 - Update
Gittype forProcessEnvironmentBlockby @​MaxDesiatov in https://github.com/swiftlang/swift-tools-support-core/pull/470 - Fix usage of Windows path API. by @​jeffdav in https://github.com/swiftlang/swift-tools-support-core/pull/472
- Update links for repositories moved to the swiftlang org on GitHub by @​ahoppen in https://github.com/swiftlang/swift-tools-support-core/pull/473
- Delete CODE_OF_CONDUCT.md by @​parispittman in https://github.com/swiftlang/swift-tools-support-core/pull/474
- Update README.md by @​parispittman in https://github.com/swiftlang/swift-tools-support-core/pull/475
- Import new Android overlay by @​finagolfin in https://github.com/swiftlang/swift-tools-support-core/pull/477
- [TSCBasic] Make init public by @​aciidgh in https://github.com/swiftlang/swift-tools-support-core/pull/476
- [windows] path: drop the trailing backslash before invoking PathCchRe… by @​hyp in https://github.com/swiftlang/swift-tools-support-core/pull/479
- Fix warnings about extraneous whitespace on @​availability. by @​al45tair in https://github.com/swiftlang/swift-tools-support-core/pull/481
- Strip \?\ prefix from path generated by resolveSymlink by @​ahoppen in https://github.com/swiftlang/swift-tools-support-core/pull/485
- Use
readDatato read data from a pipe instead ofavailableDataby @​ahoppen in https://github.com/swiftlang/swift-tools-support-core/pull/486
New Contributors
- @​tristanlabelle made their first contribution in https://github.com/swiftlang/swift-tools-support-core/pull/398
- @​grynspan made their first contribution in https://github.com/swiftlang/swift-tools-support-core/pull/438
- @​jeffdav made their first contribution in https://github.com/swiftlang/swift-tools-support-core/pull/472
- @​ahoppen made their first contribution in https://github.com/swiftlang/swift-tools-support-core/pull/473
- @​parispittman made their first contribution in https://github.com/swiftlang/swift-tools-support-core/pull/474
- @​al45tair made their first contribution in https://github.com/swiftlang/swift-tools-support-core/pull/481
Full Changelog: https://github.com/swiftlang/swift-tools-support-core/compare/0.5.1...0.7.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
â™» Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.