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 #99

Merged
merged 1 commit into from
Dec 28, 2023
Merged

chore: release #99

merged 1 commit into from
Dec 28, 2023

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Dec 21, 2023

πŸ€– New release

  • atm0s-sdn: 0.1.4 -> 0.1.5 (βœ“ API compatible changes)
  • atm0s-sdn-identity: 0.1.2 -> 0.2.0 (⚠️ API breaking changes)
  • atm0s-sdn-key-value: 0.1.5 -> 0.1.6 (βœ“ API compatible changes)
  • atm0s-sdn-network: 0.2.2 -> 0.3.0 (⚠️ API breaking changes)
  • atm0s-sdn-router: 0.1.3 -> 0.1.4 (βœ“ API compatible changes)
  • atm0s-sdn-layers-spread-router-sync: 0.1.4 -> 0.1.5 (βœ“ API compatible changes)
  • atm0s-sdn-manual-discovery: 0.2.2 -> 0.2.3 (βœ“ API compatible changes)
  • atm0s-sdn-pub-sub: 0.1.4 -> 0.1.5 (βœ“ API compatible changes)
  • atm0s-sdn-rpc: 0.1.2 -> 0.1.3 (βœ“ API compatible changes)
  • atm0s-sdn-transport-tcp: 0.1.4 -> 0.1.5 (βœ“ API compatible changes)
  • atm0s-sdn-transport-udp: 0.1.3 -> 0.1.4 (βœ“ API compatible changes)
  • atm0s-sdn-transport-vnet: 0.1.4 -> 0.2.0 (⚠️ API breaking changes)
  • atm0s-sdn-dht-discovery: 0.1.4 -> 0.1.5 (βœ“ API compatible changes)
  • atm0s-sdn-tun-tap: 0.1.4 -> 0.1.5 (βœ“ API compatible changes)
  • atm0s-sdn-layers-spread-router: 0.1.4 -> 0.1.5
  • atm0s-sdn-redis-server: 0.1.3 -> 0.1.4

⚠️ atm0s-sdn-identity breaking changes

--- 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.26.0/src/lints/trait_missing.ron

Failed in:
  trait atm0s_sdn_identity::NodeAddrType, previously in file /tmp/.tmpZaao6W/atm0s-sdn-identity/src/node_addr.rs:6

⚠️ atm0s-sdn-network breaking changes

--- failure constructible_struct_adds_field: externally-constructible struct adds field ---

Description:
A pub struct constructible with a struct literal has a new pub field. Existing struct literals must be updated to include the new field.
        ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.26.0/src/lints/constructible_struct_adds_field.ron

Failed in:
  field MsgHeader.secure in /tmp/.tmphMIjbR/atm0s-sdn/packages/network/src/msg.rs:72

--- failure enum_struct_variant_field_missing: pub enum struct variant's field removed or renamed ---

Description:
A publicly-visible enum has a struct variant whose field 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.26.0/src/lints/enum_struct_variant_field_missing.ron

Failed in:
  field local_uuid of variant TransportEvent::OutgoingError, previously in file /tmp/.tmpZaao6W/atm0s-sdn-network/src/transport.rs:33

--- failure enum_tuple_variant_field_missing: pub enum tuple variant's field removed ---

Description:
A field of a tuple variant in a pub enum has been removed.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.26.0/src/lints/enum_tuple_variant_field_missing.ron

Failed in:
  field 1 of variant NetworkBehaviorAction::ConnectTo, previously in file /tmp/.tmpZaao6W/atm0s-sdn-network/src/behaviour.rs:98
  field 2 of variant NetworkBehaviorAction::ConnectTo, previously in file /tmp/.tmpZaao6W/atm0s-sdn-network/src/behaviour.rs:98
  field 2 of variant TransportEvent::Outgoing, previously in file /tmp/.tmpZaao6W/atm0s-sdn-network/src/transport.rs:29

--- 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.26.0/src/lints/enum_variant_added.ron

Failed in:
  variant NetworkPlaneInternalEvent:OutgoingRequest in /tmp/.tmphMIjbR/atm0s-sdn/packages/network/src/plane.rs:77

--- 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.26.0/src/lints/enum_variant_missing.ron

Failed in:
  variant TransportEvent::OutgoingRequest, previously in file /tmp/.tmpZaao6W/atm0s-sdn-network/src/transport.rs:24

--- 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.26.0/src/lints/trait_method_missing.ron

Failed in:
  method connect_to of trait TransportConnector, previously in file /tmp/.tmpZaao6W/atm0s-sdn-network/src/transport.rs:47

⚠️ atm0s-sdn-transport-vnet breaking changes

--- failure method_parameter_count_changed: pub method parameter count changed ---

Description:
A publicly-visible method now takes a different number of parameters.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#fn-change-arity
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.26.0/src/lints/method_parameter_count_changed.ron

Failed in:
  atm0s_sdn_transport_vnet::VnetTransport::new now takes 2 parameters instead of 4, in /tmp/.tmphMIjbR/atm0s-sdn/packages/transports/vnet/src/transport.rs:18
  atm0s_sdn_transport_vnet::VnetEarth::create_listener now takes 2 parameters instead of 4, in /tmp/.tmphMIjbR/atm0s-sdn/packages/transports/vnet/src/earth.rs:25
  atm0s_sdn_transport_vnet::VnetEarth::create_outgoing now takes 3 parameters instead of 5, in /tmp/.tmphMIjbR/atm0s-sdn/packages/transports/vnet/src/earth.rs:31
Changelog

atm0s-sdn

0.1.5 - 2023-12-27

Added

  • secure with static key and noise protocol (#101)
  • node multi addrs (#98)

Other

  • update Cargo.toml dependencies

atm0s-sdn-identity

0.2.0 - 2023-12-27

Added

  • node multi addrs (#98)

atm0s-sdn-key-value

0.1.6 - 2023-12-27

Added

  • node multi addrs (#98)

atm0s-sdn-network

0.3.0 - 2023-12-27

Added

  • secure with static key and noise protocol (#101)
  • node multi addrs (#98)

atm0s-sdn-router

0.1.4 - 2023-12-27

Other

  • update Cargo.toml dependencies

atm0s-sdn-layers-spread-router-sync

0.1.5 - 2023-12-27

Added

  • node multi addrs (#98)

atm0s-sdn-manual-discovery

0.2.3 - 2023-12-27

Added

  • node multi addrs (#98)

atm0s-sdn-pub-sub

0.1.5 - 2023-12-27

Added

  • node multi addrs (#98)

atm0s-sdn-rpc

0.1.3 - 2023-12-27

Added

  • node multi addrs (#98)

atm0s-sdn-transport-tcp

0.1.5 - 2023-12-27

Added

  • secure with static key and noise protocol (#101)
  • node multi addrs (#98)

atm0s-sdn-transport-udp

0.1.4 - 2023-12-27

Added

  • secure with static key and noise protocol (#101)
  • node multi addrs (#98)

atm0s-sdn-transport-vnet

0.2.0 - 2023-12-27

Added

  • node multi addrs (#98)

atm0s-sdn-dht-discovery

0.1.5 - 2023-12-27

Added

  • node multi addrs (#98)

atm0s-sdn-tun-tap

0.1.5 - 2023-12-27

Added

  • node multi addrs (#98)

atm0s-sdn-layers-spread-router

0.1.5 - 2023-12-27

Other

  • updated the following local packages: atm0s-sdn-identity, atm0s-sdn-router

atm0s-sdn-redis-server

0.1.4 - 2023-12-27

Other

  • updated the following local packages: atm0s-sdn-identity, atm0s-sdn-key-value, atm0s-sdn-network, atm0s-sdn-router


This PR was generated with release-plz.

@github-actions github-actions bot force-pushed the release-plz-2023-12-21T03-56-51Z branch from 86b6df8 to 6e1bf93 Compare December 22, 2023 03:40
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
@github-actions github-actions bot force-pushed the release-plz-2023-12-21T03-56-51Z branch from 6e1bf93 to fe70f00 Compare December 27, 2023 17:23
@giangndm giangndm merged commit 8a85cbf into master Dec 28, 2023
1 check passed
@github-actions github-actions bot mentioned this pull request Dec 28, 2023
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.

1 participant