Skip to content

Commit 8351234

Browse files
authored
Merge branch 'master' into fix_infinite_expand
2 parents f1940eb + 02f11ed commit 8351234

Some content is hidden

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

56 files changed

+921
-342
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,8 @@ jobs:
152152
args: -p fuel-core-chain-config --target wasm32-unknown-unknown --no-default-features
153153
- command: check
154154
args: -p fuel-core-executor --target wasm32-unknown-unknown --no-default-features --features alloc
155+
- command: check
156+
args: -p fuel-core --no-default-features
155157
fail-fast: false
156158

157159
# disallow any job that takes longer than 45 minutes

.github/workflows/docker-images.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ name: Docker Images
22

33
on:
44
workflow_dispatch:
5+
push:
6+
branches:
7+
- master
8+
release:
9+
types: [ published ]
510

611
env:
712
GIT_BRANCH: ${{ github.head_ref || github.ref_name }}

CHANGELOG.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,43 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
## [Unreleased]
88

99
### Added
10-
- [2551](https://github.com/FuelLabs/fuel-core/pull/2551): Enhanced the DA compressed block header to include block id.
1110
- [2579](https://github.com/FuelLabs/fuel-core/pull/2579): Clear expiration txs cache in transaction pool based on inserted transactions
1211

12+
### Changed
13+
- [2387](https://github.com/FuelLabs/fuel-core/pull/2387): Update description `tx-max-depth` flag.
14+
- [2630](https://github.com/FuelLabs/fuel-core/pull/2630): Removed some noisy `tracing::info!` logs
15+
16+
### Fixed
17+
- [2632](https://github.com/FuelLabs/fuel-core/pull/2632): Improved performance of certain async trait impls in the gas price service.
18+
19+
## [Version 0.41.4]
20+
21+
### Fixed
22+
- [2628](https://github.com/FuelLabs/fuel-core/pull/2628): Downgrade STF.
23+
24+
## [Version 0.41.3]
25+
26+
### Fixed
27+
- [2626](https://github.com/FuelLabs/fuel-core/pull/2626): Avoid needs of RocksDB features in tests modules.
28+
29+
## [Version 0.41.2]
30+
31+
### Fixed
32+
33+
- [2623](https://github.com/FuelLabs/fuel-core/pull/2623): Pinned netlink-proto's version.
34+
35+
## [Version 0.41.1]
36+
37+
### Added
38+
- [2551](https://github.com/FuelLabs/fuel-core/pull/2551): Enhanced the DA compressed block header to include block id.
39+
- [2595](https://github.com/FuelLabs/fuel-core/pull/2595): Added `indexation` field to the `nodeInfo` GraphQL endpoint to allow checking if a specific indexation is enabled.
40+
41+
### Changed
42+
- [2603](https://github.com/FuelLabs/fuel-core/pull/2603): Sets the latest recorded height on initialization, not just when DA costs are received
43+
1344
### Fixed
45+
- [2612](https://github.com/FuelLabs/fuel-core/pull/2612): Use latest gas price to estimate next block gas price during dry runs
46+
- [2612](https://github.com/FuelLabs/fuel-core/pull/2612): Use latest gas price to estimate next block gas price in tx pool instead of using algorithm directly
1447
- [2609](https://github.com/FuelLabs/fuel-core/pull/2609): Check response before trying to deserialize, return error instead
1548
- [2599](https://github.com/FuelLabs/fuel-core/pull/2599): Use the proper `url` apis to construct full url path in `BlockCommitterHttpApi` client
1649
- [2593](https://github.com/FuelLabs/fuel-core/pull/2593): Fixed utxo id decompression

0 commit comments

Comments
 (0)