Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swift: Bump the swift-dependencies group with 2 updates #3401

Merged
merged 2 commits into from
Sep 23, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 23, 2024

Bumps the swift-dependencies group with 2 updates: github.com/swiftpackageindex/spimanifest and github.com/vapor/sql-kit.

Updates github.com/swiftpackageindex/spimanifest from 1.6.0 to 1.7.0

Release notes

Sourced from github.com/swiftpackageindex/spimanifest's releases.

1.7.0

  • Updated SwiftVersion.latestRelease to be .v6_0 (which determines which Swift version is used to generate documentation in downstream projects)
Commits

Updates github.com/vapor/sql-kit from 3.31.1 to 3.32.0

Release notes

Sourced from github.com/vapor/sql-kit's releases.

3.32.0 - Adds multirow insert method

What's Changed

Adds multirow insert method by @​NeedleInAJayStack in #153

This adds functionality to do a multi-row inserts with a single values method call.

Previously, to insert multiple rows a user had to call values repeatedly:

db.insert(into: "planets")
    .columns(["name", "color"])
    .values([SQLBind("Jupiter"), SQLBind("orange")])
    .values([SQLBind("Mars"), SQLBind("red")])
    .run()

This was a bit awkward when inserting rows from an array, where an instance of the builder had to be saved off and edited:

let rows: [[SQLExpression]]  = [[...], [...], ...]
let builder = db.insert(into: "planets")
    .columns(["name", "color"])
for row in rows {
    builder.values(row)
}
builder.run()
db.insert(into: "planets")
    .columns(["name", "color"])
    .values([[SQLBind("Jupiter"), SQLBind("orange")], [SQLBind("Mars"), SQLBind("red")]])
    .run()
let rows  = [[...], [...], ...]
db.insert(into: "planets")
.columns(["name", "color"])
.values(rows)
.run()

This patch was released by @​gwynne

Full Changelog: vapor/sql-kit@3.31.1...3.32.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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

Bumps the swift-dependencies group with 2 updates: [github.com/swiftpackageindex/spimanifest](https://github.com/SwiftPackageIndex/SPIManifest) and [github.com/vapor/sql-kit](https://github.com/vapor/sql-kit).


Updates `github.com/swiftpackageindex/spimanifest` from 1.6.0 to 1.7.0
- [Release notes](https://github.com/SwiftPackageIndex/SPIManifest/releases)
- [Commits](SwiftPackageIndex/SPIManifest@1.6.0...1.7.0)

Updates `github.com/vapor/sql-kit` from 3.31.1 to 3.32.0
- [Release notes](https://github.com/vapor/sql-kit/releases)
- [Commits](vapor/sql-kit@3.31.1...3.32.0)

---
updated-dependencies:
- dependency-name: github.com/swiftpackageindex/spimanifest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: swift-dependencies
- dependency-name: github.com/vapor/sql-kit
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: swift-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file swift_package_manager Pull requests that update Swift_package_manager code labels Sep 23, 2024
@cla-bot cla-bot bot added the cla-signed label Sep 23, 2024
@finestructure finestructure merged commit 252e3c2 into main Sep 23, 2024
5 checks passed
@finestructure finestructure deleted the dependabot/swift/swift-dependencies-00c4f299cb branch September 23, 2024 07:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cla-signed 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.

1 participant