Skip to content

Releases: near/near-sdk-rs

near-sdk-macros-v5.1.0

28 Mar 19:21
9aa5eb0
Compare
Choose a tag to compare
chore: Release package near-sdk-macros version 5.1.0

near-contract-standards-v5.1.0

28 Mar 19:22
9aa5eb0
Compare
Choose a tag to compare

Added

  • Finalize #[near] attribute-macro implementation with the support for custom parameters passing to serializer attributes #[near(serializers = [borsh(...)])] (#1158)
  • Introduce #[near] macro to further streamline contracts development reducing the boilerplate! (#1142)

near-sdk-v5.0.0

23 Feb 00:56
9bb16c2
Compare
Choose a tag to compare

Highlights

This release mostly maintains backwards compatibility with the previous version, but it also includes several breaking changes that improve developer experience and bring security and performance fixes. The most notable changes are:

  • Contract source metadata (NEP-330) is now implemented by default for all the contracts out of the box, which means that you can call contract_source_metadata() function and receive { version?: string, link?: string, standards?: { standard: string, version: string }[] } (#1106)
  • Type-safe NEAR balance, gas amounts, and account ids were implemented:
  • Update borsh to 1.0.0 (#1075)
    • You will have to be explicit about the borsh re-export with #[borsh(crate = "near_sdk::borsh")], see the example in the README
  • New host functions exposed:
  • Slimmed down the dependencies by default, most notably, you may still need to explicitly enable legacy feature for near_sdk::collections and unit-testing feature for near_sdk::testing_env and near_sdk::mock (#1149)
  • Updated nearcore crates from 0.17 -> 0.20, but contracts rarely use these directly so no breaking changes are expected (#1130)
  • Support Result types in #[handle_result] regardless of how they're referred to (#1099)
  • Self is now prohibited in non-init methods to prevent common footguns (#1073)
  • Require explicit Unlimited or Limited when specifying allowances to prevent 0 to be silently treated as unlimited allowance (#976)
  • Performance improvement to TreeMap.range (#964)
  • Deprecated near_sdk::store::UnorderedMap and near_sdk::store::UnorderedSet due to not meeting the original requirements (iteration over a collection of more than 2k elements runs out of gas) (#1139)
  • Deprecated near_sdk::collections::LegacyTreeMap (#963)

The best way to develop NEAR contracts in Rust is by using cargo-near CLI.
It provides a convenient way to create, build, test, and deploy contracts!

Get your fully configured development environment in under 1 minute using GitHub CodeSpaces configured for NEAR!

near-sdk-macros-v5.0.0

23 Feb 00:56
9bb16c2
Compare
Choose a tag to compare
release: v5.0.0 (#1148)

near-contract-standards-v5.0.0

23 Feb 00:57
9bb16c2
Compare
Choose a tag to compare

Fixed

  • Fixed a typo in the storage_deposit refund computation (introduced in 5.0.0-alpha.1 release) (#1146)

near-sdk-v5.0.0-alpha.3

20 Feb 08:11
5999e12
Compare
Choose a tag to compare

Fixed

  • Deprecated store::UnorderedMap and store::UnorderedSet due to not meeting the original requirements (iteration over a collection of more than 2k elements runs out of gas) (#1139)

Other

  • Added ABI tests for SDK-generated methods [contract_source_metadata] (#1136)

near-sdk-macros-v5.0.0-alpha.3

20 Feb 08:10
5999e12
Compare
Choose a tag to compare
chore: release v5.0.0-alpha.3 (#1138)

near-contract-standards-v5.0.0-alpha.3

20 Feb 08:11
5999e12
Compare
Choose a tag to compare

Fixed

  • Fixed a typo in the storage_deposit refund computation (introduced in 5.0.0-alpha.1 release) (#1146)

near-sdk-v5.0.0-alpha.2

17 Jan 14:20
5d340f2
Compare
Choose a tag to compare

Fixed

  • include near-sdk/src/private/result_type_ext.rs file into module tree (#1122)
  • Fixed contract_source_metadata compilation issue when multiple impl blocks are there (#1118)
  • remove leftover near_sdk::__private::schemars (#1120)

Other

  • [breaking] update nearcore crates from 0.17 -> 0.20 (#1130)
  • fix new 1.75 warnings (#1128)
  • Re-exported packages cleanup (#1114)

near-sdk-macros-v5.0.0-alpha.2

17 Jan 14:19
5d340f2
Compare
Choose a tag to compare
chore: release 5.0.0-alpha.2 (#1115)

Signed-off-by: Vlad Frolov <[email protected]>
Co-authored-by: Vlad Frolov <[email protected]>