Skip to content

Commit

Permalink
Merge branch 'v1.0-dev' into feat/createdAtUpdatedAtFromBlockTime
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumExplorer committed Mar 15, 2024
2 parents 6913914 + 08f6b18 commit 91643df
Show file tree
Hide file tree
Showing 196 changed files with 2,616 additions and 1,631 deletions.
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,42 @@
## [1.0.0-dev.8](https://github.com/dashpay/platform/compare/v1.0.0-dev.7...v1.0.0-dev.8) (2024-03-14)


### ⚠ BREAKING CHANGES

* **platform:** identity update can not disable a key it is also adding (#1772)
* **platform:** key disabled at based on state transition block time (#1771)
* **platform:** data contract validation improvements (#1768)
* update tenderdash to 0.14-dev.4 (#1770)
* **platform:** advanced data contract structure validation position (#1763)

### Features

* **platform:** identity update can not disable a key it is also adding ([#1772](https://github.com/dashpay/platform/issues/1772))
* **platform:** key disabled at based on state transition block time ([#1771](https://github.com/dashpay/platform/issues/1771))


### Bug Fixes

* **platform:** advanced data contract structure validation position ([#1763](https://github.com/dashpay/platform/issues/1763))
* **platform:** data contract validation improvements ([#1768](https://github.com/dashpay/platform/issues/1768))
* **platform:** wrong state used to get current validator set ([#1773](https://github.com/dashpay/platform/issues/1773))
* remove unnecessary clone
* update strategy test document transitions with initial contract ids


### Code Refactoring

* **drive:** relax versioning of calls with fees ([#1762](https://github.com/dashpay/platform/issues/1762))
* drop unused includes; use calculate_sign_hash ([#1767](https://github.com/dashpay/platform/issues/1767))
* resolve various warnings during build or by clippy ([#1761](https://github.com/dashpay/platform/issues/1761))
* strategy test start identities ([#1749](https://github.com/dashpay/platform/issues/1749))


### Miscellaneous Chores

* **dashmate:** upgrade to Core 20.1 ([#1760](https://github.com/dashpay/platform/issues/1760))
* update tenderdash to 0.14-dev.4 ([#1770](https://github.com/dashpay/platform/issues/1770))

## [1.0.0-dev.7](https://github.com/dashpay/platform/compare/v1.0.0-dev.6...v1.0.0-dev.7) (2024-03-08)


Expand Down
62 changes: 31 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/platform",
"version": "1.0.0-dev.7",
"version": "1.0.0-dev.8",
"private": true,
"scripts": {
"setup": "yarn install && yarn run build && yarn run configure",
Expand Down
2 changes: 1 addition & 1 deletion packages/bench-suite/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dashevo/bench-suite",
"private": true,
"version": "1.0.0-dev.7",
"version": "1.0.0-dev.8",
"description": "Dash Platform benchmark tool",
"scripts": {
"bench": "node ./bin/bench.js",
Expand Down
6 changes: 3 additions & 3 deletions packages/dapi-grpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dapi-grpc"
description = "GRPC client for Dash Platform"
version = "1.0.0-dev.7"
version = "1.0.0-dev.8"
authors = [
"Samuel Westrich <[email protected]>",
"Igor Markin <[email protected]>",
Expand Down Expand Up @@ -37,8 +37,8 @@ tonic = { version = "0.11", features = [
serde = { version = "1.0.171", optional = true, features = ["derive"] }
serde_bytes = { version = "0.11.12", optional = true }
serde_json = { version = "1.0", optional = true }
tenderdash-proto = { git = "https://github.com/dashpay/rs-tenderdash-abci", rev = "81d28aa0b15fc0844dfa7f7251f6949f6c6c405a", features = [
"grpc-server",
tenderdash-proto = { git = "https://github.com/dashpay/rs-tenderdash-abci", version = "0.14.0-dev.8", features = [
"grpc",
] }
dapi-grpc-macros = { path = "../rs-dapi-grpc-macros" }
platform-version = { path = "../rs-platform-version" }
Expand Down
2 changes: 1 addition & 1 deletion packages/dapi-grpc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/dapi-grpc",
"version": "1.0.0-dev.7",
"version": "1.0.0-dev.8",
"description": "DAPI GRPC definition file and generated clients",
"browser": "browser.js",
"main": "node.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/dapi/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dashevo/dapi",
"private": true,
"version": "1.0.0-dev.7",
"version": "1.0.0-dev.8",
"description": "A decentralized API for the Dash network",
"scripts": {
"api": "node scripts/api.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/dash-spv/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/dash-spv",
"version": "1.0.0-dev.7",
"version": "1.0.0-dev.8",
"description": "Repository containing SPV functions used by @dashevo",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/dashmate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Example usage:

```bash
$ dashmate stop
$ npm update -g dashmate
$ npm install -g dashmate
$ dashmate update
╔══════════════════╤══════════════════════════════╤════════════╗
║ Service │ Image │ Updated ║
Expand All @@ -87,7 +87,7 @@ In some cases, you must also additionally reset platform data:

```bash
$ dashmate stop
$ npm update -g dashmate
$ npm install -g dashmate
$ dashmate reset --platform-only --hard
$ dashmate update
$ dashmate setup
Expand Down
Loading

0 comments on commit 91643df

Please sign in to comment.