Skip to content

chore(deps): update all non-major dependencies #37

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

Merged
merged 6 commits into from
Feb 6, 2024
Merged

chore(deps): update all non-major dependencies #37

merged 6 commits into from
Feb 6, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 9, 2023

Mend Renovate

This PR contains the following updates:

Package Update Change
apple/swift-openapi-generator minor from: "0.2.1" -> from: "0.3.5"
apple/swift-openapi-runtime minor from: "0.2.1" -> from: "0.3.6"
novr/swift-openapi-compute minor from: "0.0.1" -> from: "0.1.2"
swift-cloud/Compute minor from: "2.17.0" -> from: "2.18.0"

Release Notes

apple/swift-openapi-generator (apple/swift-openapi-generator)

v0.3.5: Swift OpenAPI Generator 0.3.5

Compare Source

What's Changed

SemVer Patch
Other Changes

Full Changelog: apple/swift-openapi-generator@0.3.4...0.3.5

v0.3.4: Swift OpenAPI Generator 0.3.4

Compare Source

What's Changed

SemVer Patch
Other Changes

Full Changelog: apple/swift-openapi-generator@0.3.3...0.3.4

v0.3.3: Swift OpenAPI Generator 0.3.3

Compare Source

What's Changed

SemVer Patch
Other Changes

Full Changelog: apple/swift-openapi-generator@0.3.2...0.3.3

v0.3.2: Swift OpenAPI Generator 0.3.2

Compare Source

What's Changed

SemVer Patch
Other Changes

New Contributors

Full Changelog: apple/swift-openapi-generator@0.3.1...0.3.2

v0.3.1: Swift OpenAPI Generator 0.3.1

Compare Source

What's Changed

SemVer Patch
Other Changes

New Contributors

Full Changelog: apple/swift-openapi-generator@0.3.0...0.3.1

v0.3.0: Swift OpenAPI Generator 0.3.0

Compare Source

⚠️ Contains API-breaking changes.

See the full announcement on the Swift forums1.

What's Changed

SemVer Minor
SemVer Patch
Other Changes

Full Changelog: apple/swift-openapi-generator@0.2.3...0.3.0

v0.2.3: Swift OpenAPI Generator 0.2.3

Compare Source

New feature flags

  • urlEncodedForm enables support for generating Codable types for application/x-www-form-urlencoded request bodies

What's Changed

SemVer Patch
Other Changes

New Contributors

Full Changelog: apple/swift-openapi-generator@0.2.2...0.2.3

v0.2.2: Swift OpenAPI Generator 0.2.2

Compare Source

What's Changed

SemVer Patch
Other Changes

New Contributors

Full Changelog: apple/swift-openapi-generator@0.2.1...0.2.2

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

v0.3.6: Swift OpenAPI Runtime 0.3.6

Compare Source

What's Changed

SemVer Patch
Other Changes

Full Changelog: apple/swift-openapi-runtime@0.3.5...0.3.6

v0.3.5: Swift OpenAPI Runtime 0.3.5

Compare Source

What's Changed

SemVer Patch
Other Changes

Full Changelog: apple/swift-openapi-runtime@0.3.4...0.3.5

v0.3.4: Swift OpenAPI Runtime 0.3.4

Compare Source

What's Changed

SemVer Patch
Other Changes

New Contributors

Full Changelog: apple/swift-openapi-runtime@0.3.3...0.3.4

v0.3.3: Swift OpenAPI Runtime 0.3.3

Compare Source

What's Changed

SemVer Patch
Other Changes

Full Changelog: apple/swift-openapi-runtime@0.3.2...0.3.3

v0.3.2: Swift OpenAPI Runtime 0.3.2

Compare Source

What's Changed

SemVer Patch
Other Changes

New Contributors

Full Changelog: apple/swift-openapi-runtime@0.3.1...0.3.2

v0.3.1: Swift OpenAPI Runtime 0.3.1

Compare Source

What's Changed

SemVer Patch

Full Changelog: apple/swift-openapi-runtime@0.3.0...0.3.1

v0.3.0: Swift OpenAPI Runtime 0.3.0

Compare Source

⚠️ API-breaking changes

This release changes the ClientTransport, ClientMiddleware, ServerTransport, and ServerMiddleware protocols in line with the approved proposals SOAR-0004 and SOAR-0005. See the proposals for details on how to migrate.

The TL;DR is:

  • the HTTP currency types are now imported from swift-http-types
  • unstructured bodies, which were previous either Foundation.Data or Swift.String are now OpenAPIRuntime.HTTPBody, which represents an async sequence of byte chunks, unlocking fully streaming use cases

What's Changed

SemVer Minor

Full Changelog: apple/swift-openapi-runtime@0.2.5...0.3.0

v0.2.5: Swift OpenAPI Runtime 0.2.5

Compare Source

What's Changed

SemVer Patch

Full Changelog: apple/swift-openapi-runtime@0.2.4...0.2.5

v0.2.4: Swift OpenAPI Runtime 0.2.4

Compare Source

What's Changed

SemVer Patch

Full Changelog: apple/swift-openapi-runtime@0.2.3...0.2.4

v0.2.3: Swift OpenAPI Runtime 0.2.3

Compare Source

What's Changed

SemVer Patch

New Contributors

Full Changelog: apple/swift-openapi-runtime@0.2.2...0.2.3

v0.2.2: Swift OpenAPI Runtime 0.2.2

Compare Source

What's Changed

SemVer Patch
Other Changes

Full Changelog: apple/swift-openapi-runtime@0.2.1...0.2.2

novr/swift-openapi-compute (novr/swift-openapi-compute)

v0.1.2

Compare Source

What's Changed

Full Changelog: novr/swift-openapi-compute@0.1.1...0.1.2

v0.1.1

Compare Source

Full Changelog: novr/swift-openapi-compute@0.1.0...0.1.1

v0.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: novr/swift-openapi-compute@0.0.2...0.1.0

v0.0.2

Compare Source

Full Changelog: novr/swift-openapi-compute@0.0.1...0.0.2

swift-cloud/Compute (swift-cloud/Compute)

v2.18.0: - Cache

Compare Source

This release adds support for Fastly's Cache API allowing you to cache and retrieve arbitrary data during a request:

let data = try await Cache.getOrSet("my-page") {
    let res = try await expensivePageRender()
    return (res, .ttl(60))
}

try await res
    .status(200)
    .header(.contentLength, "\(data.contentLength)")
    .send(data.body)

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 has been generated by Mend Renovate. View repository job log here.

Footnotes

  1. https://forums.swift.org/t/swift-openapi-generator-0-3-0-released-swift-http-types-streaming-bodies-shorthand-apis/67704

@renovate renovate bot added the renovate label Nov 9, 2023
@novr novr requested a review from a team November 9, 2023 01:06
@novr
Copy link
Member

novr commented Nov 16, 2023

@el-hoshino Swift.cloudのBuild SettingsでSwift Versionを5.8に変更お願いします

@el-hoshino
Copy link
Member

@novr 今の設定はすでに5.8ですね… 🤔

@novr
Copy link
Member

novr commented Nov 16, 2023

swift-openapi-computeがswift-openapiの破壊的変更に対応できてなかったので、修正中です

@novr
Copy link
Member

novr commented Nov 17, 2023

まだエラーでる

10:54:36.867 | [build] swift build: [6/412] Compiling HTTPTypes HTTPField.swift /build_rvfq30w8hltf/.build/checkouts/swift-http-types/Sources/HTTPTypes/HTTPFields.swift:18:29: error: no such module 'Glibc' @_implementationOnly import Glibc

@novr
Copy link
Member

novr commented Nov 17, 2023

swift-http-types のリリース待ち

@el-hoshino
Copy link
Member

Swiftのバージョンを5.9に上げてみました

@el-hoshino
Copy link
Member

[build] swift build: error: Dependencies could not be resolved because 'build_eqvknnt8y5yn' depends on 'swift-openapi-runtime' 0.3.6..<1.0.0 and root depends on 'swift-openapi-compute' 0.1.2..<1.0.0.
'swift-openapi-compute' >= 0.1.2 practically depends on 'swift-openapi-runtime' 1.1.0..<2.0.0 because no versions of 'swift-openapi-compute' match the requirement 0.1.3..<1.0.0 and 'swift-openapi-compute' 0.1.2 depends on 'swift-openapi-runtime' 1.1.0..<2.0.0.

🤔

Copy link
Contributor Author

renovate bot commented Feb 6, 2024

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.

@novr
Copy link
Member

novr commented Feb 6, 2024

@el-hoshino なんか治った

@el-hoshino
Copy link
Member

お! 🎉

Copy link
Member

@el-hoshino el-hoshino left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@novr novr merged commit dee55b4 into main Feb 6, 2024
@novr novr deleted the ci-c6b2bc branch February 6, 2024 03:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants