Skip to content

Commit 24a0fcf

Browse files
author
yihuang
authored
Problem: cometbft not up to date (#1736)
* Problem: cometbft not up to date * changelog * bump version
1 parent 65f7de9 commit 24a0fcf

File tree

8 files changed

+25
-17
lines changed

8 files changed

+25
-17
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Run build
4343
run: ./scripts/release.sh
4444
if: steps.changed-files.outputs.any_changed == 'true'
45-
- uses: actions/upload-artifact@v3
45+
- uses: actions/upload-artifact@v4
4646
with:
4747
name: "cronosd-tarball-${{ matrix.os }}"
4848
path: "*.tar.gz"
@@ -118,7 +118,7 @@ jobs:
118118
set +e
119119
(git diff --no-ext-diff --exit-code)
120120
echo "name=changed::$?" >> $GITHUB_OUTPUT
121-
- uses: actions/upload-artifact@v3
121+
- uses: actions/upload-artifact@v4
122122
if: steps.changes.outputs.changed == 1
123123
with:
124124
name: gomod2nix.toml
@@ -161,7 +161,7 @@ jobs:
161161
set +e
162162
(git diff --no-ext-diff --exit-code)
163163
echo "name=changed::$?" >> $GITHUB_OUTPUT
164-
- uses: actions/upload-artifact@v3
164+
- uses: actions/upload-artifact@v4
165165
if: steps.changes.outputs.changed == 1
166166
with:
167167
name: contracts_out

.github/workflows/sims.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
echo ${{ job.status }} > status_build.txt
121121
- name: Upload file status_build.txt as an artifact
122122
if: github.event_name == 'issue_comment'
123-
uses: actions/upload-artifact@v3
123+
uses: actions/upload-artifact@v4
124124
with:
125125
name: pass_status_build
126126
path: status_build.txt
@@ -146,7 +146,7 @@ jobs:
146146
echo ${{ job.status }} > status_install.txt
147147
- name: Upload file status_install.txt as an artifact
148148
if: github.event_name == 'issue_comment'
149-
uses: actions/upload-artifact@v3
149+
uses: actions/upload-artifact@v4
150150
with:
151151
name: pass_status_install
152152
path: status_install.txt
@@ -202,7 +202,7 @@ jobs:
202202
echo ${{ job.status }} > status_sim1.txt
203203
- name: Upload file status_sim1.txt as an artifact
204204
if: github.event_name == 'issue_comment'
205-
uses: actions/upload-artifact@v3
205+
uses: actions/upload-artifact@v4
206206
with:
207207
name: pass_status_sim1
208208
path: status_sim1.txt
@@ -258,7 +258,7 @@ jobs:
258258
echo ${{ job.status }} > status_sim2.txt
259259
- name: Upload file status_sim2.txt as an artifact
260260
if: github.event_name == 'issue_comment'
261-
uses: actions/upload-artifact@v3
261+
uses: actions/upload-artifact@v4
262262
with:
263263
name: pass_status_sim2
264264
path: status_sim2.txt
@@ -314,7 +314,7 @@ jobs:
314314
echo ${{ job.status }} > status_sim3.txt
315315
- name: Upload file status_sim3.txt as an artifact
316316
if: github.event_name == 'issue_comment'
317-
uses: actions/upload-artifact@v3
317+
uses: actions/upload-artifact@v4
318318
with:
319319
name: pass_status_sim3
320320
path: status_sim3.txt
@@ -370,7 +370,7 @@ jobs:
370370
echo ${{ job.status }} > status_sim4.txt
371371
- name: Upload file status_sim4.txt as an artifact
372372
if: github.event_name == 'issue_comment'
373-
uses: actions/upload-artifact@v3
373+
uses: actions/upload-artifact@v4
374374
with:
375375
name: pass_status_sim4
376376
path: status_sim4.txt

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: 'Tar debug files'
5656
if: failure()
5757
run: tar cfz debug_files.tar.gz -C "${TMPDIR-/tmp}/pytest-of-runner" .
58-
- uses: actions/upload-artifact@v3
58+
- uses: actions/upload-artifact@v4
5959
if: failure()
6060
with:
6161
name: debug-files

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
*Feb 3, 2025*
4+
5+
## v1.4.3
6+
7+
### Bug Fixes
8+
9+
* [#1736](https://github.com/crypto-org-chain/cronos/pull/1736) Update cometbft to v0.38.17.
10+
311
*Dec 19, 2024*
412

513
## v1.4.2

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
nativeByteOrder ? true, # nativeByteOrder mode will panic on big endian machines
1313
}:
1414
let
15-
version = "v1.4.2";
15+
version = "v1.4.3";
1616
pname = "cronosd";
1717
tags = [
1818
"ledger"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ replace (
266266
// Use cosmos keyring
267267
github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0
268268
// v0.38.x
269-
github.com/cometbft/cometbft => github.com/crypto-org-chain/cometbft v0.0.0-20241106091515-ce418f845d9a
269+
github.com/cometbft/cometbft => github.com/crypto-org-chain/cometbft v0.0.0-20250203071505-1964da4a0cac
270270
// dgrijalva/jwt-go is deprecated and doesn't receive security updates.
271271
// TODO: remove it: https://github.com/cosmos/cosmos-sdk/issues/13134
272272
github.com/dgrijalva/jwt-go => github.com/golang-jwt/jwt/v4 v4.4.2

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -420,8 +420,8 @@ github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7Do
420420
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
421421
github.com/crypto-org-chain/btree v0.0.0-20240406140148-2687063b042c h1:MOgfS4+FBB8cMkDE2j2VBVsbY+HCkPIu0YsJ/9bbGeQ=
422422
github.com/crypto-org-chain/btree v0.0.0-20240406140148-2687063b042c/go.mod h1:twD9XRA5jj9VUQGELzDO4HPQTNJsoWWfYEL+EUQ2cKY=
423-
github.com/crypto-org-chain/cometbft v0.0.0-20241106091515-ce418f845d9a h1:0EN1TkzHTAxpgpGaZJY3G7L4jf4+sYnI7FOmBFLCg4U=
424-
github.com/crypto-org-chain/cometbft v0.0.0-20241106091515-ce418f845d9a/go.mod h1:khbgmtxbgwJfMqDmnGY4rl2sQpTdzpPb1f9nqnfpy1o=
423+
github.com/crypto-org-chain/cometbft v0.0.0-20250203071505-1964da4a0cac h1:o09a/x43av8lYlJ0c8ChRU11iGYyqMvbeOz7skV6f6Y=
424+
github.com/crypto-org-chain/cometbft v0.0.0-20250203071505-1964da4a0cac/go.mod h1:khbgmtxbgwJfMqDmnGY4rl2sQpTdzpPb1f9nqnfpy1o=
425425
github.com/crypto-org-chain/cosmos-sdk v0.43.0-beta1.0.20241217090828-cfbca9fe8254 h1:qmTKLerKyvXGxIt4lThZ9QPpZYw9w8e4Bm36CNPI5S8=
426426
github.com/crypto-org-chain/cosmos-sdk v0.43.0-beta1.0.20241217090828-cfbca9fe8254/go.mod h1:JwwsMeZldLN20b72mmbWPY0EV9rs+v/12hRu1JFttvY=
427427
github.com/crypto-org-chain/cosmos-sdk/store v0.0.0-20241217090828-cfbca9fe8254 h1:NEgy0r3otU/O+0OAjMdEhbn4VotQlg+98hHbD7M23wU=

gomod2nix.toml

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)