-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Moving rpc sidecar to event sidecar workspace. Both og those servers will work on one binary * Updating schemars version because the old one is having bugs (if there is a name collision for components schema only one will be saved) * Copying casper_types to this project. The reason is that casper_types in release <= 4.0.1 depends on old schemars * Copying casper_types for 2.0 release to this project. The reason is that rpc sidecar has to use the new types definitions, but for now they are not released (and it's not clear if they will be released prior to node 2.0 release). * Changing RpcError implementation to fix tests. Some alignments of codestyle to make clippy happy. * Moving casper-types dependencies to workspace level * Sync changes from node branch * Update the schema file * Delete protocol.md * Move a DbId fix * Change error message * Changes to versioning * Sync changes to types * Switch to having a single binary * Moving config files, fixing compilation issues * bump 'juliet' to '0.2.1' * Sync casper-types changes * Changing RPC sidecar config so that the rpc_server.node_client.exponential_backoff will take a new parameter called max_attempts. I tcan be either "infinite" or a positive, non-zero number. * Storing ApiVersion in event_log table. Removing is_big_integer_id config from DDLConfiguration because it's no longer needed (new version of sea_query handles the situation of defining big_integer and autoincrement) * Revert "Storing ApiVersion in event_log table. Removing is_big_integer_id con…" * Update for node review changes (#15) * Update for node changes * Fix lints * Cleanup * Cover all values in tag roundtrip tests * Moving admin server out from the sse sidecar. They are spinned up separately from sse events server. Also the database initialization happens separetely. Is sse events server is defined a storage definition is required. If rest api server is defined a storage definition is required. * Fix GlobalStateRequest::random * Changes explicit BoxFuture casting to calling 'boxed()' method --------- Co-authored-by: Jakub Zajkowski <[email protected]> Co-authored-by: Rafał Chabowski <[email protected]> Co-authored-by: Rafał Chabowski <[email protected]> Co-authored-by: zajko <[email protected]>
- Loading branch information
1 parent
d1d5150
commit 7511324
Showing
436 changed files
with
113,025 additions
and
1,629 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,30 @@ | ||
[workspace] | ||
resolver = "1" | ||
members = [ | ||
"sidecar", | ||
"casper_types", | ||
"casper_types_ver_2_0", | ||
"event_sidecar", | ||
"json_rpc", | ||
"listener", | ||
"types", | ||
"rpc_sidecar", | ||
"sidecar", | ||
"types" | ||
] | ||
|
||
[workspace.dependencies] | ||
once_cell = "1.18.0" | ||
anyhow = "1" | ||
async-stream = "0.3.4" | ||
casper-types = { path = "./casper_types", version = "4.0.1" } | ||
casper-types-ver-2_0 = { version = "3.0.0", path = "./casper_types_ver_2_0" } | ||
casper-event-sidecar = { path = "./event_sidecar", version = "1.0.0" } | ||
casper-rpc-sidecar = { path = "./rpc_sidecar", version = "1.0.0" } | ||
datasize = "0.2.11" | ||
futures = "0" | ||
futures-util = "0.3.28" | ||
once_cell = "1.18.0" | ||
thiserror = "1" | ||
tokio = "1.23.1" | ||
toml = "0.5.8" | ||
tracing = { version = "0", default-features = false } | ||
tracing-subscriber = "0" | ||
serde = { version = "1", default-features = false } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,200 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog]. | ||
|
||
[comment]: <> (Added: new features) | ||
[comment]: <> (Changed: changes in existing functionality) | ||
[comment]: <> (Deprecated: soon-to-be removed features) | ||
[comment]: <> (Removed: now removed features) | ||
[comment]: <> (Fixed: any bug fixes) | ||
[comment]: <> (Security: in case of vulnerabilities) | ||
|
||
|
||
|
||
## 4.0.1 | ||
|
||
### Added | ||
* Add a new `SyncHandling` enum, which allows a node to opt out of historical sync. | ||
|
||
### Changed | ||
* Update `k256` to version 0.13.1. | ||
|
||
### Removed | ||
* Remove `ExecutionResult::successful_transfers`. | ||
|
||
### Security | ||
* Update `ed25519-dalek` to version 2.0.0 as mitigation for [RUSTSEC-2022-0093](https://rustsec.org/advisories/RUSTSEC-2022-0093) | ||
|
||
|
||
|
||
## 3.0.0 | ||
|
||
### Added | ||
* Add new `bytesrepr::Error::NotRepresentable` error variant that represents values that are not representable by the serialization format. | ||
* Add new `Key::Unbond` key variant under which the new unbonding information (to support redelegation) is written. | ||
* Add new `Key::ChainspecRegistry` key variant under which the `ChainspecRegistry` is written. | ||
* Add new `Key::ChecksumRegistry` key variant under which a registry of checksums for a given block is written. There are two checksums in the registry, one for the execution results and the other for the approvals of all deploys in the block. | ||
* Add new `StoredValue::Unbonding` variant to support redelegating. | ||
* Add a new type `WithdrawPurses` which is meant to represent `UnbondingPurses` as they exist in current live networks. | ||
|
||
### Changed | ||
* Extend `UnbondingPurse` to take a new field `new_validator` which represents the validator to whom tokens will be re-delegated. | ||
* Increase `DICTIONARY_ITEM_KEY_MAX_LENGTH` to 128. | ||
* Change prefix of formatted string representation of `ContractPackageHash` from "contract-package-wasm" to "contract-package-". Parsing from the old format is still supported. | ||
* Apply `#[non_exhaustive]` to error enums. | ||
* Change Debug output of `DeployHash` to hex-encoded string rather than a list of integers. | ||
|
||
### Fixed | ||
* Fix some integer casts, where failure is now detected and reported via new error variant `NotRepresentable`. | ||
|
||
|
||
|
||
## 2.0.0 | ||
|
||
### Fixed | ||
* Republish v1.6.0 as v2.0.0 due to missed breaking change in API (addition of new variant to `Key`). | ||
|
||
|
||
|
||
## 1.6.0 [YANKED] | ||
|
||
### Added | ||
* Extend asymmetric key functionality, available via feature `std` (moved from `casper-nodes` crate). | ||
* Provide `Timestamp` and `TimeDiff` types for time operations, with extended functionality available via feature `std` (moved from `casper-nodes` crate). | ||
* Provide test-only functionality, in particular a seedable RNG `TestRng` which outputs its seed on test failure. Available via a new feature `testing`. | ||
* Add new `Key::EraSummary` key variant under which the era summary info is written on each switch block execution. | ||
|
||
### Deprecated | ||
* Deprecate `gens` feature: its functionality is included in the new `testing` feature. | ||
|
||
|
||
|
||
## 1.5.0 | ||
|
||
### Added | ||
* Provide types and functionality to support improved access control inside execution engine. | ||
* Provide `CLTyped` impl for `ContractPackage` to allow it to be passed into contracts. | ||
|
||
### Fixed | ||
* Limit parsing of CLTyped objects to a maximum of 50 types deep. | ||
|
||
|
||
|
||
## 1.4.6 - 2021-12-29 | ||
|
||
### Changed | ||
* Disable checksummed-hex encoding, but leave checksummed-hex decoding in place. | ||
|
||
|
||
|
||
## 1.4.5 - 2021-12-06 | ||
|
||
### Added | ||
* Add function to `auction::MintProvider` trait to support minting into an existing purse. | ||
|
||
### Changed | ||
* Change checksummed hex implementation to use 32 byte rather than 64 byte blake2b digests. | ||
|
||
|
||
|
||
## [1.4.4] - 2021-11-18 | ||
|
||
### Fixed | ||
* Revert the accidental change to the `std` feature causing a broken build when this feature is enabled. | ||
|
||
|
||
|
||
## [1.4.3] - 2021-11-17 [YANKED] | ||
|
||
|
||
|
||
## [1.4.2] - 2021-11-13 [YANKED] | ||
|
||
### Added | ||
* Add checksummed hex encoding following a scheme similar to [EIP-55](https://eips.ethereum.org/EIPS/eip-55). | ||
|
||
|
||
|
||
## [1.4.1] - 2021-10-23 | ||
|
||
No changes. | ||
|
||
|
||
|
||
## [1.4.0] - 2021-10-21 [YANKED] | ||
|
||
### Added | ||
* Add `json-schema` feature, disabled by default, to enable many types to be used to produce JSON-schema data. | ||
* Add implicit `datasize` feature, disabled by default, to enable many types to derive the `DataSize` trait. | ||
* Add `StoredValue` types to this crate. | ||
|
||
### Changed | ||
* Support building and testing using stable Rust. | ||
* Allow longer hex string to be presented in `json` files. Current maximum is increased from 100 to 150 characters. | ||
* Improve documentation and `Debug` impls for `ApiError`. | ||
|
||
### Deprecated | ||
* Feature `std` is deprecated as it is now a no-op, since there is no benefit to linking the std lib via this crate. | ||
|
||
|
||
|
||
## [1.3.0] - 2021-07-19 | ||
|
||
### Changed | ||
* Restrict summarization when JSON pretty-printing to contiguous long hex strings. | ||
* Update pinned version of Rust to `nightly-2021-06-17`. | ||
|
||
### Removed | ||
* Remove ability to clone `SecretKey`s. | ||
|
||
|
||
|
||
## [1.2.0] - 2021-05-27 | ||
|
||
### Changed | ||
* Change to Apache 2.0 license. | ||
* Return a `Result` from the constructor of `SecretKey` rather than potentially panicking. | ||
* Improve `Key` error reporting and tests. | ||
|
||
### Fixed | ||
* Fix `Key` deserialization. | ||
|
||
|
||
|
||
## [1.1.1] - 2021-04-19 | ||
|
||
No changes. | ||
|
||
|
||
|
||
## [1.1.0] - 2021-04-13 [YANKED] | ||
|
||
No changes. | ||
|
||
|
||
|
||
## [1.0.1] - 2021-04-08 | ||
|
||
No changes. | ||
|
||
|
||
|
||
## [1.0.0] - 2021-03-30 | ||
|
||
### Added | ||
* Initial release of types for use by software compatible with Casper mainnet. | ||
|
||
|
||
|
||
[Keep a Changelog]: https://keepachangelog.com/en/1.0.0 | ||
[unreleased]: https://github.com/casper-network/casper-node/compare/24fc4027a...dev | ||
[1.4.3]: https://github.com/casper-network/casper-node/compare/2be27b3f5...24fc4027a | ||
[1.4.2]: https://github.com/casper-network/casper-node/compare/v1.4.1...2be27b3f5 | ||
[1.4.1]: https://github.com/casper-network/casper-node/compare/v1.4.0...v1.4.1 | ||
[1.4.0]: https://github.com/casper-network/casper-node/compare/v1.3.0...v1.4.0 | ||
[1.3.0]: https://github.com/casper-network/casper-node/compare/v1.2.0...v1.3.0 | ||
[1.2.0]: https://github.com/casper-network/casper-node/compare/v1.1.1...v1.2.0 | ||
[1.1.1]: https://github.com/casper-network/casper-node/compare/v1.0.1...v1.1.1 | ||
[1.1.0]: https://github.com/casper-network/casper-node/compare/v1.0.1...v1.1.1 | ||
[1.0.1]: https://github.com/casper-network/casper-node/compare/v1.0.0...v1.0.1 | ||
[1.0.0]: https://github.com/casper-network/casper-node/releases/tag/v1.0.0 |
Oops, something went wrong.