Skip to content

build(deps): bump github.com/nspcc-dev/neo-go from 0.78.3 to 0.99.4#238

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/go_modules/github.com/nspcc-dev/neo-go-0.99.4
Closed

build(deps): bump github.com/nspcc-dev/neo-go from 0.78.3 to 0.99.4#238
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/go_modules/github.com/nspcc-dev/neo-go-0.99.4

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Oct 10, 2022

Bumps github.com/nspcc-dev/neo-go from 0.78.3 to 0.99.4.

Release notes

Sourced from github.com/nspcc-dev/neo-go's releases.

Transliteration

A small update mostly interesting for people building/testing smart contracts with NeoGo. It contains long-awaited VM CLI update that allows to use blockchain state and complete set of interops, additional helper functions for smart contracts and notification checking code (for upcoming 3.5.0 protocol changes). Node operators using EnableCORSWorkaround (that is still not recommended, but available) also may want to update to be able to handle pre-flight CORS requests.

This version is compatible with C# node 3.4.0 and does not require resynchronization on upgrade. The next release is planned to be compatible with 3.5.0.

New features:

  • address conversion helpers for smart contracts (#2698)
  • interop helper to call specific version of a contract (#2695)
  • notifications are now checked for manifest compliance, a warning is logged in case on detected inconsistencies (#2710)
  • VM CLI can now use blockchain state DB (including historic states) to run code with a complete set of interops and contracts available; additional commands were added to it to inspect storage and generated events (#2723)

Behavior changes:

  • type assertion with two return values in Go contracts can't be compiled now (it never worked properly, #2718)
  • RPC server will now handle pre-flight CORS requests (via OPTIONS methods) when EnableCORSWorkaround setting is on (#2724)
  • all transaction-generating CLI commands were unified to accept gas/sysgas/out/force parameters, ask for confirmation and be able to save transaction into a file; this affects wallet claim and candidate-related commands mostly (#2731)

Improvements:

  • smartcontract.Builder API was extended with Len method (#2691)
  • NNS example contract adjustments for better DNS compatibility (#2679)
  • documentation updates (#2708, #2722, #2726, #2728)
  • compiler now emits code to explicitly cast runtime.Notify() parameters to appropriate types (#2720)
  • CLI tests repackaging (#2725)
  • NeoFS sidechain configurations for mainnet and testnet (#2730)

Bugs fixed:

  • panic on node shutdown (#2689)
  • panic on inlined append() compilation (#2716)

Simplification

Version 0.99.3 brings with it most of the planned refactoring changes to the RPC client. dApp backend code can be greatly simplified in many cases by using new APIs (old ones are still available for transition period of about one-two releases more). We also have some updates for CLI and compiler and a number of bug fixes.

This version is compatible with C# node 3.4.0 and does not require resynchronization on upgrade. The next release is planned to be compatible with 3.5.0 (if it's to be released around currently planned dates).

New features:

  • native contract RPC wrappers (#2643, #2646, #2650, #2666, #2665)
  • NEP-11 RPC wrappers (#2651)
  • invoker interface extension with session-based iterators support (#2650)
  • notary Actor greatly simplifying creation of notary-assisted transactions via RPC client (#2665)
  • historic smart contract calls can now be made via CLI (#2683)

Behavior changes:

  • calculatenetworkfee RPC can handle paid attributes (NeoGo extensions) and invalid contract signatures now, it won't return an error for them (#2658)
  • graceful node shutdown on SIGTERM (#2660)
  • wallet balance commands now require at least 0.99.1 NeoGo version (or compatible C# node) used by the RPC server (#2667)

Improvements:

  • build system corrections (#2641, #2684)
  • additional types in unwrap (#2650, #2651)
  • session iterator consistency check in unwrap (#2650)

... (truncated)

Changelog

Sourced from github.com/nspcc-dev/neo-go's changelog.

0.99.4 "Transliteration" (07 Oct 2022)

A small update mostly interesting for people building/testing smart contracts with NeoGo. It contains long-awaited VM CLI update that allows to use blockchain state and complete set of interops, additional helper functions for smart contracts and notification checking code (for upcoming 3.5.0 protocol changes). Node operators using EnableCORSWorkaround (that is still not recommended, but available) also may want to update to be able to handle pre-flight CORS requests.

This version is compatible with C# node 3.4.0 and does not require resynchronization on upgrade. The next release is planned to be compatible with 3.5.0.

New features:

  • address conversion helpers for smart contracts (#2698)
  • interop helper to call specific version of a contract (#2695)
  • notifications are now checked for manifest compliance, a warning is logged in case on detected inconsistencies (#2710)
  • VM CLI can now use blockchain state DB (including historic states) to run code with a complete set of interops and contracts available; additional commands were added to it to inspect storage and generated events (#2723)

Behavior changes:

  • type assertion with two return values in Go contracts can't be compiled now (it never worked properly, #2718)
  • RPC server will now handle pre-flight CORS requests (via OPTIONS methods) when EnableCORSWorkaround setting is on (#2724)
  • all transaction-generating CLI commands were unified to accept gas/sysgas/out/force parameters, ask for confirmation and be able to save transaction into a file; this affects wallet claim and candidate-related commands mostly (#2731)

Improvements:

  • smartcontract.Builder API was extended with Len method (#2691)
  • NNS example contract adjustments for better DNS compatibility (#2679)
  • documentation updates (#2708, #2722, #2726, #2728)
  • compiler now emits code to explicitly cast runtime.Notify() parameters to appropriate types (#2720)
  • CLI tests repackaging (#2725)
  • NeoFS sidechain configurations for mainnet and testnet (#2730)

Bugs fixed:

  • panic on node shutdown (#2689)
  • panic on inlined append() compilation (#2716)

0.99.3 "Simplification" (09 Sep 2022)

Version 0.99.3 brings with it most of the planned refactoring changes to the RPC client. dApp backend code can be greatly simplified in many cases by

... (truncated)

Commits
  • f86cdd9 Merge pull request #2735 from nspcc-dev/changelog-0.99.4
  • 1426b54 Merge pull request #2723 from nspcc-dev/smart-vm-cli
  • 4d2afa2 cli/vm: use ParseInt to properly (and easily) check for int32
  • 735db08 services: adjust RPC server's getHistoricParams
  • eac5e15 cli: rename VMCLI to CLI
  • 16f5ae3 cli: add upper bound check for contract ID for 'storage' VM CLI cmd
  • 95cbddf cli: use custom logger to filter out runtime.Log messages
  • b2cd007 cli: move handleLoggingParams to 'options' package
  • b3c8192 cli: add 'changes' command for VM CLI
  • cac4f6a cli: allow to dump storage diff for 'storage' VM CLI command
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/nspcc-dev/neo-go](https://github.com/nspcc-dev/neo-go) from 0.78.3 to 0.99.4.
- [Release notes](https://github.com/nspcc-dev/neo-go/releases)
- [Changelog](https://github.com/nspcc-dev/neo-go/blob/master/CHANGELOG.md)
- [Commits](nspcc-dev/neo-go@v0.78.3...v0.99.4)

---
updated-dependencies:
- dependency-name: github.com/nspcc-dev/neo-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot requested a review from zengchen221 as a code owner October 10, 2022 16:38
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Oct 10, 2022
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Nov 14, 2022

Superseded by #243.

@dependabot dependabot Bot closed this Nov 14, 2022
@dependabot dependabot Bot deleted the dependabot/go_modules/github.com/nspcc-dev/neo-go-0.99.4 branch November 14, 2022 16:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants