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

fix(deps): update rust crate ckb-jsonrpc-types to v0.121.0 #107

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 19, 2022

This PR contains the following updates:

Package Type Update Change
ckb-jsonrpc-types dependencies minor =0.108.0 -> =0.121.0

Release Notes

nervosnetwork/ckb (ckb-jsonrpc-types)

v0.121.0: ckb 0.121.0 (45e4c67 2025-01-22)

Compare Source

Highlights

This update brings several enhancements aimed at improving the performance and usability of the network.

Compatibility Table
Network Consensus Version Minimal CKB Version
dev ckb2023 since epoch 0
preview ckb2023 since epoch 0 v0.119.0
testnet ckb2023 since epoch 9690 v0.119.0
mainnet ckb2021 since epoch 5414 v0.103.0

See how to connect to various chains in Wiki.

Default assume valid target
Downloads
OS Arch Runtime Dependencies Package Sign
macOS x64 macOS 10.15 or above zip PGP
macOS (Portable) x64 macOS 10.15 or above zip PGP
macOS ARM64 macOS 10.15 or above zip PGP
macOS (Portable) ARM64 macOS 10.15 or above zip PGP
Linux x64 glibc, libstdc++ tarball PGP
Linux (Portable) x64 glibc, libstdc++ tarball PGP
CentOS x64 glibc, libstdc++ tarball PGP
CentOS (Portable) x64 glibc, libstdc++ tarball PGP
Windows x64 VC++ Redistributable zip PGP
Linux ARM64 glibc, libstdc++ tarball PGP
Docker dockerhub

Deprecation Notice: CentOS has reached its EOL, we will stop providing CentOS binaries in the future. Please use other platforms or build from source.

The .asc files are signatures. It is wise and more secure to check out for the files integrity.

Try the portable variants if the binaries complains about illegal instructions.

Changes since v0.120.0

Compare changes in GitHub

Improvements

v0.120.0

Compare Source

Features
Bug Fixes
Improvements

v0.119.0

Compare Source

Features
  • #​4635: Intro preview chain (@​zhangsoledad)

    Introduces a new chain operation to provide a preview environment for the upcoming hardfork on the Nervos CKB network. The new chain allows users and developers to test and review the hardfork changes before they are officially deployed on the mainnet, ensuring all updates and features are thoroughly validated. This preview chain helps improve the security and reliability of the hard fork process, minimizing potential risks before the main deployment.

Bug Fixes
Improvements

v0.118.0

Compare Source

Features
  • #​4365: Asynchronous Block Download and Verification (@​eval-exec)

    This PR introduces several enhancements to the CKB Synchronizer to reduce synchronization time
    during the initial block download (IBD) phase. Key changes include:

    1. Asynchronous Operations: The Synchronizer sliding window movement is now decoupled from the block verification process in the ChainService, allowing asynchronous handling. This improves the efficiency of block requests and verification.
    2. Changes to sync_state RPC:
      • Added tip_hash and tip_number to represent the current chain tip.
      • Added unverified_tip_hash and unverified_tip_number to track the latest received but not yet verified blocks.
      • Removed the orphan_blocks_size field.
    3. Log Format Update: The format of CKB logs has been updated, specifically changing the prefix and content of log entries to provide clearer and more structured information.

    These updates lead to a more efficient synchronization process, reducing the overall time
    required for IBD. Note that removing the orphan_blocks_size field constitutes a BREAKING CHANGE
    in the sync_state RPC.

  • #​4380: New spawn with scheduler (@​mohanson)

    This change is only available in the next version of CKB consensus rules.

    In this PR, we refactored the implementation of spawn. The refactored syscall API is defined as follows: https://github.com/XuJiandong/ckb-c-stdlib/blob/syscall-spawn/ckb_syscall_apis.h#L54-L68.

    Review Introduction: #​4380 (comment)

    Documentation: nervosnetwork/rfcs#436

  • #​4291: New script verify with ckb-vm pause (@​chenyukang)

    1. Use a job queue for pending transactions waiting for verifying
    2. Multiple workers trigger the verification process by picking task from queue
    3. Verification is changed to async style
    4. Use channel to resume/suspend vm
    5. No snapshot from VM machines
    6. No Suspend state from cache
    7. All transactions from remote peer will be added into queue
Bug Fixes
Improvements

v0.117.0

Compare Source

v0.116.1

Features
  • #​4433: Add PoolRpc::test_tx_pool_accept, check if the transaction can be accepted by TxPool (@​eval-exec)
Bug Fixes
  • #​4405: Fix default ckb.toml's [notifier] to [notify] (@​eval-exec)

    This is a breaking change in the config file format.

Improvements

v0.115.0

Compare Source

Features
Bug Fixes
Improvements

v0.114.0

Compare Source

Features
Bug Fixes

v0.113.1

Compare Source

Bug Fixes

v0.113.0

Compare Source

Features
Bug Fixes
Improvements

v0.112.1

Features
Bug Fixes
Improvements

v0.111.0

Compare Source

Features
Improvements
Bug Fixes

v0.110.2

Compare Source

Features
Bug Fixes

v0.110.1

Compare Source

BREAKING: Light Client Protocol Softfork Activation in Mainnet

Field Value Note
start 8,282 2023/09/01 00:00:00 utc
timeout 8,552 8,282 + 270
min_activation_epoch 8,648 2023/11/01 00:00:00 utc
threshold 80%

v0.110.0

Compare Source

Features
  • #​3949 rpc: (BREAKING) Add time_added_to_pool field for ChainRpcImpl::get_transaction (@​eval-exec)
Bug Fixes

v0.109.0

Compare Source

Features
  • #​3927 cli: (BREAKING) Remove ckb db-repair subcommand (@​zhangsoledad)

  • #​3772 rpc: (BREAKING) Add soft-fork deployment since info in RPC (@​zhangsoledad)

    The response schema has changed in the RPC get_deployments_info and get_consensus.

  • #​3842: Add exact search mode (@​quake)

  • #​3859: Add flatmemory feature for FlatMemory based machine types (@​xxuejie)

    This change adds a new flatmemory feature to ckb-script, which will use FlatMemory as the memory type for
    CoreMachine/CoreMachineType. While this is not gonna be used in CKB, a FlatMemory will be quite useful in the development of surrounding tools, including ckb-debugger. Note that one option is that a debugger could maintain its own ckb-script package, but considering the fact that the change here is rather small, I would suggest we include this here feature in CKB.

  • #​3752: Thread-safe vm (@​zhangsoledad)

Bug Fixes
Improvements

v0.108.1

Compare Source

Bug Fixes
Misc

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 15bac99 to ed1dd43 Compare September 7, 2022 14:42
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to >=0.104.0 fix(deps): update rust crate ckb-jsonrpc-types to >=0.104.1 Sep 7, 2022
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from ed1dd43 to aef9429 Compare October 25, 2022 04:35
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to >=0.104.1 fix(deps): update rust crate ckb-jsonrpc-types to >=0.105.0 Oct 25, 2022
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from aef9429 to c1c80b0 Compare October 31, 2022 03:40
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to >=0.105.0 fix(deps): update rust crate ckb-jsonrpc-types to >=0.105.1 Oct 31, 2022
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from c1c80b0 to a904d81 Compare December 10, 2022 08:00
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to >=0.105.1 Update Rust crate ckb-jsonrpc-types to >=0.105.1 Dec 17, 2022
@renovate renovate bot changed the title Update Rust crate ckb-jsonrpc-types to >=0.105.1 fix(deps): update rust crate ckb-jsonrpc-types to >=0.105.1 Dec 17, 2022
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from a904d81 to 73a406c Compare December 23, 2022 12:53
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to >=0.105.1 fix(deps): update rust crate ckb-jsonrpc-types to >=0.106.0 Dec 23, 2022
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 73a406c to e71463f Compare January 30, 2023 12:28
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to >=0.106.0 fix(deps): update rust crate ckb-jsonrpc-types to >=0.107.0 Jan 30, 2023
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from e71463f to 3c18beb Compare March 6, 2023 06:02
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to >=0.107.0 fix(deps): update rust crate ckb-jsonrpc-types to >=0.108.0 Mar 6, 2023
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 3c18beb to fb0a687 Compare March 7, 2023 11:17
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from fb0a687 to 29d5f8a Compare April 4, 2023 07:04
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to >=0.108.0 fix(deps): update rust crate ckb-jsonrpc-types to >=0.108.1 Apr 4, 2023
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 29d5f8a to be0fb4f Compare April 19, 2023 02:02
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to >=0.108.1 fix(deps): update rust crate ckb-jsonrpc-types to >=0.109.0 Apr 19, 2023
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from be0fb4f to 557f1a5 Compare May 16, 2023 05:57
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to >=0.109.0 fix(deps): update rust crate ckb-jsonrpc-types to >=0.110.0 May 16, 2023
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 557f1a5 to 8ecd0a9 Compare June 13, 2023 06:44
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to >=0.110.0 fix(deps): update rust crate ckb-jsonrpc-types to v0.110.0 Jun 13, 2023
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 8ecd0a9 to f4dee96 Compare August 20, 2023 04:43
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to v0.110.0 fix(deps): update rust crate ckb-jsonrpc-types to v0.110.1 Aug 20, 2023
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from f4dee96 to 6c5e0b5 Compare September 1, 2023 02:36
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 6c5e0b5 to 43c5f10 Compare September 11, 2023 10:46
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to v0.110.1 fix(deps): update rust crate ckb-jsonrpc-types to v0.110.2 Sep 11, 2023
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 43c5f10 to 66d3b2e Compare September 14, 2023 08:12
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from e02daab to 82af2c9 Compare November 14, 2023 04:14
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to v0.111.0 fix(deps): update rust crate ckb-jsonrpc-types to v0.112.0 Nov 14, 2023
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 82af2c9 to baf7bbc Compare November 21, 2023 07:35
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to v0.112.0 fix(deps): update rust crate ckb-jsonrpc-types to v0.112.1 Nov 21, 2023
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from baf7bbc to d0de373 Compare January 9, 2024 10:31
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to v0.112.1 fix(deps): update rust crate ckb-jsonrpc-types to v0.113.0 Jan 9, 2024
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from d0de373 to a615961 Compare January 31, 2024 11:15
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to v0.113.0 fix(deps): update rust crate ckb-jsonrpc-types to v0.113.1 Jan 31, 2024
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from a615961 to 8767be2 Compare February 29, 2024 09:13
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to v0.113.1 fix(deps): update rust crate ckb-jsonrpc-types to v0.114.0 Feb 29, 2024
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 8767be2 to 0a6a8d5 Compare April 1, 2024 03:18
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to v0.114.0 fix(deps): update rust crate ckb-jsonrpc-types to v0.115.0 Apr 1, 2024
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 0a6a8d5 to 08db437 Compare May 6, 2024 04:17
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to v0.115.0 fix(deps): update rust crate ckb-jsonrpc-types to v0.116.0 May 6, 2024
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 08db437 to 3bab403 Compare May 7, 2024 00:33
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to v0.116.0 fix(deps): update rust crate ckb-jsonrpc-types to v0.115.0 May 7, 2024
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 3bab403 to 3f10965 Compare May 11, 2024 05:32
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to v0.115.0 fix(deps): update rust crate ckb-jsonrpc-types to v0.116.1 May 11, 2024
Copy link
Contributor Author

renovate bot commented May 11, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package [email protected] --precise 0.121.0
    Updating crates.io index
error: failed to select a version for the requirement `ckb-jsonrpc-types = "=0.108.0"`
candidate versions found which didn't match: 0.121.0
location searched: crates.io index
required by package `ckb-sdk v2.5.0`
    ... which satisfies dependency `ckb-sdk = "^2.5.0"` (locked to 2.5.0) of package `cota-aggregator v0.13.1 (/tmp/renovate/repos/github/nervina-labs/cota-aggregator)`

@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 3f10965 to 02f9630 Compare July 29, 2024 04:28
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to v0.116.1 fix(deps): update rust crate ckb-jsonrpc-types to v0.117.0 Jul 29, 2024
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 02f9630 to e9d63f4 Compare September 18, 2024 04:16
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to v0.117.0 fix(deps): update rust crate ckb-jsonrpc-types to v0.118.0 Sep 18, 2024
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from e9d63f4 to 65867e1 Compare October 25, 2024 06:46
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to v0.118.0 fix(deps): update rust crate ckb-jsonrpc-types to v0.119.0 Oct 25, 2024
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 65867e1 to 7d3679e Compare December 11, 2024 04:24
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to v0.119.0 fix(deps): update rust crate ckb-jsonrpc-types to v0.120.0 Dec 11, 2024
@renovate renovate bot force-pushed the renovate/ckb-jsonrpc-types-0.x branch from 7d3679e to 116463b Compare January 22, 2025 05:46
@renovate renovate bot changed the title fix(deps): update rust crate ckb-jsonrpc-types to v0.120.0 fix(deps): update rust crate ckb-jsonrpc-types to v0.121.0 Jan 22, 2025
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.

0 participants