Skip to content

Commit c0809ff

Browse files
committed
release: 2.6.57
1 parent d5d40c2 commit c0809ff

File tree

39 files changed

+192
-184
lines changed

39 files changed

+192
-184
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [2.6.57] - 2020-09-17
11+
12+
### Fixed
13+
14+
- Only verify peer blocks < our height (c968e69d, @air1one)
15+
- Stricter multipayment tx check (620027df, @air1one)
16+
- Initialize maxPayload on connection create (3ac3eb17, @air1one)
17+
1018
## [2.6.54] - 2020-09-09
1119

1220
### Changed

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.54"
6+
"version": "2.6.57"
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.54",
3+
"version": "2.6.57",
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.54",
25-
"@arkecosystem/core-http-utils": "^2.6.54",
26-
"@arkecosystem/core-interfaces": "^2.6.54",
27-
"@arkecosystem/core-transaction-pool": "^2.6.54",
28-
"@arkecosystem/core-transactions": "^2.6.54",
29-
"@arkecosystem/core-utils": "^2.6.54",
30-
"@arkecosystem/crypto": "^2.6.54",
24+
"@arkecosystem/core-container": "^2.6.57",
25+
"@arkecosystem/core-http-utils": "^2.6.57",
26+
"@arkecosystem/core-interfaces": "^2.6.57",
27+
"@arkecosystem/core-transaction-pool": "^2.6.57",
28+
"@arkecosystem/core-transactions": "^2.6.57",
29+
"@arkecosystem/core-utils": "^2.6.57",
30+
"@arkecosystem/crypto": "^2.6.57",
3131
"@arkecosystem/utils": "^1.2",
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.54",
3+
"version": "2.6.57",
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.54",
26-
"@arkecosystem/core-database": "^2.6.54",
27-
"@arkecosystem/core-event-emitter": "^2.6.54",
28-
"@arkecosystem/core-interfaces": "^2.6.54",
29-
"@arkecosystem/core-p2p": "^2.6.54",
30-
"@arkecosystem/core-state": "^2.6.54",
31-
"@arkecosystem/core-transactions": "^2.6.54",
32-
"@arkecosystem/core-utils": "^2.6.54",
33-
"@arkecosystem/crypto": "^2.6.54",
25+
"@arkecosystem/core-container": "^2.6.57",
26+
"@arkecosystem/core-database": "^2.6.57",
27+
"@arkecosystem/core-event-emitter": "^2.6.57",
28+
"@arkecosystem/core-interfaces": "^2.6.57",
29+
"@arkecosystem/core-p2p": "^2.6.57",
30+
"@arkecosystem/core-state": "^2.6.57",
31+
"@arkecosystem/core-transactions": "^2.6.57",
32+
"@arkecosystem/core-utils": "^2.6.57",
33+
"@arkecosystem/crypto": "^2.6.57",
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.54",
3+
"version": "2.6.57",
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.54",
23-
"@arkecosystem/core-interfaces": "^2.6.54",
24-
"@arkecosystem/crypto": "^2.6.54",
22+
"@arkecosystem/core-event-emitter": "^2.6.57",
23+
"@arkecosystem/core-interfaces": "^2.6.57",
24+
"@arkecosystem/crypto": "^2.6.57",
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.54",
3+
"version": "2.6.57",
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.54",
25-
"@arkecosystem/core-database": "^2.6.54",
26-
"@arkecosystem/core-event-emitter": "^2.6.54",
27-
"@arkecosystem/core-interfaces": "^2.6.54",
28-
"@arkecosystem/core-state": "^2.6.54",
29-
"@arkecosystem/core-transactions": "^2.6.54",
30-
"@arkecosystem/core-utils": "^2.6.54",
31-
"@arkecosystem/crypto": "^2.6.54",
24+
"@arkecosystem/core-container": "^2.6.57",
25+
"@arkecosystem/core-database": "^2.6.57",
26+
"@arkecosystem/core-event-emitter": "^2.6.57",
27+
"@arkecosystem/core-interfaces": "^2.6.57",
28+
"@arkecosystem/core-state": "^2.6.57",
29+
"@arkecosystem/core-transactions": "^2.6.57",
30+
"@arkecosystem/core-utils": "^2.6.57",
31+
"@arkecosystem/crypto": "^2.6.57",
3232
"@arkecosystem/utils": "^1.2",
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.54",
3+
"version": "2.6.57",
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.54",
26-
"@arkecosystem/core-event-emitter": "^2.6.54",
27-
"@arkecosystem/core-interfaces": "^2.6.54",
28-
"@arkecosystem/core-state": "^2.6.54",
29-
"@arkecosystem/core-transactions": "^2.6.54",
30-
"@arkecosystem/core-utils": "^2.6.54",
31-
"@arkecosystem/crypto": "^2.6.54",
25+
"@arkecosystem/core-container": "^2.6.57",
26+
"@arkecosystem/core-event-emitter": "^2.6.57",
27+
"@arkecosystem/core-interfaces": "^2.6.57",
28+
"@arkecosystem/core-state": "^2.6.57",
29+
"@arkecosystem/core-transactions": "^2.6.57",
30+
"@arkecosystem/core-utils": "^2.6.57",
31+
"@arkecosystem/crypto": "^2.6.57",
3232
"@arkecosystem/utils": "^1.2",
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.54",
3+
"version": "2.6.57",
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.54",
22-
"@arkecosystem/core-event-emitter": "^2.6.54",
23-
"@arkecosystem/core-http-utils": "^2.6.54",
24-
"@arkecosystem/core-interfaces": "^2.6.54",
25-
"@arkecosystem/crypto": "^2.6.54",
21+
"@arkecosystem/core-container": "^2.6.57",
22+
"@arkecosystem/core-event-emitter": "^2.6.57",
23+
"@arkecosystem/core-http-utils": "^2.6.57",
24+
"@arkecosystem/core-interfaces": "^2.6.57",
25+
"@arkecosystem/crypto": "^2.6.57",
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.54",
3+
"version": "2.6.57",
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.54",
21+
"@arkecosystem/core-container": "^2.6.57",
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.54",
3+
"version": "2.6.57",
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.54",
21+
"@arkecosystem/core-container": "^2.6.57",
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.54",
3+
"version": "2.6.57",
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.54",
21+
"@arkecosystem/core-container": "^2.6.57",
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.54",
3+
"version": "2.6.57",
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.54",
21+
"@arkecosystem/core-container": "^2.6.57",
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.54",
3+
"version": "2.6.57",
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.54",
21+
"@arkecosystem/core-container": "^2.6.57",
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.54",
3+
"version": "2.6.57",
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.54",
3+
"version": "2.6.57",
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.54",
23-
"@arkecosystem/core-interfaces": "^2.6.54",
22+
"@arkecosystem/core-container": "^2.6.57",
23+
"@arkecosystem/core-interfaces": "^2.6.57",
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.54",
3+
"version": "2.6.57",
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.54",
23-
"@arkecosystem/core-interfaces": "^2.6.54",
22+
"@arkecosystem/core-container": "^2.6.57",
23+
"@arkecosystem/core-interfaces": "^2.6.57",
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.54",
3+
"version": "2.6.57",
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.54",
25-
"@arkecosystem/core-event-emitter": "^2.6.54",
26-
"@arkecosystem/core-interfaces": "^2.6.54",
27-
"@arkecosystem/core-p2p": "^2.6.54",
28-
"@arkecosystem/core-state": "^2.6.54",
29-
"@arkecosystem/core-utils": "^2.6.54",
30-
"@arkecosystem/crypto": "^2.6.54",
24+
"@arkecosystem/core-container": "^2.6.57",
25+
"@arkecosystem/core-event-emitter": "^2.6.57",
26+
"@arkecosystem/core-interfaces": "^2.6.57",
27+
"@arkecosystem/core-p2p": "^2.6.57",
28+
"@arkecosystem/core-state": "^2.6.57",
29+
"@arkecosystem/core-utils": "^2.6.57",
30+
"@arkecosystem/crypto": "^2.6.57",
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.54",
3+
"version": "2.6.57",
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.54",
22-
"@arkecosystem/core-utils": "^2.6.54",
23-
"@arkecosystem/crypto": "^2.6.54",
21+
"@arkecosystem/core-container": "^2.6.57",
22+
"@arkecosystem/core-utils": "^2.6.57",
23+
"@arkecosystem/crypto": "^2.6.57",
2424
"@hapi/boom": "^8.0.0",
2525
"@hapi/good": "^8.2.0",
2626
"@hapi/good-console": "^8.1.0",

packages/core-interfaces/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-interfaces",
3-
"version": "2.6.54",
3+
"version": "2.6.57",
44
"description": "Interface types for essential ARK Core modules",
55
"license": "MIT",
66
"contributors": [
@@ -23,7 +23,7 @@
2323
"pretest": "bash ../../scripts/pre-test.sh"
2424
},
2525
"dependencies": {
26-
"@arkecosystem/crypto": "^2.6.54",
26+
"@arkecosystem/crypto": "^2.6.57",
2727
"awilix": "^4.2.2",
2828
"dayjs": "^1.8.15"
2929
},

0 commit comments

Comments
 (0)