Releases: onflow/flow-cli
Version 0.42.2
⬆️ Install or Upgrade
Follow the Flow CLI installation guide for instructions on how to install or upgrade the CLI.
🛠 Improvements
- Update version.txt for v0.42.0 (#727) @DylanTinianov
🐞 Bug Fixes
- Update version.txt for v0.42.0 (#727) @DylanTinianov
Version 0.42.1
⬆️ Install or Upgrade
Follow the Flow CLI installation guide for instructions on how to install or upgrade the CLI.
- Fix mismatching tar naming in shell install script for x86 cpu (#719) @AlexHentschel
- Trigger actions on release publish (#717) @sideninja
🛠 Improvements
🐞 Bug Fixes
- Get block height each deploy itteration (#721) @sideninja
Version 0.42.0
⬆️ Install or Upgrade
Follow the Flow CLI installation guide for instructions on how to install or upgrade the CLI.
⭐ Features
Flowser explorer integration
Flowser is your graphical development inspection tool. You can run it using the CLI command: flow flowser which will run the tool and also take care of installing it. If Flowser is run in a project folder then it will automatically open with flow.json in the project.
> flow flowser
Read more about flowser on their website: https://flowser.dev or their GitHub: https://github.com/onflowser/flowser
(#693) @sideninja
🛠 Improvements
Version 0.41.3
⬆️ Install or Upgrade
Follow the Flow CLI installation guide for instructions on how to install or upgrade the CLI.
🛠 Improvements
- Add Dylan as code owner (#696) @sideninja
- Publish on new version tag (#690) @sideninja
- Create codeql.yml (#689) @Latkes
- Update version.txt (#681) @sideninja
- Add Sandbox Chain ID (#699) @sideninja
- Release process to two step (#694) @sideninja
- Create persisted global settings file (#687) @DylanTinianov
- Security code scanning (#684) @sideninja
- Remove deprecated flags and arguments (#682) @sideninja
- Remove contract name for add and update contract commands (#639) @DylanTinianov
Version 0.41.2
⬆️ Install or Upgrade
Follow the Flow CLI installation guide for instructions on how to install or upgrade the CLI.
🛠 Improvements
- Flag "--skip-check" added to explicitly avoid checking the latest version and doing extra network requests. This might be useful in cases where performance is important. (#673) @MaxStalker
- Write errors to standard error output. (#678) @bluesign
🐞 Bug Fixes
- Use provided ID to retrieve transaction result (#679) @sideninja
Version 0.41.1
⬆️ Install or Upgrade
Follow the Flow CLI installation guide for instructions on how to install or upgrade the CLI.
🛠 Improvements
- Update dependencies (#674) @sideninja
🐞 Bug Fixes
Version 0.41.0
⬆️ Install or Upgrade
Follow the Flow CLI installation guide for instructions on how to install or upgrade the CLI.
⭐ Features
Test runner
You can finally feel confident your Cadence code behaves! You are now able to run Cadence tests using the Flow CLI.
Here's an example of a Cadence test:
import Test
pub fun testSimpleScript() {
var blockchain = Test.newEmulatorBlockchain()
var result = blockchain.executeScript(
"pub fun main(a: Int, b: Int): Int { return a + b }",
[2, 3]
)
assert(result.status == Test.ResultStatus.succeeded)
assert((result.returnValue! as! Int) == 5)
}And then you can simply run it with:
> flow test test_script.cdc
Running tests...
Test results:
- PASS: testSimpleScript🛠 Improvements
- Update CD to go 1.19 (#666) @sideninja
Version 0.40.1
⬆️ Install or Upgrade
Follow the Flow CLI installation guide for instructions on how to install or upgrade the CLI.
🛠 Improvements
- Update to Cadence v0.27.0 and Emulator v0.37.0 (#664) @turbolent
Version 0.40.0
⬆️ Install or Upgrade
Follow the Flow CLI installation guide for instructions on how to install or upgrade the CLI.
⭐ Features
- Multiple
--signerflag support on signing transaction (#654) @bluesign - Warning when deploying standard contract to mainnet accidentally (#645) @bluesign
- Keys generate & derive cleanup, bip44 support for generating (#644) @bluesign
- BIP44 support for flow.json defined keys (#628) @bluesign
🛠 Improvements
- Update Dependencies flow-go-sdk, emulator and language server to latest versions (#653) @sideninja
- Update dev-wallet (#627) @gpavlov2016
- Update time output for block get (#643) @sukantoraymond
📖 Documentation
- Update create-accounts.md (#656) @a5chanda
- Remove deprecated workflow. (#647) @10thfloor
- Remove unused expression (#646) @10thfloor
- Update send signed link in docs (#634) @sukantoraymond
Version 0.39.3
⬆️ Install or Upgrade
Follow the Flow CLI installation guide for instructions on how to install or upgrade the CLI.
🛠 Improvements
- Add mixpanel to emulator (#633) @sukantoraymond
