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.13.0 #263

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 Nov 14, 2024

Bumps dropshot from 0.12.0 to 0.13.0.

Changelog

Sourced from dropshot's changelog.

== 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. + The builder also provides structured errors rather than the GenericError provided by these older functions. + Most non-TLS callers were using HttpServerStarter::new() and then calling start() right away. In that case, you can replace: +

HttpServerStarter::new(&config, api, private, &log).map_err(...)?.start()

with: +

ServerBuilder::new(api, private, log).config(config).start().map_err(...)?

If you were using HttpServerStarter::new_with_tls(), you'd similarly replace: +

HttpServerStarter::new_with_tls(&config, api, private, &log, tls).map_err(...)?.start()

with: +

ServerBuilder::new(api, private, log).config(config).tls(tls).start().map_err(...)?

If you were not invoking start() immediately before, you can still construct an intermediate starter object with build_starter(). If you were doing this: +

let starter = HttpServerStarter::new(&config, api, private, &log).map_err(...)?;
...
starter.start()

Then you can now do:

... (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.13.0.
- [Changelog](https://github.com/oxidecomputer/dropshot/blob/main/CHANGELOG.adoc)
- [Commits](oxidecomputer/dropshot@v0.12.0...v0.13.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 Nov 14, 2024
@dependabot dependabot bot requested a review from jessfraz November 14, 2024 08:20
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