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

Chore: Merge master -> develop #3627

Merged
merged 34 commits into from
Mar 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
f0ed1b9
Merge pull request #3567 from stacks-network/develop
jcnelson Feb 17, 2023
58a376f
chore: delete circle.yml
diwakergupta Feb 22, 2023
0910326
Merge pull request #3583 from stacks-network/chore/circleci
diwakergupta Feb 23, 2023
5a46817
fix: Exclude benchmarks from compilation
stjepangolemac Feb 24, 2023
9800e7e
fix: Resolve conflicts and the remaining two errors
stjepangolemac Feb 24, 2023
24d064f
clean: remove benchmark files
stjepangolemac Feb 27, 2023
bb43fc1
fix: don't assume that the bitcoin node always gives a non-zero numbe…
jcnelson Feb 27, 2023
7638dfc
Merge branch 'master' into fix/3588
jcnelson Feb 28, 2023
07e7a61
Merge pull request #3585 from stacks-network/3584-benchmarks-are-not-…
igorsyl Mar 1, 2023
5c57dbf
Merge branch 'master' into fix/3588
jcnelson Mar 1, 2023
ebce622
fix: add unit test and change log entry
jcnelson Mar 1, 2023
b4b6975
Merge branch 'fix/3588' of https://github.com/stacks-network/stacks-b…
jcnelson Mar 1, 2023
8043038
fix: use explicit version number
jcnelson Mar 1, 2023
a0c1f9e
Merge pull request #3589 from stacks-network/fix/3588
jcnelson Mar 1, 2023
58cc729
fix: always_use_affirmation_maps defaults to false
jcnelson Mar 4, 2023
9f7a650
fix: update changelog
jcnelson Mar 4, 2023
c1a2c2e
Merge pull request #3603 from stacks-network/fix/always-use-affirmati…
jcnelson Mar 7, 2023
753aa1a
chore: update default seed nodes and example config files
CharlieC3 Mar 14, 2023
ffccbd7
fix(deps): only depend on one version of secp256k1
fpbgg Mar 14, 2023
91173a2
fix: don't panic if a bloom counter underflows
jcnelson Mar 14, 2023
1ebd2a0
Merge pull request #3611 from stacks-network/chore/update-seeds
kantai Mar 14, 2023
f6a48d0
fix: reduce chain-liveness poll frequency
kantai Mar 14, 2023
6ccadda
chore: update changelog
kantai Mar 14, 2023
bfa941e
Merge pull request #3610 from stacks-network/fix/chain-liveness-poll
kantai Mar 14, 2023
15c28b4
Merge branch 'master' into fix/3599
kantai Mar 14, 2023
d69012e
Merge pull request #3614 from stacks-network/fix/3599
kantai Mar 15, 2023
69778f0
Merge branch 'master' into feat/fix-deps
jcnelson Mar 17, 2023
ac35cde
fix: incorporate unlocks in mempool admitter, #3623
kantai Mar 20, 2023
2cd3dd0
test: add regression test for mempool unlock handling #3623
kantai Mar 20, 2023
aa5f167
chore: add changelog entry
kantai Mar 20, 2023
a3feafd
Merge pull request #3624 from stacks-network/fix/mempool-unlocks-3623
kantai Mar 20, 2023
dca3947
Merge branch 'master' into feat/fix-deps
jcnelson Mar 20, 2023
4852d64
Merge pull request #3613 from stacks-network/feat/fix-deps
jcnelson Mar 21, 2023
e0de91f
Merge remote-tracking branch 'origin/master' into merge/master-develop
kantai Mar 21, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,29 @@ and this project adheres to the versioning scheme outlined in the [README.md](RE
runtime error and include details about the error in the `vm_error` field of
the receipt. Fixes issues #3154, #3328.

## [2.1.0.0.2]

This software update is a hotfix to resolve improper unlock handling
in mempool admission. This release's chainstate directory is
compatible with chainstate directories from 2.1.0.0.2.

### Fixed

- Fix mempool admission logic's improper handling of PoX unlocks. This would
cause users to get spurious `NotEnoughFunds` rejections when trying to submit
their transactions (#3623)

## [2.1.0.0.1]

### Fixed

- Handle the case where a bitcoin node returns zero headers (#3588)
- The default value for `always_use_affirmation_maps` is now set to `false`,
instead of `true`. This was preventing testnet nodes from reaching the chain
tip with the default configuration.
- Reduce default poll time of the `chain-liveness` thread which reduces the
possibility that a miner thread will get interrupted (#3610).

## [2.1]

This is a **consensus-breaking** release that introduces a _lot_ of new
Expand Down
Loading