Skip to content

Commit 0db5f03

Browse files
authored
release: 2.6.34 (#3666)
1 parent 74aa1e0 commit 0db5f03

File tree

39 files changed

+200
-185
lines changed

39 files changed

+200
-185
lines changed

CHANGELOG.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Changelog
1+
3667# Changelog
22

33
All notable changes to this project will be documented in this file.
44

@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [2.6.34] - 2020-04-28
11+
12+
### Fixed
13+
14+
- Create a unique round ID for elasticsearch ([#3659])
15+
16+
### Changed
17+
18+
- Update @arkecosystem/utils dependency ([#3665])
19+
- Use tree memory structure to sort by fee and by sender nonce **(core-transaction-pool)** ([#3667])
20+
1021
## [2.6.31] - 2020-03-25
1122

1223
### Fixed
@@ -945,6 +956,7 @@ Closed security vulnerabilities:
945956
- Initial Release
946957

947958
[unreleased]: https://github.com/ARKEcosystem/core/compare/master...develop
959+
[2.6.34]: https://github.com/ARKEcosystem/core/compare/2.6.31...2.6.34
948960
[2.6.31]: https://github.com/ARKEcosystem/core/compare/2.6.30...2.6.31
949961
[2.6.30]: https://github.com/ARKEcosystem/core/compare/2.6.29...2.6.30
950962
[2.6.29]: https://github.com/ARKEcosystem/core/compare/2.6.28...2.6.29
@@ -1494,6 +1506,9 @@ Closed security vulnerabilities:
14941506
[#3598]: https://github.com/ARKEcosystem/core/pull/3598
14951507
[#3605]: https://github.com/ARKEcosystem/core/pull/3605
14961508
[#3614]: https://github.com/ARKEcosystem/core/pull/3614
1509+
[#3659]: https://github.com/ARKEcosystem/core/pull/3659
1510+
[#3665]: https://github.com/ARKEcosystem/core/pull/3665
1511+
[#3667]: https://github.com/ARKEcosystem/core/pull/3667
14971512
[032caa1b990e91937e4bc1561bc1aeaeca9e37d]: https://github.com/ARKEcosystem/core/commit/032caa1b990e91937e4bc1561bc1aeaeca9e37d9
14981513
[1209a36366c8fd3ba31fab2463011b7ce1a7d84]: https://github.com/ARKEcosystem/core/commit/1209a36366c8fd3ba31fab2463011b7ce1a7d844
14991514
[34749bf84bcec3fecd0098c0d42f52deb1f6ba4]: https://github.com/ARKEcosystem/core/commit/34749bf84bcec3fecd0098c0d42f52deb1f6ba4a

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"npmClient": "yarn",
44
"packages": ["packages/*", "plugins/*"],
55
"useWorkspaces": true,
6-
"version": "2.6.31"
6+
"version": "2.6.34"
77
}

packages/core-api/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-api",
3-
"version": "2.6.31",
3+
"version": "2.6.34",
44
"description": "Public API for ARK Core",
55
"license": "MIT",
66
"contributors": [
@@ -21,13 +21,13 @@
2121
"pretest": "bash ../../scripts/pre-test.sh"
2222
},
2323
"dependencies": {
24-
"@arkecosystem/core-container": "^2.6.31",
25-
"@arkecosystem/core-http-utils": "^2.6.31",
26-
"@arkecosystem/core-interfaces": "^2.6.31",
27-
"@arkecosystem/core-transaction-pool": "^2.6.31",
28-
"@arkecosystem/core-transactions": "^2.6.31",
29-
"@arkecosystem/core-utils": "^2.6.31",
30-
"@arkecosystem/crypto": "^2.6.31",
24+
"@arkecosystem/core-container": "^2.6.34",
25+
"@arkecosystem/core-http-utils": "^2.6.34",
26+
"@arkecosystem/core-interfaces": "^2.6.34",
27+
"@arkecosystem/core-transaction-pool": "^2.6.34",
28+
"@arkecosystem/core-transactions": "^2.6.34",
29+
"@arkecosystem/core-utils": "^2.6.34",
30+
"@arkecosystem/crypto": "^2.6.34",
3131
"@arkecosystem/utils": "^1.1",
3232
"@hapi/boom": "^8.0.0",
3333
"@hapi/joi": "^15.1.0",

packages/core-blockchain/package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-blockchain",
3-
"version": "2.6.31",
3+
"version": "2.6.34",
44
"description": "Blockchain Manager for ARK Core",
55
"license": "MIT",
66
"contributors": [
@@ -22,15 +22,15 @@
2222
"pretest": "bash ../../scripts/pre-test.sh"
2323
},
2424
"dependencies": {
25-
"@arkecosystem/core-container": "^2.6.31",
26-
"@arkecosystem/core-database": "^2.6.31",
27-
"@arkecosystem/core-event-emitter": "^2.6.31",
28-
"@arkecosystem/core-interfaces": "^2.6.31",
29-
"@arkecosystem/core-p2p": "^2.6.31",
30-
"@arkecosystem/core-state": "^2.6.31",
31-
"@arkecosystem/core-transactions": "^2.6.31",
32-
"@arkecosystem/core-utils": "^2.6.31",
33-
"@arkecosystem/crypto": "^2.6.31",
25+
"@arkecosystem/core-container": "^2.6.34",
26+
"@arkecosystem/core-database": "^2.6.34",
27+
"@arkecosystem/core-event-emitter": "^2.6.34",
28+
"@arkecosystem/core-interfaces": "^2.6.34",
29+
"@arkecosystem/core-p2p": "^2.6.34",
30+
"@arkecosystem/core-state": "^2.6.34",
31+
"@arkecosystem/core-transactions": "^2.6.34",
32+
"@arkecosystem/core-utils": "^2.6.34",
33+
"@arkecosystem/crypto": "^2.6.34",
3434
"async": "^3.1.0",
3535
"delay": "^4.3.0",
3636
"immutable": "^4.0.0-rc.12",

packages/core-container/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-container",
3-
"version": "2.6.31",
3+
"version": "2.6.34",
44
"description": "Container for ARK Core",
55
"license": "MIT",
66
"contributors": [
@@ -19,9 +19,9 @@
1919
"prepublishOnly": "yarn build"
2020
},
2121
"dependencies": {
22-
"@arkecosystem/core-event-emitter": "^2.6.31",
23-
"@arkecosystem/core-interfaces": "^2.6.31",
24-
"@arkecosystem/crypto": "^2.6.31",
22+
"@arkecosystem/core-event-emitter": "^2.6.34",
23+
"@arkecosystem/core-interfaces": "^2.6.34",
24+
"@arkecosystem/crypto": "^2.6.34",
2525
"@hapi/hoek": "^8.0.2",
2626
"@hapi/joi": "^15.1.0",
2727
"awilix": "^4.2.2",

packages/core-database-postgres/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-database-postgres",
3-
"version": "2.6.31",
3+
"version": "2.6.34",
44
"description": "PostgreSQL integration for ARK Core",
55
"license": "MIT",
66
"contributors": [
@@ -21,14 +21,14 @@
2121
"pretest": "bash ../../scripts/pre-test.sh"
2222
},
2323
"dependencies": {
24-
"@arkecosystem/core-container": "^2.6.31",
25-
"@arkecosystem/core-database": "^2.6.31",
26-
"@arkecosystem/core-event-emitter": "^2.6.31",
27-
"@arkecosystem/core-interfaces": "^2.6.31",
28-
"@arkecosystem/core-state": "^2.6.31",
29-
"@arkecosystem/core-transactions": "^2.6.31",
30-
"@arkecosystem/core-utils": "^2.6.31",
31-
"@arkecosystem/crypto": "^2.6.31",
24+
"@arkecosystem/core-container": "^2.6.34",
25+
"@arkecosystem/core-database": "^2.6.34",
26+
"@arkecosystem/core-event-emitter": "^2.6.34",
27+
"@arkecosystem/core-interfaces": "^2.6.34",
28+
"@arkecosystem/core-state": "^2.6.34",
29+
"@arkecosystem/core-transactions": "^2.6.34",
30+
"@arkecosystem/core-utils": "^2.6.34",
31+
"@arkecosystem/crypto": "^2.6.34",
3232
"@arkecosystem/utils": "^1.1",
3333
"bluebird": "^3.5.5",
3434
"cpy-cli": "^2.0.0",

packages/core-database/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-database",
3-
"version": "2.6.31",
3+
"version": "2.6.34",
44
"description": "Database Interface for ARK Core",
55
"license": "MIT",
66
"contributors": [
@@ -22,13 +22,13 @@
2222
"pretest": "bash ../../scripts/pre-test.sh"
2323
},
2424
"dependencies": {
25-
"@arkecosystem/core-container": "^2.6.31",
26-
"@arkecosystem/core-event-emitter": "^2.6.31",
27-
"@arkecosystem/core-interfaces": "^2.6.31",
28-
"@arkecosystem/core-state": "^2.6.31",
29-
"@arkecosystem/core-transactions": "^2.6.31",
30-
"@arkecosystem/core-utils": "^2.6.31",
31-
"@arkecosystem/crypto": "^2.6.31",
25+
"@arkecosystem/core-container": "^2.6.34",
26+
"@arkecosystem/core-event-emitter": "^2.6.34",
27+
"@arkecosystem/core-interfaces": "^2.6.34",
28+
"@arkecosystem/core-state": "^2.6.34",
29+
"@arkecosystem/core-transactions": "^2.6.34",
30+
"@arkecosystem/core-utils": "^2.6.34",
31+
"@arkecosystem/crypto": "^2.6.34",
3232
"@arkecosystem/utils": "^1.1",
3333
"dottie": "^2.0.1",
3434
"lodash.clonedeep": "^4.5.0",

packages/core-elasticsearch/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-elasticsearch",
3-
"version": "2.6.31",
3+
"version": "2.6.34",
44
"description": "A powerful Elasticsearch integration for ARK Core",
55
"license": "MIT",
66
"contributors": [
@@ -18,11 +18,11 @@
1818
"prepublishOnly": "yarn build"
1919
},
2020
"dependencies": {
21-
"@arkecosystem/core-container": "^2.6.31",
22-
"@arkecosystem/core-event-emitter": "^2.6.31",
23-
"@arkecosystem/core-http-utils": "^2.6.31",
24-
"@arkecosystem/core-interfaces": "^2.6.31",
25-
"@arkecosystem/crypto": "^2.6.31",
21+
"@arkecosystem/core-container": "^2.6.34",
22+
"@arkecosystem/core-event-emitter": "^2.6.34",
23+
"@arkecosystem/core-http-utils": "^2.6.34",
24+
"@arkecosystem/core-interfaces": "^2.6.34",
25+
"@arkecosystem/crypto": "^2.6.34",
2626
"@elastic/elasticsearch": "^7.2.0",
2727
"@hapi/boom": "^8.0.0",
2828
"@hapi/joi": "^15.1.0",

packages/core-error-tracker-airbrake/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-error-tracker-airbrake",
3-
"version": "2.6.31",
3+
"version": "2.6.34",
44
"description": "Airbrake error tracker integration for ARK Core.",
55
"license": "MIT",
66
"contributors": [
@@ -18,7 +18,7 @@
1818
"prepublishOnly": "yarn build"
1919
},
2020
"dependencies": {
21-
"@arkecosystem/core-container": "^2.6.31",
21+
"@arkecosystem/core-container": "^2.6.34",
2222
"airbrake-js": "^1.6.8"
2323
},
2424
"engines": {

packages/core-error-tracker-bugsnag/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-error-tracker-bugsnag",
3-
"version": "2.6.31",
3+
"version": "2.6.34",
44
"description": "Bugsnag error tracker integration for ARK Core.",
55
"license": "MIT",
66
"contributors": [
@@ -18,7 +18,7 @@
1818
"prepublishOnly": "yarn build"
1919
},
2020
"dependencies": {
21-
"@arkecosystem/core-container": "^2.6.31",
21+
"@arkecosystem/core-container": "^2.6.34",
2222
"@bugsnag/js": "^6.3.2"
2323
},
2424
"engines": {

packages/core-error-tracker-raygun/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-error-tracker-raygun",
3-
"version": "2.6.31",
3+
"version": "2.6.34",
44
"description": "Raygun error tracker integration for ARK Core.",
55
"license": "MIT",
66
"contributors": [
@@ -18,7 +18,7 @@
1818
"prepublishOnly": "yarn build"
1919
},
2020
"dependencies": {
21-
"@arkecosystem/core-container": "^2.6.31",
21+
"@arkecosystem/core-container": "^2.6.34",
2222
"raygun": "^0.10.1"
2323
},
2424
"devDependencies": {

packages/core-error-tracker-rollbar/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-error-tracker-rollbar",
3-
"version": "2.6.31",
3+
"version": "2.6.34",
44
"description": "Rollbar error tracker integration for ARK Core.",
55
"license": "MIT",
66
"contributors": [
@@ -18,7 +18,7 @@
1818
"prepublishOnly": "yarn build"
1919
},
2020
"dependencies": {
21-
"@arkecosystem/core-container": "^2.6.31",
21+
"@arkecosystem/core-container": "^2.6.34",
2222
"rollbar": "^2.8.1"
2323
},
2424
"engines": {

packages/core-error-tracker-sentry/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-error-tracker-sentry",
3-
"version": "2.6.31",
3+
"version": "2.6.34",
44
"description": "Sentry error tracker integration for ARK Core.",
55
"license": "MIT",
66
"contributors": [
@@ -18,7 +18,7 @@
1818
"prepublishOnly": "yarn build"
1919
},
2020
"dependencies": {
21-
"@arkecosystem/core-container": "^2.6.31",
21+
"@arkecosystem/core-container": "^2.6.34",
2222
"@sentry/node": "^5.5.0"
2323
},
2424
"engines": {

packages/core-event-emitter/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-event-emitter",
3-
"version": "2.6.31",
3+
"version": "2.6.34",
44
"description": "Event Manager for ARK Core",
55
"license": "MIT",
66
"contributors": [

packages/core-exchange-json-rpc/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-exchange-json-rpc",
3-
"version": "2.6.31",
3+
"version": "2.6.34",
44
"description": "Exchange JSON-RPC for ARK Core",
55
"license": "MIT",
66
"contributors": [
@@ -19,8 +19,8 @@
1919
"pretest": "bash ../../scripts/pre-test.sh"
2020
},
2121
"dependencies": {
22-
"@arkecosystem/core-container": "^2.6.31",
23-
"@arkecosystem/core-interfaces": "^2.6.31",
22+
"@arkecosystem/core-container": "^2.6.34",
23+
"@arkecosystem/core-interfaces": "^2.6.34",
2424
"@arkecosystem/exchange-json-rpc": "^2.0.1"
2525
},
2626
"engines": {

packages/core-explorer/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-explorer",
3-
"version": "2.6.31",
3+
"version": "2.6.34",
44
"description": "Explorer for ARK Core",
55
"license": "MIT",
66
"contributors": [
@@ -19,8 +19,8 @@
1919
"pretest": "bash ../../scripts/pre-test.sh"
2020
},
2121
"dependencies": {
22-
"@arkecosystem/core-container": "^2.6.31",
23-
"@arkecosystem/core-interfaces": "^2.6.31",
22+
"@arkecosystem/core-container": "^2.6.34",
23+
"@arkecosystem/core-interfaces": "^2.6.34",
2424
"connect-history-api-fallback": "^1.6.0",
2525
"express": "^4.17.1"
2626
},

packages/core-forger/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-forger",
3-
"version": "2.6.31",
3+
"version": "2.6.34",
44
"description": "Forger for ARK Core",
55
"license": "MIT",
66
"contributors": [
@@ -21,13 +21,13 @@
2121
"pretest": "bash ../../scripts/pre-test.sh"
2222
},
2323
"dependencies": {
24-
"@arkecosystem/core-container": "^2.6.31",
25-
"@arkecosystem/core-event-emitter": "^2.6.31",
26-
"@arkecosystem/core-interfaces": "^2.6.31",
27-
"@arkecosystem/core-p2p": "^2.6.31",
28-
"@arkecosystem/core-state": "^2.6.31",
29-
"@arkecosystem/core-utils": "^2.6.31",
30-
"@arkecosystem/crypto": "^2.6.31",
24+
"@arkecosystem/core-container": "^2.6.34",
25+
"@arkecosystem/core-event-emitter": "^2.6.34",
26+
"@arkecosystem/core-interfaces": "^2.6.34",
27+
"@arkecosystem/core-p2p": "^2.6.34",
28+
"@arkecosystem/core-state": "^2.6.34",
29+
"@arkecosystem/core-utils": "^2.6.34",
30+
"@arkecosystem/crypto": "^2.6.34",
3131
"delay": "^4.3.0",
3232
"lodash.isempty": "^4.4.0",
3333
"lodash.uniq": "^4.5.0",

packages/core-http-utils/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-http-utils",
3-
"version": "2.6.31",
3+
"version": "2.6.34",
44
"description": "Http Utilities for ARK Core",
55
"license": "MIT",
66
"contributors": [
@@ -18,9 +18,9 @@
1818
"prepublishOnly": "yarn build"
1919
},
2020
"dependencies": {
21-
"@arkecosystem/core-container": "^2.6.31",
22-
"@arkecosystem/core-utils": "^2.6.31",
23-
"@arkecosystem/crypto": "^2.6.31",
21+
"@arkecosystem/core-container": "^2.6.34",
22+
"@arkecosystem/core-utils": "^2.6.34",
23+
"@arkecosystem/crypto": "^2.6.34",
2424
"@hapi/boom": "^8.0.0",
2525
"@hapi/good": "^8.2.0",
2626
"@hapi/good-console": "^8.1.0",

0 commit comments

Comments
 (0)