Skip to content

Commit 192097e

Browse files
committed
Merge branch 'develop' into fix/health-v3-use-canonical-stacks-height-header
2 parents 8076ce1 + 40825cc commit 192097e

File tree

129 files changed

+8133
-3177
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+8133
-3177
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@
2020
- [ ] Changelog is updated
2121
- [ ] Required documentation changes (e.g., `docs/rpc/openapi.yaml` and `rpc-endpoints.md` for v2 endpoints, `event-dispatcher.md` for new events)
2222
- [ ] New clarity functions have corresponding PR in `clarity-benchmarking` repo
23-
- [ ] New integration test(s) added to `bitcoin-tests.yml`

.github/workflows/bitcoin-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ jobs:
5858
exclude:
5959
# The following tests are excluded from CI runs. Some of these may be
6060
# worth investigating adding back into the CI
61-
- test-name: tests::bitcoin_regtest::bitcoind_integration_test_segwit
6261
- test-name: tests::nakamoto_integrations::consensus_hash_event_dispatcher
6362
- test-name: tests::neon_integrations::atlas_integration_test
6463
- test-name: tests::neon_integrations::atlas_stress_integration_test

.github/workflows/cargo-hack-check.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,3 +116,24 @@ jobs:
116116

117117
- name: Run cargo hack check
118118
run: ${{ matrix.command }}
119+
120+
fuzz-targets:
121+
name: Fuzz targets (nightly)
122+
runs-on: ubuntu-latest
123+
steps:
124+
- name: Checkout
125+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
126+
with:
127+
persist-credentials: false
128+
129+
- name: Install Rust nightly toolchain
130+
uses: actions-rust-lang/setup-rust-toolchain@fb51252c7ba57d633bc668f941da052e410add48 # v1.13.0
131+
with:
132+
toolchain: nightly
133+
134+
- name: Check fuzz targets
135+
run: |
136+
cargo +nightly check \
137+
--manifest-path clarity/fuzz/Cargo.toml \
138+
--bins \
139+
--locked

.github/workflows/github-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
- arch: macos # excludes macos-armv7
9292
cpu: armv7
9393
- arch: macos # excludes macos-x64
94-
cpu: x86_64
94+
cpu: x86-64
9595
steps:
9696
- name: Build Binary (${{ matrix.arch }}_${{ matrix.cpu }})
9797
uses: stacks-network/actions/stacks-core/release/create-source-binary@main

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to the versioning scheme outlined in the [README.md](RE
77

88
## Unreleased
99

10+
### Added
11+
12+
- When determining a global transaction replay set, the state evaluator now uses a longest-common-prefix algorithm to find a replay set in the case where a single replay set has less than 70% of signer weight.
13+
14+
## [3.2.0.0.1]
15+
### Added
16+
17+
- Adds node-config-docsgen to automatically create config documentation (#6227)
18+
1019
### Fixed
1120

1221
- Fixed a typo in the metrics_identifier route from `/v2/stackedb/:principal/:contract_name/replicas` to `/v2/stackerdb/:principal/:contract_name/replicas`. Note: This may be a breaking change for systems relying on the incorrect route. Please update any metrics tools accordingly.

Cargo.lock

Lines changed: 0 additions & 86 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ members = [
1111
"libsigner",
1212
"stacks-signer",
1313
"stacks-node",
14-
"contrib/tools/config-docs-generator"]
14+
]
15+
16+
exclude = ["contrib/tools/config-docs-generator"]
1517

1618
# Dependencies we want to keep the same between workspace members
1719
[workspace.dependencies]

0 commit comments

Comments
 (0)