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 v0.2.0 #76

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

Conversation

github-actions[bot]
Copy link
Contributor

🤖 New release

  • axum-supabase-auth: 0.1.0 -> 0.2.0 (⚠️ API breaking changes)

⚠️ axum-supabase-auth breaking changes

--- failure enum_discriminants_undefined_non_unit_variant: enum's variants no longer have defined discriminants due to non-unit variant ---

Description:
An enum's variants no longer have well-defined discriminant values due to a tuple or struct variant in the enum. This breaks downstream code that accesses discriminants via a numeric cast like `as isize`.
        ref: https://doc.rust-lang.org/reference/items/enumerations.html#assigning-discriminant-values
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/enum_discriminants_undefined_non_unit_variant.ron

Failed in:
  enum ApiErrorCode in /tmp/.tmpbtYaPt/axum-supabase-auth/src/auth/api/errors.rs:40

--- failure enum_marked_non_exhaustive: enum marked #[non_exhaustive] ---

Description:
A public enum has been marked #[non_exhaustive]. Pattern-matching on it outside of its crate must now include a wildcard pattern like `_`, or it will fail to compile.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#attr-adding-non-exhaustive
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/enum_marked_non_exhaustive.ron

Failed in:
  enum ApiErrorCode in /tmp/.tmpbtYaPt/axum-supabase-auth/src/auth/api/errors.rs:40

--- failure enum_unit_variant_changed_kind: An enum unit variant changed kind ---

Description:
A public enum's exhaustive unit variant has changed to a different kind of enum variant, breaking possible instantiations and patterns.
        ref: https://doc.rust-lang.org/reference/items/enumerations.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/enum_unit_variant_changed_kind.ron

Failed in:
  variant ApiErrorCode::Unknown in /tmp/.tmpbtYaPt/axum-supabase-auth/src/auth/api/errors.rs:46

--- failure enum_variant_added: enum variant added on exhaustive enum ---

Description:
A publicly-visible enum without #[non_exhaustive] has a new variant.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/enum_variant_added.ron

Failed in:
  variant ApiError:Request in /tmp/.tmpbtYaPt/axum-supabase-auth/src/auth/api/errors.rs:11
  variant ApiError:OAuth in /tmp/.tmpbtYaPt/axum-supabase-auth/src/auth/api/errors.rs:13
  variant ApiError:UnknownHTTP in /tmp/.tmpbtYaPt/axum-supabase-auth/src/auth/api/errors.rs:15

--- failure enum_variant_missing: pub enum variant removed or renamed ---

Description:
A publicly-visible enum has at least one variant that 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/enum_variant_missing.ron

Failed in:
  variant ApiError::HttpError, previously in file /tmp/.tmpWEh1yf/axum-supabase-auth/src/auth/api/mod.rs:304
  variant ApiError::Unknown, previously in file /tmp/.tmpWEh1yf/axum-supabase-auth/src/auth/api/mod.rs:306

--- 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 axum_supabase_auth::api::Api, previously in file /tmp/.tmpWEh1yf/axum-supabase-auth/src/auth/api/mod.rs:19
Changelog

0.2.0 - 2024-12-22

Added

Fixed

Other


This PR was generated with release-plz.

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