Skip to content

Commit

Permalink
Merge branch 'rc/v0.111.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
doitian committed Sep 14, 2023
2 parents 4012680 + aaa5158 commit f41549f
Show file tree
Hide file tree
Showing 361 changed files with 9,772 additions and 4,216 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ jobs:
name: Backport
steps:
- name: Create Reminder for cherry-pick and assign it to pr author
env:
TITLE: ${{ github.event.pull_request.title }}
run: |
HTTP_RESPONSE=`curl -v -X "POST" "https://api.github.com/repos/${{ github.repository }}/issues" \
-H "Authorization: token ${{ secrets.REPO_ACCESS_TOKEN }}" \
-H "Content-Type: text/plain; charset=utf-8" \
--write-out "%{http_code}\n"\
-o /dev/null\
-d $'{
"title": "Backport #${{ github.event.number }} ${{ github.event.pull_request.title }}",
-d '{
"title": "Backport #${{ github.event.number }} '"$TITLE"'",
"body": "#${{ github.event.number }}",
"assignees": [
"${{ github.event.pull_request.user.login }}"
Expand All @@ -33,8 +35,8 @@ jobs:
-H "Content-Type: text/plain; charset=utf-8" \
--write-out "%{http_code}\n"\
-o /dev/null\
-d $'{
"title": "Backport #${{ github.event.number }} ${{ github.event.pull_request.title }}",
-d '{
"title": "Backport #${{ github.event.number }} '"$TITLE"'",
"body": "#${{ github.event.number }}",
"labels": [
"s:backport-needed"
Expand Down
15 changes: 0 additions & 15 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,23 +62,8 @@ jobs:
- name: Set test state when benchmark failed.
if: ${{ failure() }}
run: echo "GITHUB_RUN_STATE=1" >> $GITHUB_ENV
- name: insert report to postgres
if: ${{ always() }}
env:
JOB_ID: "benchmark-${{ github.repository_owner }}-${{ github.ref_name }}-${{ steps.date.outputs.date }}-in-10h"
PGHOST: ${{ secrets.PGHOST }}
PGPORT: ${{ secrets.PGPORT }}
PGUSER: ${{ secrets.PGUSER }}
PGPASSWORD: ${{ secrets.PGPASSWORD }}
PGDATABASE: ckbtest
run: |
[ -z "${PGHOST}" ] || ./ckb-bench/devtools/ci/script/benchmark.sh insert_report_to_postgres
- name: Clean Up
if: ${{ always() }}
env:
JOB_ID: "benchmark-${{ github.repository_owner }}-${{ github.ref_name }}-${{ steps.date.outputs.date }}-in-10h"
run: ./ckb-bench/devtools/ci/script/benchmark.sh clean
- uses: actions/upload-artifact@v2
with:
name: ckb-bench.log
path: ${{ env.ANSIBLE_DIR }}/ckb-bench.log
2 changes: 1 addition & 1 deletion .github/workflows/ci_integration_tests_ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
- uses: actions/checkout@v3
- name: build ckb and run bats cli test
run: |
make build
make prod
make cli-test
shell: bash
env:
Expand Down
2 changes: 1 addition & 1 deletion .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.4.0
CKB_CLI_VERSION: v1.5.0

jobs:
create-release:
Expand Down
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
# [v0.111.0](https://github.com/nervosnetwork/ckb/compare/v0.110.2...v0.111.0) (2023-09-14)

### Features

- #3917 **consensus: (BREAKING)** CKB 2023 edition (@zhangsoledad)
- #3963 **rpc(Chain):** Add `only_committed` param for `get_transaction` (@eval-exec)
- #3980 **rpc: (BREAKING)** Set `jsonrpc::Ratio` as the type of `threshold` field for `DeploymentsInfo` and `Deployment` (@eval-exec)
- #3988: Update ckb-vm to v0.24.0 (@mohanson)
- #3996: Suspend support in spawn syscalls (@xxuejie)
- #4002: Let crate `ckb-hash` support `no-std` (@yangby-cryptape)
- #4097 **consensus: (BREAKING)** `epoch_duration_target` now affects epoch length in `Dummy` mode (@eval-exec)
- #4126: Notify dummy miner for new work (@quake)

### Improvements

- #3970 **perf:** Replace sync struct HeaderView with HeaderIndexView (@quake)
- #4000: Reduce `PeerStore::load_from_dir_or_default` timecost (@eval-exec)
- #4003: Derive implements Clone for cell (@liya2017)
- #4073: Split ckb-gen-types from ckb-types (@EthanYuan)
- #4123 **script(spawn):** Calucate the correct cycles_base (@mohanson)
- #4127 **scripts(spawn):** Always consume extra_cycles (@mohanson)
- #4129: Fix parse `RelayV3`'s message name for metrics service (@eval-exec)
- #4133: Keep peer store address unique (@driftluo)

### Bug Fixes

- #4011 **scripts:** `set_debug_printer` should updates generator's `debug_printer` (@mohanson)
- #4012 **cli: (BREAKING)** `ckb init` creates config files even when an unsupported spec is specified. (@eval-exec)
- #4015 Fix permanent difficulty mode reward (@zhangsoledad)
- #4030 Fix RUSTSEC-2023-0044 warning (@eval-exec)
- #4151: Add `derive(Hash)` to `ScriptHashType` (@eval-exec)

# [v0.110.2](https://github.com/nervosnetwork/ckb/compare/v0.110.1...v0.110.2) (2023-09-11)

### Features
Expand Down
Loading

0 comments on commit f41549f

Please sign in to comment.