Skip to content

chore: release - #267

Merged
r-near merged 1 commit into
mainfrom
release-plz-2026-07-25T05-27-22Z
Aug 11, 2026
Merged

chore: release#267
r-near merged 1 commit into
mainfrom
release-plz-2026-07-25T05-27-22Z

Conversation

@github-actions

@github-actions github-actions Bot commented Jul 25, 2026

Copy link
Copy Markdown
Contributor

🤖 New release

  • near-kit-macros: 0.12.0 -> 0.12.1
  • near-kit: 0.14.0 -> 0.15.0 (⚠ API breaking changes)

near-kit breaking changes

--- failure copy_impl_added: type now implements Copy ---

Description:
A public type now implements Copy, causing non-move closures to capture it by reference instead of moving it.
        ref: https://github.com/rust-lang/rust/issues/100905
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.48.0/src/lints/copy_impl_added.ron

Failed in:
  near_kit::types::BlockReference in /tmp/.tmpnpjLBl/near-kit-rs/crates/near-kit/src/types/block_reference.rs:21
  near_kit::BlockReference in /tmp/.tmpnpjLBl/near-kit-rs/crates/near-kit/src/types/block_reference.rs:21

--- failure enum_struct_variant_field_added: pub enum struct variant field added ---

Description:
An enum's exhaustive struct variant has a new field, which has to be included when constructing or matching on this variant.
        ref: https://doc.rust-lang.org/reference/attributes/type_system.html#the-non_exhaustive-attribute
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.48.0/src/lints/enum_struct_variant_field_added.ron

Failed in:
  field block_height of variant RpcError::ContractExecution in /tmp/.tmpnpjLBl/near-kit-rs/crates/near-kit/src/error.rs:253
  field block_hash of variant RpcError::ContractExecution in /tmp/.tmpnpjLBl/near-kit-rs/crates/near-kit/src/error.rs:254
  field block_height of variant RpcError::ContractPanic in /tmp/.tmpnpjLBl/near-kit-rs/crates/near-kit/src/error.rs:273
  field block_hash of variant RpcError::ContractPanic in /tmp/.tmpnpjLBl/near-kit-rs/crates/near-kit/src/error.rs:274
  field block_height of variant RpcError::ContractExecution in /tmp/.tmpnpjLBl/near-kit-rs/crates/near-kit/src/error.rs:253
  field block_hash of variant RpcError::ContractExecution in /tmp/.tmpnpjLBl/near-kit-rs/crates/near-kit/src/error.rs:254
  field block_height of variant RpcError::ContractPanic in /tmp/.tmpnpjLBl/near-kit-rs/crates/near-kit/src/error.rs:273
  field block_hash of variant RpcError::ContractPanic in /tmp/.tmpnpjLBl/near-kit-rs/crates/near-kit/src/error.rs:274

--- failure enum_tuple_variant_changed_kind: An enum tuple variant changed kind ---

Description:
A public enum's exhaustive tuple 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.48.0/src/lints/enum_tuple_variant_changed_kind.ron

Failed in:
  variant RpcError::AccountNotFound in /tmp/.tmpnpjLBl/near-kit-rs/crates/near-kit/src/error.rs:212
  variant RpcError::ContractNotDeployed in /tmp/.tmpnpjLBl/near-kit-rs/crates/near-kit/src/error.rs:229
  variant RpcError::AccountNotFound in /tmp/.tmpnpjLBl/near-kit-rs/crates/near-kit/src/error.rs:212
  variant RpcError::ContractNotDeployed in /tmp/.tmpnpjLBl/near-kit-rs/crates/near-kit/src/error.rs:229

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

Failed in:
  variant RpcError::FunctionCall, previously in file /tmp/.tmprnNWoB/near-kit/src/error.rs:243
  variant RpcError::FunctionCall, previously in file /tmp/.tmprnNWoB/near-kit/src/error.rs:243

--- 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.48.0/src/lints/inherent_method_missing.ron

Failed in:
  RpcError::function_call, previously in file /tmp/.tmprnNWoB/near-kit/src/error.rs:395
  RpcError::function_call, previously in file /tmp/.tmprnNWoB/near-kit/src/error.rs:395
Changelog

near-kit-macros

0.12.1 - 2026-08-11

Other

  • (deps) bump syn from 2.0.119 to 3.0.3 (#265)

near-kit

0.15.0 - 2026-08-11

Added

  • derive Copy for BlockReference (#274)
  • derive ML-DSA-65 keys from BIP-39 seed phrases (#261)

Fixed

  • [breaking] distinguish view function RPC errors (#272)

Other

  • (deps) unify rand_core on 0.10 by bumping k256 and rand (#268)
  • (deps) bump ed25519-dalek from 2.2.0 to 3.0.0 (#241)
  • (deps) bump gloo-timers from 0.3.0 to 0.4.0 (#264)

Changed

  • [breaking] preserve block height and hash metadata on applicable view RPC
    error variants when returned by the node

Fixed

  • distinguish missing accounts, undeployed contracts, missing methods, and
    contract panics returned by view function calls

Removed

  • [breaking] remove the unused RpcError::FunctionCall variant and
    RpcError::function_call constructor


This PR was generated with release-plz.

@github-actions
github-actions Bot force-pushed the release-plz-2026-07-25T05-27-22Z branch 3 times, most recently from bffc28e to 664818c Compare July 25, 2026 05:28
@github-actions github-actions Bot changed the title chore(near-kit): release v0.14.1 chore: release Jul 26, 2026
@github-actions
github-actions Bot force-pushed the release-plz-2026-07-25T05-27-22Z branch 3 times, most recently from a21032c to 887aeba Compare July 27, 2026 15:47
@github-actions
github-actions Bot force-pushed the release-plz-2026-07-25T05-27-22Z branch 2 times, most recently from 245f198 to 4f8a9b9 Compare August 11, 2026 21:30
@github-actions
github-actions Bot force-pushed the release-plz-2026-07-25T05-27-22Z branch from 4f8a9b9 to b178bd8 Compare August 11, 2026 21:31
@r-near
r-near merged commit d5aa581 into main Aug 11, 2026
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant