Skip to content

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

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

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

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 25, 2026

Bumps the swift-packages group with 12 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-protobuf 2.3.0 2.4.0
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.5.1
github.com/apple/swift-crypto 4.4.0 4.5.0
github.com/apple/swift-log 1.12.0 1.12.1
github.com/apple/swift-nio 2.98.0 2.100.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-transport-services 1.27.0 1.28.0
github.com/apple/swift-protobuf 1.37.0 1.38.0

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-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-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.5.1

Release notes

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

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

The package now defines LLDB data formatters for RigidArray. The formatters are emitted into the executable binary, and they are automatically loaded by LLDB. We expect to implement formatters for (many) more types in subsequent releases.

New stable APIs

  • RigidArray and UniqueArray now conform to Equatable when their element type is Equatable. This conformance requires a Swift 6.4 or later toolchain (it relies on SE-0499 generalizations of Equatable/Hashable to support noncopyable conforming types).
  • RigidArray and UniqueArray gained an isTriviallyIdentical(to:) operation, which reports whether two instances share their underlying storage allocation. This does not require the element type to be Equatable, and it works with noncopyable elements.
  • BitSet gained a makeIterator(from:) shortcut for starting iteration at (or after) a specific member, avoiding a linear scan from the start of the set.
  • OrderedDictionary gained a replaceElement(at:withKey:value:) operation that replaces the key-value pair at a given index. The new key is allowed to equal the existing key at that index (in which case only the value is updated).

Experimental hashed containers (UnstableHashedContainers trait)

The Robin-Hood-hashed UniqueSet, RigidSet, UniqueDictionary, and RigidDictionary types in the BasicContainers module continue to evolve behind the UnstableHashedContainers package trait. This release brings a number of correctness fixes and performance improvements:

  • Faster removals, with better maxProbeLength maintenance to avoid probe-length bloat.
  • Small tables are now scrambled to avoid degenerate patterns on common key distributions.
  • A fast-path shortcut for insertions into under-utilized tables.
  • Fixes to the insertion algorithm and to RigidDictionary.updateValue(forKey:with:) (the latter exhibited undefined behavior on removals).
  • RigidSet.insert(maximumCount:from:) no longer spuriously reports a capacity overflow due to incorrect accounting.
  • The UnstableHashedContainers trait can now be enabled independently of UnstableContainersPreview.

These types remain source-unstable for now.

Experimental sorted collections (UnstableSortedCollections trait)

The SortedCollections module's [SortedSet][SortedSet] has gained the following additions:

  • SortedSet now supports value-range subscripts for the full variety of standard range expression types, ClosedRange, PartialRangeFrom, PartialRangeThrough, and PartialRangeUpTo.
  • SortedSet.firstIndex(after:) and SortedSet.lastIndex(before:) return the index to the nearest member following or preceding a given value.

... (truncated)

Commits
  • fea17c0 Merge pull request #654 from lorentey/adjust-reexports
  • 1b3ec29 [Collections] Declare generic arguments on forwarding typealiases
  • c3ba833 Add basic tests for Collections module
  • de84ac9 Merge pull request #650 from lorentey/disable-formatter-on-wasm
  • a731a7f [BasicContainers] Don’t define LLDB formatter symbol on Wasm
  • 7b371ce Merge pull request #649 from apple/fb-unique-box-borrow
  • f674e13 Guard UniqueBox.borrow correctly
  • 03cc312 Merge pull request #647 from lorentey/work/release-prep
  • 599e65a Silence bogus license checker error for the FormatterFixtures package manifest
  • 8ecf8c7 [Xcode] Don’t enable traits by default
  • 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-log from 1.12.0 to 1.12.1

Release notes

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

1.12.1

What's Changed

SemVer Patch

Other Changes

New Contributors

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

Commits
  • 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)
  • deae26e Add tests for SwiftLogNoOpLogHandler (#449)
  • 1fe83fb Make dependabot set label (#448)
  • 41592e4 Bump swiftlang/github-workflows/.github/workflows/soundness.yml from 0.0.9 to...
  • Additional commits viewable in compare view

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

Release notes

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

2.100.0

What's Changed

SemVer Minor

SemVer Patch

Other Changes

New Contributors

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

2.99.0

What's Changed

SemVer Minor

SemVer Patch

Other Changes

New Contributors

... (truncated)

Commits
  • 57c0a08 Speed up the tests (#3601)
  • b24872d Merge commit from fork
  • 87f935b Merge commit from fork
  • dd16365 Merge commit from fork
  • 6338e9f Fix doubled 'the' in NIOAsyncChannel upgrade docs (#3600)
  • 0ee0fd1 [Android] Gate getifaddrs behind API 24 availability (#3506)
  • 9f50660 Add dnsResolver configuration option for randomized DNS load balancing (#3577)
  • dea1734 Remove linux_nightly_6_1_enabled shim from workflow inputs (#3599)
  • c077074 Allow concurrent createDirectory calls with shared ancestor paths (#3598)
  • 32f395b Add helpers for reading length-prefixed things (#3589)
  • 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-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

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

… updates

Bumps the swift-packages group with 12 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-protobuf](https://github.com/grpc/grpc-swift-protobuf) | `2.3.0` | `2.4.0` |
| [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.5.1` |
| [github.com/apple/swift-crypto](https://github.com/apple/swift-crypto) | `4.4.0` | `4.5.0` |
| [github.com/apple/swift-log](https://github.com/apple/swift-log) | `1.12.0` | `1.12.1` |
| [github.com/apple/swift-nio](https://github.com/apple/swift-nio) | `2.98.0` | `2.100.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-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` |



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-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-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.5.1
- [Release notes](https://github.com/apple/swift-collections/releases)
- [Commits](apple/swift-collections@1.4.1...fea17c0)

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-log` from 1.12.0 to 1.12.1
- [Release notes](https://github.com/apple/swift-log/releases)
- [Commits](apple/swift-log@1.12.0...a012e0a)

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

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-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)

---
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-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-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.5.1
  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-log
  dependency-version: 1.12.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: swift-packages
- dependency-name: github.com/apple/swift-nio
  dependency-version: 2.100.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-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
...

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 May 25, 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