Skip to content

Commit

Permalink
chore(release): update changelog and bump version to 1.1.0 (#2077)
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov authored Aug 24, 2024
1 parent a38cd63 commit 483a9c5
Show file tree
Hide file tree
Showing 46 changed files with 115 additions and 69 deletions.
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,46 @@
## [1.1.0](https://github.com/dashpay/platform/compare/v1.1.0-dev.1...v1.1.0) (2024-08-24)


### ⚠ BREAKING CHANGES

* **drive:** just in time fee update fixes (#2075)
* do not allow contested documents for the first three epochs (#2066)
* **drive-abci:** fix wrong fields in dash top level domain (#2065)
* **platform:** fix reference of items between epochs (#2064)
* **sdk:** mock sdk cannot find quorum keys in offline mode (#2061)
* **sdk:** overflow when using &&sdk in DapiRequestExecutor (#2060)

### Features

* **dashmate:** add `dashmate doctor` command ([#2024](https://github.com/dashpay/platform/issues/2024))
* **dashmate:** compress doctor report and other improvements ([#2071](https://github.com/dashpay/platform/issues/2071))
* **dashmate:** configure proposer and tx limits ([#2057](https://github.com/dashpay/platform/issues/2057))
* **dpp:** function for getting enabled matching public keys in identities ([#2052](https://github.com/dashpay/platform/issues/2052))
* where clauses recognize nested properties


### Bug Fixes

* add back the matches on system properties
* **dapi:** getTotalCreditsOnPlatform missing parts ([#2059](https://github.com/dashpay/platform/issues/2059))
* **dashmate:** core reindex command not working ([#2054](https://github.com/dashpay/platform/issues/2054))
* **dashmate:** the reset platform command doesn't remove data ([#2053](https://github.com/dashpay/platform/issues/2053))
* **drive-abci:** fix wrong fields in dash top level domain ([#2065](https://github.com/dashpay/platform/issues/2065))
* **drive:** just in time fee update fixes ([#2075](https://github.com/dashpay/platform/issues/2075))
* **platform:** fix reference of items between epochs ([#2064](https://github.com/dashpay/platform/issues/2064))
* **sdk:** mock sdk cannot find quorum keys in offline mode ([#2061](https://github.com/dashpay/platform/issues/2061))
* **sdk:** overflow when using &&sdk in DapiRequestExecutor ([#2060](https://github.com/dashpay/platform/issues/2060))


### Code Refactoring

* rename getTotalCreditsOnPlatform ([#2056](https://github.com/dashpay/platform/issues/2056))


### Miscellaneous Chores

* do not allow contested documents for the first three epochs ([#2066](https://github.com/dashpay/platform/issues/2066))

## [1.1.0-dev.1](https://github.com/dashpay/platform/compare/v1.0.2...v1.1.0-dev.1) (2024-08-13)


Expand Down
50 changes: 25 additions & 25 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.1.0-dev.1",
"version": "1.1.0",
"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.1.0-dev.1",
"version": "1.1.0",
"description": "Dash Platform benchmark tool",
"scripts": {
"bench": "node ./bin/bench.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/check-features/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "check-features"
version = "1.1.0-dev.1"
version = "1.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion 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.1.0-dev.1"
version = "1.1.0"
authors = [
"Samuel Westrich <[email protected]>",
"Igor Markin <[email protected]>",
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.1.0-dev.1",
"version": "1.1.0",
"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.1.0-dev.1",
"version": "1.1.0",
"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": "2.1.0-dev.1",
"version": "2.1.0",
"description": "Repository containing SPV functions used by @dashevo",
"main": "index.js",
"scripts": {
Expand Down
5 changes: 4 additions & 1 deletion packages/dashmate/configs/getConfigFileMigrationsFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -790,9 +790,12 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
});
return configFile;
},
'1.1.0-dev.2': (configFile) => {
'1.1.0': (configFile) => {
Object.entries(configFile.configs)
.forEach(([name, options]) => {
options.platform.drive.abci.docker.image = 'dashpay/drive:1';
options.platform.dapi.api.docker.image = 'dashpay/dapi:1';

if (options.network === NETWORK_TESTNET) {
options.platform.drive.abci.proposer = {
txProcessingTimeLimit: 5000,
Expand Down
2 changes: 1 addition & 1 deletion packages/dashmate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dashmate",
"version": "1.1.0-dev.1",
"version": "1.1.0",
"description": "Distribution package for Dash node installation",
"scripts": {
"lint": "eslint .",
Expand Down
2 changes: 1 addition & 1 deletion packages/dashpay-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dashpay-contract"
description = "DashPay data contract schema and tools"
version = "1.1.0-dev.1"
version = "1.1.0"
edition = "2021"
rust-version = "1.76"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/dashpay-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/dashpay-contract",
"version": "1.1.0-dev.1",
"version": "1.1.0",
"description": "Reference contract of the DashPay DPA on Dash Evolution",
"scripts": {
"lint": "eslint .",
Expand Down
2 changes: 1 addition & 1 deletion packages/data-contracts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "data-contracts"
description = "Dash Platform system data contracts"
version = "1.1.0-dev.1"
version = "1.1.0"
edition = "2021"
rust-version = "1.76"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/dpns-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dpns-contract"
description = "DPNS data contract schema and tools"
version = "1.1.0-dev.1"
version = "1.1.0"
edition = "2021"
rust-version = "1.76"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/dpns-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashevo/dpns-contract",
"version": "1.1.0-dev.1",
"version": "1.1.0",
"description": "A contract and helper scripts for DPNS DApp",
"scripts": {
"lint": "eslint .",
Expand Down
Loading

0 comments on commit 483a9c5

Please sign in to comment.