Skip to content

Commit

Permalink
Merge branch 'rc/v0.113.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
doitian committed Jan 10, 2024
2 parents cab1dfb + 82871a3 commit 837ccad
Show file tree
Hide file tree
Showing 262 changed files with 5,868 additions and 3,860 deletions.
4 changes: 2 additions & 2 deletions .github/actions/ci_prologue/ci_prologue.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fun_pasing_message(){
if [ $? -eq 0 ]; then
job_run_list=`echo "${MESSAGE}"| grep "ci-runs-only" | awk -F ':' '{print $2}'`
else
job_run_list=" [ quick_checks,unit_tests,integration_tests,benchmarks,linters,wasm_build,cargo_deny,aarch64_build ] "
job_run_list=" [ quick_checks,unit_tests,integration_tests,benchmarks,linters,cargo_deny,aarch64_build ] "
fi
echo "job_run_list is ""$job_run_list"
#parsing runs os
Expand Down Expand Up @@ -103,7 +103,7 @@ if [[ $GITHUB_EVENT_NAME == "pull_request" ]];then
else
runs_on=" [ ubuntu,macos,windows ] "
fun_run_os "$runs_on"
job_run_list=" [ quick_checks,unit_tests,integration_tests,benchmarks,linters,wasm_build,cargo_deny,aarch64_build ] "
job_run_list=" [ quick_checks,unit_tests,integration_tests,benchmarks,linters,cargo_deny,aarch64_build ] "
fun_jobs "$job_run_list"
if [[ "$GITHUB_REPOSITORY" == "nervosnetwork/ckb" ]];then
echo "linux_runner_label=self-hosted-ci-ubuntu-20.04" >> $GITHUB_OUTPUT
Expand Down
68 changes: 0 additions & 68 deletions .github/workflows/ci_wasm_build_ubuntu.yaml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
CKB_CLI_VERSION: v1.5.0
CKB_CLI_VERSION: v1.6.0

jobs:
create-release:
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
name: ckb_${{env.GIT_TAG_NAME }}_${{env.REL_PKG }}.asc
path: ckb_${{env.GIT_TAG_NAME }}_${{env.REL_PKG }}.asc
env:
BUILDER_IMAGE: nervos/ckb-docker-builder:bionic-rust-1.67.1
BUILDER_IMAGE: nervos/ckb-docker-builder:bionic-rust-1.71.1
REL_PKG: ${{ matrix.rel_pkg }}

package-for-linux-aarch64:
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
name: ckb_${{env.GIT_TAG_NAME }}_${{env.REL_PKG }}.asc
path: ckb_${{env.GIT_TAG_NAME }}_${{env.REL_PKG }}.asc
env:
BUILDER_IMAGE: nervos/ckb-docker-builder:centos-7-rust-1.67.1
BUILDER_IMAGE: nervos/ckb-docker-builder:centos-7-rust-1.71.1
REL_PKG: ${{ matrix.rel_pkg }}

package-for-mac:
Expand Down
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# CHANGELOG

## [v0.113.0](https://github.com/nervosnetwork/ckb/compare/v0.112.1...v0.113.0) (2024-01-09)

### Features

- #4185: Tweak `SendBlocksProof` message to support ckb2023 (@quake)

### Bug Fixes

- #4192: Incorrect and inadequate checks of sync message (@yangby-cryptape)
- #4199: Fix orphan pool for long pending tx issues (@chenyukang)
- #4221: Fix typos (@xiaolou86)
- #4218: Fix VM version select (@driftluo)

This is a breaking change: b:consensus

- #4255: No chain_root in 1st block of the MMR activated epoch (@yangby-cryptape)
- #4258: Fix concurrency issue for RBF (@chenyukang)
- #4270: Resolve empty filter related message bug (@quake)

### Improvements

- #4191: Tuning rocksdb bloom filter (@quake)
- #4203: Persistence softfork cache (@zhangsoledad)
- #4235: Move `util/launcher/src/migrate.rs` to an independent crate (@eval-exec)
- #4236: Break `ckb-launcher` and `ckb-chain`'s cycle dependency by moving `SharedPackage` and `SharedBuilder` from `ckb-launcher` to `ckb-shared` (@eval-exec)
- #4170: Use jsonrpc-utils to replace jsonrpc (@chenyukang)

This is a breaking change: b:rpc

- #4256: Add aarch64 docker image for ckb (@chenyukang)
- #4288: `get_pool_tx_detail_info`: Change `score_sortkey`'s type from `String` to `struct AncestorsScoreSortKey`

This is a breaking change: b:rpc

## [v0.112.1](https://github.com/nervosnetwork/ckb/compare/v0.111.0...v0.112.1) (2023-11-14)

### Features
Expand Down
Loading

0 comments on commit 837ccad

Please sign in to comment.