Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 4, 2025

This PR contains the following updates:

Package Type Update Change
actions/checkout action major v5 -> v6
actions/checkout action major v4 -> v6
apple/swift-openapi-runtime minor from: "1.7.0" -> from: "1.8.3"
apple/swift-openapi-urlsession minor from: "1.0.0" -> from: "1.2.0"
chrisaljoudi/swift-log-oslog patch from: "0.2.1" -> from: "0.2.2"
swift stage minor 6.0-noble -> 6.2-noble
swift-server-community/APNSwift minor from: "6.1.0" -> from: "6.2.0"
vapor/vapor minor from: "4.117.0" -> from: "4.119.2"

Release Notes

actions/checkout (actions/checkout)

v6

Compare Source

apple/swift-openapi-runtime (apple/swift-openapi-runtime)

v1.8.3

Compare Source

What's Changed

SemVer Patch
Other Changes

New Contributors

Full Changelog: apple/swift-openapi-runtime@1.8.2...1.8.3

v1.8.2

Compare Source

What's Changed

SemVer Patch
Other Changes

New Contributors

Full Changelog: apple/swift-openapi-runtime@1.8.1...1.8.2

v1.8.1

Compare Source

What's Changed

SemVer Patch
Other Changes

Full Changelog: apple/swift-openapi-runtime@1.8.0...1.8.1

v1.8.0

Compare Source

What's Changed

SemVer Minor
Other Changes

Full Changelog: apple/swift-openapi-runtime@1.7.0...1.8.0

apple/swift-openapi-urlsession (apple/swift-openapi-urlsession)

v1.2.0

Compare Source

What's Changed

SemVer Minor
SemVer Patch
Other Changes

New Contributors

Full Changelog: apple/swift-openapi-urlsession@1.1.0...1.2.0

v1.1.0

Compare Source

What's Changed

SemVer Minor
SemVer Patch
Other Changes

New Contributors

Full Changelog: apple/swift-openapi-urlsession@1.0.2...1.1.0

v1.0.2

Compare Source

What's Changed

SemVer Patch
Other Changes

New Contributors

Full Changelog: apple/swift-openapi-urlsession@1.0.1...1.0.2

v1.0.1

Compare Source

What's Changed

SemVer Patch
Other Changes

Full Changelog: apple/swift-openapi-urlsession@1.0.0...1.0.1

chrisaljoudi/swift-log-oslog (chrisaljoudi/swift-log-oslog)

v0.2.2: swift-log-oslog 0.2.2

Compare Source

What‘s new

  • Xcode 12 compatibility and warning fixes (#​10—thanks, mRs-!)
swift-server-community/APNSwift (swift-server-community/APNSwift)

v6.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: swift-server-community/APNSwift@6.1.0...6.1.1

vapor/vapor (vapor/vapor)

v4.119.2: - Fix parallel build failures on platforms with Glibc

Compare Source

What's Changed

Fix parallel build failures on platforms with Glibc by @​simonjbeaumont in #​3393

Motivation

Since adding MemberImportVisibility, when Vapor is compiled in highly parallel environments it fails with high probability:

% git rev-parse HEAD
ac3aeb7730b63f4f54248603c38137b551b465c7

% rm -rf .build ~/.cache/org.swift.swiftpm/manifests/ && swift build -j 64
...
Building for debugging...
/pwd/Sources/Vapor/Utilities/String+IsIPAddress.swift:10:24: error: initializer 'init()' is not available due to missing import of defining module 'CNIOLinux' [#Membe
rImportVisibility]
 1 | import Foundation
 2 | import NIOCore
 3 | #if canImport(Android)
   | `- note: add import of module 'CNIOLinux'
 4 | import Android
 5 | #endif
   :
 8 |     func isIPAddress() -> Bool {
 9 |         // We need some scratch space to let inet_pton write into.
10 |         var ipv4Addr = in_addr()
   |                        `- error: initializer 'init()' is not available due to missing import of defining module 'CNIOLinux' [#MemberImportVisibility]
11 |         var ipv6Addr = in6_addr()
12 |

---[ similar error for in6_addr t…
This patch was released by @​0xTim

Full Changelog: vapor/vapor@4.119.1...4.119.2

v4.119.1: - Fix a couple of import issues

Compare Source

What's Changed

Fix a couple of import issues by @​0xTim in #​3390

Fixes a couple of import issues seen recently:

  • Sendable error with TOTP types on old macOS SDKs - CryptoKit types have Sendable annotations from Xcode 16.3 (Swift 6.1). If trying to compile on older versions of Xcode, which we support you get an error in Swift 6 mode
  • Some UBI9 based images complain about a missing import for CNIOLinux
This patch was released by @​gwynne

Full Changelog: vapor/vapor@4.119.0...4.119.1

v4.119.0: - Expose peer certificates in request handlers

Compare Source

What's Changed

Expose peer certificates in request handlers by @​josephnoir in #​3362

Additional certificate information can be relevant in mTLS deployments. This PR exposes the certificate chain of the peer per request. In contrast to #​3352, this includes not just the leaf but the validated peer certificate chain, i.e., the certificates that establish trust of the peer identity from the leaf to (and including) the root certificate.

The validated certificate chain is only available when setting a custom verification callback with metadata. Configuration of this callback is made available in this PR. It also adds a dependency on swift-certificates to use X509.ValidatedCertificateChain for the certificate chain.

Example usage:

app.get { req async in
  if let chain = req.peerCertificateChain {
    return "I am trusting you because I trust: \(chain.root.description)"
  } else {
    return "I am not trusting you."
  }
}

I suggest close #​3352 in favor of this PR.

This patch was released by @​0xTim

Full Changelog: vapor/vapor@4.118.0...4.119.0

v4.118.0: - Update minimum Swift version to 6.0

Compare Source

What's Changed

Update minimum Swift version to 6.0 by @​gwynne in #​3365

Clean up all the relevant #if conditionals, add theme settings to the API documentation, and clean up the tests. (FileTests and AsyncFileTests no longer crash on ten different force-unwraps when #file (now #filePath) is inaccessible.)

The tests now also build and pass on iOS, watchOS, tvOS, and visionOS.

Reviewers

Thanks to the reviewers for their help:

This patch was released by @​0xTim

Full Changelog: vapor/vapor@4.117.2...4.118.0

v4.117.2: - Fixing error in documentation of HTTPHeaders accept variable

Compare Source

What's Changed

Fixing error in documentation of HTTPHeaders accept variable by @​VerticalHeretic in #​3375

This fix is addressing an issue vapor/docs#1098, and it’s fixing one of two of the problem mentioned there. The one being that the accept variables is accessible on the headers variable of the httpRequest. I couldn’t reproduce the second problem while it is working correctly on Swift 6.2, and indeed I can make use .html as a condition for the media types.

As on the screenshot below: image

This patch was released by @​0xTim

Full Changelog: vapor/vapor@4.117.1...4.117.2

v4.117.1: - Add HEIC (HEVC in HEIF) HTTPMediaType Support

Compare Source

What's Changed

Add HEIC (HEVC in HEIF) HTTPMediaType Support by @​fang-ling in #​3374

Add the HTTP media type for HEIC/HEIF images to HTTPMediaType, as Safari 17+ supports this format.

New Contributor

This patch was released by @​0xTim

Full Changelog: vapor/vapor@4.117.0...4.117.1


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update swift Docker tag to v6.2 chore(deps): update all dependencies Nov 30, 2025
@renovate
Copy link
Contributor Author

renovate bot commented Nov 30, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@JulianKahnert JulianKahnert merged commit 48cd1d1 into develop Dec 1, 2025
@JulianKahnert JulianKahnert deleted the renovate/all branch December 1, 2025 18:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants