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

chore: release #277

Closed
wants to merge 1 commit into from
Closed

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Nov 26, 2024

πŸ€– New release

  • htsget-config: 0.12.0 -> 0.13.0 (⚠️ API breaking changes)
  • htsget-actix: 0.7.2 -> 0.7.3 (βœ“ API compatible changes)
  • htsget-axum: 0.2.2 -> 0.2.3 (βœ“ API compatible changes)
  • htsget-http: 0.5.1 -> 0.5.2 (βœ“ API compatible changes)
  • htsget-search: 0.9.1 -> 0.9.2 (βœ“ API compatible changes)
  • htsget-storage: 0.2.1 -> 0.2.2 (βœ“ API compatible changes)
  • htsget-test: 0.7.1 -> 0.7.2 (βœ“ API compatible changes)
  • htsget-lambda: 0.5.2 -> 0.5.3 (βœ“ API compatible changes)

⚠️ htsget-config breaking changes

--- failure enum_missing: pub enum removed or renamed ---

Description:
A publicly-visible enum cannot be imported by its prior path. A `pub use` may have been removed, or the enum itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/enum_missing.ron

Failed in:
  enum htsget_config::config::cors::TaggedAllowTypes, previously in file /tmp/.tmp3ardlG/htsget-config/src/config/cors.rs:18
  enum htsget_config::storage::Storage, previously in file /tmp/.tmp3ardlG/htsget-config/src/storage/mod.rs:36
  enum htsget_config::storage::c4gh::Location, previously in file /tmp/.tmp3ardlG/htsget-config/src/storage/c4gh/mod.rs:78
  enum htsget_config::config::cors::AllowType, previously in file /tmp/.tmp3ardlG/htsget-config/src/config/cors.rs:28
  enum htsget_config::resolver::ReferenceNames, previously in file /tmp/.tmp3ardlG/htsget-config/src/resolver.rs:116
  enum htsget_config::config::FormattingStyle, previously in file /tmp/.tmp3ardlG/htsget-config/src/config/mod.rs:65

--- failure inherent_method_missing: pub method removed or renamed ---

Description:
A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/inherent_method_missing.ron

Failed in:
  Config::into_data_server, previously in file /tmp/.tmp3ardlG/htsget-config/src/config/mod.rs:449
  Config::resolvers, previously in file /tmp/.tmp3ardlG/htsget-config/src/config/mod.rs:459
  Config::owned_resolvers, previously in file /tmp/.tmp3ardlG/htsget-config/src/config/mod.rs:464
  S3::set_keys, previously in file /tmp/.tmp3ardlG/htsget-config/src/storage/s3.rs:45

--- failure module_missing: pub module removed or renamed ---

Description:
A publicly-visible module cannot be imported by its prior path. A `pub use` may have been removed, or the module may have been renamed, removed, or made non-public.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/module_missing.ron

Failed in:
  mod htsget_config::config::cors, previously in file /tmp/.tmp3ardlG/htsget-config/src/config/cors.rs:1
  mod htsget_config::storage::local, previously in file /tmp/.tmp3ardlG/htsget-config/src/storage/local.rs:1

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/struct_missing.ron

Failed in:
  struct htsget_config::config::cors::HeaderValue, previously in file /tmp/.tmp3ardlG/htsget-config/src/config/cors.rs:134
  struct htsget_config::config::DataServerConfig, previously in file /tmp/.tmp3ardlG/htsget-config/src/config/mod.rs:162
  struct htsget_config::storage::url::UrlStorage, previously in file /tmp/.tmp3ardlG/htsget-config/src/storage/url.rs:23
  struct htsget_config::resolver::AllowGuard, previously in file /tmp/.tmp3ardlG/htsget-config/src/resolver.rs:103
  struct htsget_config::config::cors::CorsConfig, previously in file /tmp/.tmp3ardlG/htsget-config/src/config/cors.rs:159
  struct htsget_config::config::ServiceInfo, previously in file /tmp/.tmp3ardlG/htsget-config/src/config/mod.rs:277
  struct htsget_config::storage::url::ValidatedUrl, previously in file /tmp/.tmp3ardlG/htsget-config/src/storage/url.rs:156
  struct htsget_config::storage::url::UrlStorageClient, previously in file /tmp/.tmp3ardlG/htsget-config/src/storage/url.rs:37
  struct htsget_config::config::TicketServerConfig, previously in file /tmp/.tmp3ardlG/htsget-config/src/config/mod.rs:94
  struct htsget_config::storage::local::Local, previously in file /tmp/.tmp3ardlG/htsget-config/src/storage/local.rs:22
  struct htsget_config::resolver::Resolver, previously in file /tmp/.tmp3ardlG/htsget-config/src/resolver.rs:60

--- failure trait_method_added: pub trait method added ---

Description:
A non-sealed public trait added a new method without a default implementation, which breaks downstream implementations of the trait
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#trait-new-item-no-default
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/trait_method_added.ron

Failed in:
  trait method htsget_config::resolver::ResolveResponse::from_file in file /tmp/.tmpJimhKm/htsget-rs/htsget-config/src/resolver.rs:22

--- failure trait_method_missing: pub trait method removed or renamed ---

Description:
A trait method is no longer callable, and may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#major-any-change-to-trait-item-signatures
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/trait_method_missing.ron

Failed in:
  method from_local of trait ResolveResponse, previously in file /tmp/.tmp3ardlG/htsget-config/src/resolver.rs:30

--- failure trait_missing: pub trait removed or renamed ---

Description:
A publicly-visible trait cannot be imported by its prior path. A `pub use` may have been removed, or the trait itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/trait_missing.ron

Failed in:
  trait htsget_config::resolver::QueryAllowed, previously in file /tmp/.tmp3ardlG/htsget-config/src/resolver.rs:52
Changelog

htsget-config

0.13.0 - 2025-01-06

Added

  • (config) implement path-based locations

Fixed

  • (config) locations prefix should not be appended to the id so that there is not a double prefix
  • service info group, artifact and version, and add flexibility in configuration

Other

  • (config) ensure all examples and example files are working
  • update docs for path-based and regex config
  • move cors into advanced and add support for mirrored headers and methods
  • add location concept and move advanced config to its own module
  • grammar and typos
  • fix new clippy warnings
  • re-word and simplify, add quick starts where applicable

htsget-actix

0.7.3 - 2025-01-06

Fixed

  • service info group, artifact and version, and add flexibility in configuration

Other

  • add location concept and move advanced config to its own module
  • grammar and typos
  • re-word and simplify, add quick starts where applicable

htsget-http

0.5.2 - 2025-01-06

Fixed

  • service info group, artifact and version, and add flexibility in configuration

Other

  • add location concept and move advanced config to its own module
  • re-word and simplify, add quick starts where applicable

htsget-search

0.9.2 - 2025-01-06

Added

  • (config) implement path-based locations

Other

  • add location concept and move advanced config to its own module
  • grammar and typos
  • re-word and simplify, add quick starts where applicable

htsget-storage

0.2.2 - 2025-01-06

Other

  • add location concept and move advanced config to its own module
  • re-word and simplify, add quick starts where applicable

htsget-test

0.7.2 - 2025-01-06

Other

  • add location concept and move advanced config to its own module
  • re-word and simplify, add quick starts where applicable

htsget-lambda

0.5.3 - 2025-01-06

Other

  • add location concept and move advanced config to its own module
  • re-word and simplify, add quick starts where applicable


This PR was generated with release-plz.

@github-actions github-actions bot force-pushed the release-plz-2024-11-26T22-34-35Z branch 3 times, most recently from 9817781 to 9128768 Compare November 29, 2024 06:14
@github-actions github-actions bot force-pushed the release-plz-2024-11-26T22-34-35Z branch from 9128768 to 735f8de Compare January 5, 2025 21:35
@github-actions github-actions bot force-pushed the release-plz-2024-11-26T22-34-35Z branch from 735f8de to dd80f8d Compare January 6, 2025 00:50
@github-actions github-actions bot closed this Jan 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants