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

Bump dropshot from 0.12.0 to 0.14.0 #36

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 3, 2024

Bumps dropshot from 0.12.0 to 0.14.0.

Changelog

Sourced from dropshot's changelog.

== 0.14.0 (released 2024-12-02)

oxidecomputer/dropshot@v0.13.0\...v0.14.0[Full list of commits]

=== Breaking changes

  • The request_body_max_bytes config has been renamed to default_request_body_max_bytes. This is to make its semantics clear with respect to per-endpoint request limits.

Defining the old config option will produce an error, guiding you to perform the rename.

  • Within RequestContext, endpoint-specific metadata has been moved to an endpoint field: ** rqctx.operation_id is now rqctx.endpoint.operation_id. ** rqctx.path_variables is now rqctx.endpoint.variables. ** rqctx.body_content_type is now rqctx.endpoint.body_content_type.

=== Other notable changes

  • Dropshot now supports per-endpoint size limits, via the request_body_max_bytes parameter to #[endpoint]. For example, to set a limit of 1 MiB on an endpoint:
#[endpoint {
    method = POST,
    path = "/upload-bundle",
    request_body_max_bytes = 1 * 1024 * 1024,
}]
async fn upload_bundle(
    rqctx: RequestContext<MyContext>,  // or RequestContext<Self::Context> with API traits
    body: UntypedBody,
) -> /* ... */ {
    // ...
}

If not specified, the limit defaults to the server configuration's default_request_body_max_bytes.

== 0.13.0 (released 2024-11-13)

oxidecomputer/dropshot@v0.12.0\...v0.13.0[Full list of commits]

=== Breaking Changes

  • Dropshot now expects that APIs use https://semver.org/[Semver] values for their version string. Concretely, this only means that the version argument to ApiDescription::openapi (which generates an OpenAPI document) must be a semver::Version. Previously, it was AsRef<str>.
  • If you're invoking ApiEndpoint::new directly or constructing one as a literal (both of which are uncommon), you must provide a new ApiEndpointVersions value describing which versions this endpoint implements. You can use ApiEndpointVersions::All if you don't care about versioning.

=== Other notable changes

  • oxidecomputer/dropshot#1122 Adds a new ServerBuilder as the primary way of constructing a Dropshot server. This replaces HttpServerStarter::new() and HttpServerStarter::new_with_tls(). These older functions still exist for compatibility. They may be removed in an upcoming release, along with the HttpServerStarter.

In this release, using the builder interface is not very different from using these older functions. But as we look at adding new construction-time options (e.g., for API versioning), those will only be added to the builder. +

... (truncated)

Commits

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [dropshot](https://github.com/oxidecomputer/dropshot) from 0.12.0 to 0.14.0.
- [Changelog](https://github.com/oxidecomputer/dropshot/blob/main/CHANGELOG.adoc)
- [Commits](oxidecomputer/dropshot@v0.12.0...v0.14.0)

---
updated-dependencies:
- dependency-name: dropshot
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Dec 3, 2024
@dependabot dependabot bot requested a review from jessfraz December 3, 2024 10:17
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 rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants