Skip to content

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

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/swift/cmd/powergrid-app/PowerGrid/swift-packages-687ddf9d5c
Closed

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

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

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

Package From To
github.com/apple/swift-certificates 1.19.0 1.19.1
github.com/apple/swift-collections 1.4.1 1.5.0
github.com/apple/swift-crypto 4.4.0 4.5.0
github.com/apple/swift-nio 2.98.0 2.99.0
github.com/apple/swift-nio-transport-services 1.27.0 1.28.0

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

Release notes

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

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

This release also fixes several underlying B-tree bugs that were surfaced by these additions.

These types remain source-unstable; they have known API deficiencies that will need to be addressed before they ship.

Experimental container protocols (UnstableContainersPreview trait)

The ContainersPreview module's protocol hierarchy and associated types continue to be developed. Several constructs have been renamed to follow Swift Evolution proposals in flight.

Old name New name

... (truncated)

Commits
  • 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
  • 3614f74 Clean up package manifest
  • c38e47d [BasicContainers, DequeModule] Avoid using deprecated API
  • 72ee2bf [BasicContainers] Update CMakeLists.txt
  • f196269 Define placeholder availability macro for SwiftStdlib 6.5
  • f83bd74 Move FormatterFixtures into a nested package
  • e5236d4 Update README
  • db24e1b Merge pull request #646 from lorentey/work/mutableref
  • 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-nio from 2.98.0 to 2.99.0

Release notes

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

2.99.0

What's Changed

SemVer Minor

SemVer Patch

Other Changes

New Contributors

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

Commits
  • f71c8d2 Move historycal dependency back to NIOFoundationCompat (#3581)
  • 3800079 Split FoundationEssentials extensions from NIOFoundationCompat (#3567)
  • 32e3d86 Add multi-version matrix support to Wasm Swift SDK workflow (#3575)
  • a57cc53 Translate HTTPHeaderValidationTests to Swift testing (#3579)
  • d36223d Add support for --security-opt docker flags in custom CI jobs (#3580)
  • 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

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 5 updates in the /cmd/powergrid-app/PowerGrid directory:

| Package | From | To |
| --- | --- | --- |
| [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.0` |
| [github.com/apple/swift-crypto](https://github.com/apple/swift-crypto) | `4.4.0` | `4.5.0` |
| [github.com/apple/swift-nio](https://github.com/apple/swift-nio) | `2.98.0` | `2.99.0` |
| [github.com/apple/swift-nio-transport-services](https://github.com/apple/swift-nio-transport-services) | `1.27.0` | `1.28.0` |



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

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-nio` from 2.98.0 to 2.99.0
- [Release notes](https://github.com/apple/swift-nio/releases)
- [Commits](apple/swift-nio@2.98.0...f71c8d2)

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)

---
updated-dependencies:
- 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.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-nio
  dependency-version: 2.99.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
...

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 11, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 18, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this May 18, 2026
@dependabot dependabot Bot deleted the dependabot/swift/cmd/powergrid-app/PowerGrid/swift-packages-687ddf9d5c branch May 18, 2026 03:56
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