Skip to content

build(deps): bump the swift-packages group across 1 directory with 17 updates#14

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/swift/cmd/powergrid-app/PowerGrid/swift-packages-cad65a2610
Open

build(deps): bump the swift-packages group across 1 directory with 17 updates#14
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/swift/cmd/powergrid-app/PowerGrid/swift-packages-cad65a2610

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 15, 2026

Copy link
Copy Markdown
Contributor

Bumps the swift-packages group with 17 updates in the /cmd/powergrid-app/PowerGrid directory:

Package From To
github.com/grpc/grpc-swift-2 2.4.0 2.4.1
github.com/grpc/grpc-swift-nio-transport 2.7.0 2.8.0
github.com/grpc/grpc-swift-protobuf 2.3.0 2.4.0
github.com/apple/swift-asn1 1.7.0 1.7.1
github.com/apple/swift-async-algorithms 1.1.3 1.1.4
github.com/apple/swift-certificates 1.19.0 1.19.1
github.com/apple/swift-collections 1.4.1 1.6.0
github.com/apple/swift-crypto 4.4.0 4.5.0
github.com/apple/swift-http-types 1.5.1 1.6.0
github.com/apple/swift-log 1.12.0 1.13.2
github.com/apple/swift-nio 2.98.0 2.101.0
github.com/apple/swift-nio-extras 1.34.0 1.34.1
github.com/apple/swift-nio-http2 1.43.0 1.44.0
github.com/apple/swift-nio-ssl 2.37.0 2.37.1
github.com/apple/swift-nio-transport-services 1.27.0 1.28.0
github.com/apple/swift-protobuf 1.37.0 1.38.0
github.com/apple/swift-system 1.6.4 1.7.2

Updates github.com/grpc/grpc-swift-2 from 2.4.0 to 2.4.1

Release notes

Sourced from github.com/grpc/grpc-swift-2's releases.

2.4.1

What's Changed

SemVer Patch

New Contributors

Full Changelog: grpc/grpc-swift-2@2.4.0...2.4.1

Commits

Updates github.com/grpc/grpc-swift-nio-transport from 2.7.0 to 2.8.0

Release notes

Sourced from github.com/grpc/grpc-swift-nio-transport's releases.

2.8.0

What's Changed

SemVer Minor

SemVer Patch

New Contributors

Full Changelog: grpc/grpc-swift-nio-transport@2.7.0...2.8.0

Commits

Updates github.com/grpc/grpc-swift-protobuf from 2.3.0 to 2.4.0

Release notes

Sourced from github.com/grpc/grpc-swift-protobuf's releases.

2.4.0

What's Changed

SemVer Minor

Full Changelog: grpc/grpc-swift-protobuf@2.3.0...2.4.0

Commits

Updates github.com/apple/swift-asn1 from 1.7.0 to 1.7.1

Release notes

Sourced from github.com/apple/swift-asn1's releases.

1.7.1

What's Changed

SemVer Patch

Other Changes

Full Changelog: apple/swift-asn1@1.7.0...1.7.1

Commits
  • a9a5efd Encode signed integers correctly (#124)
  • e3be192 Migrate macOS build argument overrides to Swift version inputs (#123)
  • af3440c Fix typo in ASN1ObjectIdentifier BER initializer parameter name. (#120)
  • See full diff in compare view

Updates github.com/apple/swift-async-algorithms from 1.1.3 to 1.1.4

Release notes

Sourced from github.com/apple/swift-async-algorithms's releases.

1.1.4

What's Changed

Full Changelog: apple/swift-async-algorithms@1.1.3...1.1.4

Commits
  • d0b4a06 Rework AsyncStreaming protocols to use generic RangeReplaceableContainer ...
  • 6a92272 Fix a few new region isolation errors in nightly-main (#419)
  • 6783e0f Adds a new AsyncReader.forEach method (#416)
  • d14a83b Adds a new AsyncReader.collect method (#415)
  • 0a5f92d Expose the AsyncStreaming target as a product (#414)
  • be2467e Add new experimental _AsyncStreaming module (#400)
  • See full diff in compare view

Updates github.com/apple/swift-certificates from 1.19.0 to 1.19.1

Release notes

Sourced from github.com/apple/swift-certificates's releases.

1.19.1

What's Changed

SemVer Patch

Other Changes

New Contributors

Full Changelog: apple/swift-certificates@1.19.0...1.19.1

Commits

Updates github.com/apple/swift-collections from 1.4.1 to 1.6.0

Release notes

Sourced from github.com/apple/swift-collections's releases.

Swift Collections 1.6.0

This is a feature release adding several useful operations to ordered collections, as well as shipping bug fixes that landed since 1.5.1.

The list of supported Swift toolchain versions remains 6.0, 6.1, 6.2, and 6.3 for now. Note that we intend to retire support for Swift 6.0 and 6.1 in a subsequent release later this year.

New OrderedCollections operations

We now have several new operations that move existing elements in an OrderedSet or OrderedDictionary to a new position within the same collection:

  • OrderedSet.moveSubrange(_:to:) and OrderedDictionary.moveSubrange(_:to:) move items at a range of indices to just before the item at the specified destination index.
  • OrderedSet.move(members:to:) and OrderedDictionary.move(keys:to:) relocate elements identified by value (or key), preserving the order in which they're listed.
  • OrderedSet.move(indices:to:) and OrderedDictionary.move(indices:to:) relocate items at an arbitrary sequence of indices, preserving their listed order.

Bugfixes

  • SortedCollections [with the UnstableSortedCollections trait]: The default capacity of B-tree nodes is no longer clamped at 16, improving performance. (#257)
  • DequeModule: The ownership-aware RigidDeque and UniqueDeque types no longer hand out invalid spans to clients (#659)
  • ContainersPreview [with the UnstableContainersPreview trait]: The deprecated Borrow type alias is now declared with correct availability. (#655)

What's Changed

New Contributors

Full Changelog: apple/swift-collections@1.5.1...1.6.0

Swift Collections 1.5.1

This is a patch release resolving three issues uncovered since 1.5.0 was tagged, including a source breaking regression introduced in 1.4.0, affecting clients importing the Collections module.

What's Changed

Full Changelog: apple/swift-collections@1.5.0...1.5.1

Swift Collections 1.5.0

This feature release supports Swift toolchain versions 6.0, 6.1, 6.2, and 6.3. It includes the following new features and bug fixes:

Debugging enhancements

... (truncated)

Commits
  • a0cb095 Merge pull request #665 from lorentey/prerelease-cleanups
  • 9d0f2ad Update README
  • f3ede2e Delete unused test source
  • e31c041 Update CMake & Xcode build configurations
  • 5c8d97d Merge pull request #660 from apple/dn/ordered-set-move
  • 72f074a [OrderedCollections] Use pre-removal destination index for move APIs
  • 5a6af29 [OrderedCollections] Refine move APIs and simplify no-op check
  • a837733 [OrderedCollections] Rework move APIs and extend to OrderedDictionary
  • 9ade2f7 Merge pull request #664 from lorentey/benchmark-updates
  • c86ed20 [Benchmark] Shareable(Set|Dictionary)Benchmarks → Tree$1Benchmarks
  • Additional commits viewable in compare view

Updates github.com/apple/swift-crypto from 4.4.0 to 4.5.0

Release notes

Sourced from github.com/apple/swift-crypto's releases.

4.5.0

What's Changed

SemVer Minor

SemVer Patch

New Contributors

Full Changelog: apple/swift-crypto@4.4.0...4.5.0

Commits
  • 1b6b2e2 Add module anchor to fix empty dynamic framework on Xcode 26 (#436)
  • 2d37b11 Adopt FoundationEssentials instead of Foundation where available (#317)
  • c5b1d7f Add support for SHA-512/256 (#432)
  • See full diff in compare view

Updates github.com/apple/swift-http-types from 1.5.1 to 1.6.0

Release notes

Sourced from github.com/apple/swift-http-types's releases.

1.6.0

What's Changed

SemVer Minor

SemVer Patch

Other Changes

New Contributors

Full Changelog: apple/swift-http-types@1.5.1...1.6.0

Commits

Updates github.com/apple/swift-log from 1.12.0 to 1.13.2

Release notes

Sourced from github.com/apple/swift-log's releases.

1.13.2

What's Changed

SemVer Patch

Full Changelog: apple/swift-log@1.13.1...1.13.2

1.13.1

What's Changed

SemVer Patch

Full Changelog: apple/swift-log@1.13.0...1.13.1

1.13.0

What's Changed

SemVer Minor

This release contains a source-breaking change of MetadataValue compatibility with custom string interpolations. Please see apple/swift-log#467 for details.

Full Changelog: apple/swift-log@1.12.1...1.13.0

1.12.1

What's Changed

SemVer Patch

Other Changes

... (truncated)

Commits
  • 92448c3 Add (default:) string interpolation overloads (#471)
  • 2aed77a Match DefaultStringInterpolation appendInterpolation overloads (#469)
  • 7dc6101 [SLG-0004]: metadata value attributes implementation (#453)
  • a012e0a Adopt multi-package macOS benchmarks workflow (#466)
  • 1069d31 Skip handler dispatch for setters under MaxLogLevelNone (#465)
  • 3061a62 Shared workflows changed from Xcode XX.X to Xcode swift X.X (#461)
  • 184c737 Migrate macOS CI to Swift version inputs (#457)
  • eca8199 [SLG-0004]: metadata value attributes proposal (revision 2) (#440)
  • ac3646e Disable nightly 6.3 WASM builds (#454)
  • 5c348a6 Cleanup repository structure (#451)
  • Additional commits viewable in compare view

Updates github.com/apple/swift-nio from 2.98.0 to 2.101.0

Release notes

Sourced from github.com/apple/swift-nio's releases.

2.101.0

What's Changed

SemVer Minor

SemVer Patch

Other Changes

New Contributors

Full Changelog: apple/swift-nio@2.100.0...2.101.0

2.100.0

What's Changed

SemVer Minor

SemVer Patch

Other Changes

New Contributors

... (truncated)

Commits
  • 77b84ac [NIOFileSystem] Fallback to rename when renameat2 is not available (#3612)
  • 03848cb NonBlockingFileIO: error instead of silently truncating oversized reads (#3607)
  • 9ebe69d Add get/setMultipleIntegers on ByteBuffer (#3606)
  • 4e370dc NIOWebSocket: reject 8-byte payload lengths that exceed Int.max (#3603)
  • d20fa05 Fix readInlineArray reading from the wrong index when readerIndex is non-zero...
  • 9670fe1 Don't fatalError if NIOTypedHTTPServerUpgraderStateMachine is in state finish...
  • 158030e Support multiple benchmark packages per macOS workflow invocation (#3602)
  • 57c0a08 Speed up the tests (#3601)
  • b24872d Merge commit from fork
  • 87f935b Merge commit from fork
  • Additional commits viewable in compare view

Updates github.com/apple/swift-nio-extras from 1.34.0 to 1.34.1

Release notes

Sourced from github.com/apple/swift-nio-extras's releases.

1.34.1

What's Changed

SemVer Patch

Other Changes

Full Changelog: apple/swift-nio-extras@1.34.0...1.34.1

Commits

Updates github.com/apple/swift-nio-http2 from 1.43.0 to 1.44.0

Release notes

Sourced from github.com/apple/swift-nio-http2's releases.

1.44.0

What's Changed

Semver Patch

  • Fix request smuggling opportunity in HTTP2ToHTTP1Codec by @​fabianfett

Full Changelog: apple/swift-nio-http2@1.43.0...1.44.0

Commits

Updates github.com/apple/swift-nio-ssl from 2.37.0 to 2.37.1

Release notes

Sourced from github.com/apple/swift-nio-ssl's releases.

2.37.1

What's Changed

SemVer Patch

Other Changes

New Contributors

Full Changelog: apple/swift-nio-ssl@2.37.0...2.37.1

Commits
  • 407d82d Demote ImplementationOnlyDeprecated warning in main CI (#586)
  • 73f8803 Enable x25519_MLKEM768 by default (#582)
  • ae6b517 Define WINSOCKAPI/NOMINMAX/NOCRYPT for CNIOBoringSSL on Windows (#585)
  • 8e3d34d Migrate macOS build argument overrides to Swift version inputs (#581)
  • 52f83a1 Fix optional certificate verification test case (#578)
  • c73384d Update test helper to use SocketAddressError.UnknownHost (#579)
  • See full diff in compare view

Updates github.com/apple/swift-nio-transport-services from 1.27.0 to 1.28.0

Release notes

Sourced from github.com/apple/swift-nio-transport-services's releases.

1.28.0

What's Changed

SemVer Minor

Full Changelog: apple/swift-nio-transport-services@1.27.0...1.28.0

Commits

Updates github.com/apple/swift-protobuf from 1.37.0 to 1.38.0

Release notes

Sourced from github.com/apple/swift-protobuf's releases.

1.38.0 Release

What's Changed

SemVer Minor

SemVer Patch

Other Changes

Full Changelog: apple/swift-protobuf@1.37.0...1.38.0

Commits

Updates github.com/apple/swift-system from 1.6.4 to 1.7.2

Release notes

Sourced from github.com/apple/swift-system's releases.

1.7.2

This is a bug fix for build issues arising when client packages enable the MemberImportVisibility upcoming feature.

What's Changed

Full Changelog: apple/swift-system@1.7.1...1.7.2

1.7.1

This bug fix is for a build issue with FreeBSD older than version 15.0.

What's Changed

  • Fix missing Description has been truncated

… updates

Bumps the swift-packages group with 17 updates in the /cmd/powergrid-app/PowerGrid directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/grpc/grpc-swift-2](https://github.com/grpc/grpc-swift-2) | `2.4.0` | `2.4.1` |
| [github.com/grpc/grpc-swift-nio-transport](https://github.com/grpc/grpc-swift-nio-transport) | `2.7.0` | `2.8.0` |
| [github.com/grpc/grpc-swift-protobuf](https://github.com/grpc/grpc-swift-protobuf) | `2.3.0` | `2.4.0` |
| [github.com/apple/swift-asn1](https://github.com/apple/swift-asn1) | `1.7.0` | `1.7.1` |
| [github.com/apple/swift-async-algorithms](https://github.com/apple/swift-async-algorithms) | `1.1.3` | `1.1.4` |
| [github.com/apple/swift-certificates](https://github.com/apple/swift-certificates) | `1.19.0` | `1.19.1` |
| [github.com/apple/swift-collections](https://github.com/apple/swift-collections) | `1.4.1` | `1.6.0` |
| [github.com/apple/swift-crypto](https://github.com/apple/swift-crypto) | `4.4.0` | `4.5.0` |
| [github.com/apple/swift-http-types](https://github.com/apple/swift-http-types) | `1.5.1` | `1.6.0` |
| [github.com/apple/swift-log](https://github.com/apple/swift-log) | `1.12.0` | `1.13.2` |
| [github.com/apple/swift-nio](https://github.com/apple/swift-nio) | `2.98.0` | `2.101.0` |
| [github.com/apple/swift-nio-extras](https://github.com/apple/swift-nio-extras) | `1.34.0` | `1.34.1` |
| [github.com/apple/swift-nio-http2](https://github.com/apple/swift-nio-http2) | `1.43.0` | `1.44.0` |
| [github.com/apple/swift-nio-ssl](https://github.com/apple/swift-nio-ssl) | `2.37.0` | `2.37.1` |
| [github.com/apple/swift-nio-transport-services](https://github.com/apple/swift-nio-transport-services) | `1.27.0` | `1.28.0` |
| [github.com/apple/swift-protobuf](https://github.com/apple/swift-protobuf) | `1.37.0` | `1.38.0` |
| [github.com/apple/swift-system](https://github.com/apple/swift-system) | `1.6.4` | `1.7.2` |



Updates `github.com/grpc/grpc-swift-2` from 2.4.0 to 2.4.1
- [Release notes](https://github.com/grpc/grpc-swift-2/releases)
- [Commits](grpc/grpc-swift-2@2.4.0...21fe69a)

Updates `github.com/grpc/grpc-swift-nio-transport` from 2.7.0 to 2.8.0
- [Release notes](https://github.com/grpc/grpc-swift-nio-transport/releases)
- [Commits](grpc/grpc-swift-nio-transport@2.7.0...e7d4637)

Updates `github.com/grpc/grpc-swift-protobuf` from 2.3.0 to 2.4.0
- [Release notes](https://github.com/grpc/grpc-swift-protobuf/releases)
- [Commits](grpc/grpc-swift-protobuf@2.3.0...b05885f)

Updates `github.com/apple/swift-asn1` from 1.7.0 to 1.7.1
- [Release notes](https://github.com/apple/swift-asn1/releases)
- [Commits](apple/swift-asn1@1.7.0...a9a5efd)

Updates `github.com/apple/swift-async-algorithms` from 1.1.3 to 1.1.4
- [Release notes](https://github.com/apple/swift-async-algorithms/releases)
- [Commits](apple/swift-async-algorithms@1.1.3...d0b4a06)

Updates `github.com/apple/swift-certificates` from 1.19.0 to 1.19.1
- [Release notes](https://github.com/apple/swift-certificates/releases)
- [Commits](apple/swift-certificates@1.19.0...bde8ca3)

Updates `github.com/apple/swift-collections` from 1.4.1 to 1.6.0
- [Release notes](https://github.com/apple/swift-collections/releases)
- [Commits](apple/swift-collections@1.4.1...a0cb095)

Updates `github.com/apple/swift-crypto` from 4.4.0 to 4.5.0
- [Release notes](https://github.com/apple/swift-crypto/releases)
- [Commits](apple/swift-crypto@4.4.0...1b6b2e2)

Updates `github.com/apple/swift-http-types` from 1.5.1 to 1.6.0
- [Release notes](https://github.com/apple/swift-http-types/releases)
- [Commits](apple/swift-http-types@1.5.1...db774a2)

Updates `github.com/apple/swift-log` from 1.12.0 to 1.13.2
- [Release notes](https://github.com/apple/swift-log/releases)
- [Commits](apple/swift-log@1.12.0...92448c3)

Updates `github.com/apple/swift-nio` from 2.98.0 to 2.101.0
- [Release notes](https://github.com/apple/swift-nio/releases)
- [Commits](apple/swift-nio@2.98.0...77b84ac)

Updates `github.com/apple/swift-nio-extras` from 1.34.0 to 1.34.1
- [Release notes](https://github.com/apple/swift-nio-extras/releases)
- [Commits](apple/swift-nio-extras@1.34.0...d2eeec0)

Updates `github.com/apple/swift-nio-http2` from 1.43.0 to 1.44.0
- [Release notes](https://github.com/apple/swift-nio-http2/releases)
- [Commits](apple/swift-nio-http2@1.43.0...61d1b44)

Updates `github.com/apple/swift-nio-ssl` from 2.37.0 to 2.37.1
- [Release notes](https://github.com/apple/swift-nio-ssl/releases)
- [Commits](apple/swift-nio-ssl@2.37.0...407d82d)

Updates `github.com/apple/swift-nio-transport-services` from 1.27.0 to 1.28.0
- [Release notes](https://github.com/apple/swift-nio-transport-services/releases)
- [Commits](apple/swift-nio-transport-services@1.27.0...67787bb)

Updates `github.com/apple/swift-protobuf` from 1.37.0 to 1.38.0
- [Release notes](https://github.com/apple/swift-protobuf/releases)
- [Commits](apple/swift-protobuf@1.37.0...f6506ea)

Updates `github.com/apple/swift-system` from 1.6.4 to 1.7.2
- [Release notes](https://github.com/apple/swift-system/releases)
- [Commits](apple/swift-system@1.6.4...7502b71)

---
updated-dependencies:
- dependency-name: github.com/grpc/grpc-swift-2
  dependency-version: 2.4.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: swift-packages
- dependency-name: github.com/grpc/grpc-swift-nio-transport
  dependency-version: 2.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: swift-packages
- dependency-name: github.com/grpc/grpc-swift-protobuf
  dependency-version: 2.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: swift-packages
- dependency-name: github.com/apple/swift-asn1
  dependency-version: 1.7.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: swift-packages
- dependency-name: github.com/apple/swift-async-algorithms
  dependency-version: 1.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: swift-packages
- dependency-name: github.com/apple/swift-certificates
  dependency-version: 1.19.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: swift-packages
- dependency-name: github.com/apple/swift-collections
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: swift-packages
- dependency-name: github.com/apple/swift-crypto
  dependency-version: 4.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: swift-packages
- dependency-name: github.com/apple/swift-http-types
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: swift-packages
- dependency-name: github.com/apple/swift-log
  dependency-version: 1.13.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: swift-packages
- dependency-name: github.com/apple/swift-nio
  dependency-version: 2.101.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: swift-packages
- dependency-name: github.com/apple/swift-nio-extras
  dependency-version: 1.34.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: swift-packages
- dependency-name: github.com/apple/swift-nio-http2
  dependency-version: 1.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: swift-packages
- dependency-name: github.com/apple/swift-nio-ssl
  dependency-version: 2.37.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: swift-packages
- dependency-name: github.com/apple/swift-nio-transport-services
  dependency-version: 1.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: swift-packages
- dependency-name: github.com/apple/swift-protobuf
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: swift-packages
- dependency-name: github.com/apple/swift-system
  dependency-version: 1.7.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: swift-packages
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file swift_package_manager Pull requests that update swift_package_manager code labels Jun 15, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file swift_package_manager Pull requests that update swift_package_manager code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants