Skip to content

Commit 9ac0c72

Browse files
authored
release: 2.5.38 (#3411)
1 parent 24939e8 commit 9ac0c72

File tree

38 files changed

+204
-165
lines changed

38 files changed

+204
-165
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.5.38] - 2020-01-21
11+
12+
Rerelease of 2.5.37 due to some npm issues.
13+
1014
## [2.5.37] - 2020-01-21
1115

1216
### Fixed

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.5.37"
6+
"version": "2.5.38"
77
}

packages/a

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
cd crypto && npm publish && cd ..
2+
cd core-api && npm publish && cd ..
3+
cd core-blockchain && npm publish && cd ..
4+
cd core-container && npm publish && cd ..
5+
cd core-database && npm publish && cd ..
6+
cd core-database-postgres && npm publish && cd ..
7+
cd core-elasticsearch && npm publish && cd ..
8+
cd core-error-tracker-airbrake && npm publish && cd ..
9+
cd core-error-tracker-bugsnag && npm publish && cd ..
10+
cd core-error-tracker-raygun && npm publish && cd ..
11+
cd core-error-tracker-rollbar && npm publish && cd ..
12+
cd core-error-tracker-sentry && npm publish && cd ..
13+
cd core-event-emitter && npm publish && cd ..
14+
cd core-exchange-json-rpc && npm publish && cd ..
15+
cd core-explorer && npm publish && cd ..
16+
cd core-forger && npm publish && cd ..
17+
cd core-http-utils && npm publish && cd ..
18+
cd core-interfaces && npm publish && cd ..
19+
cd core-jest-matchers && npm publish && cd ..
20+
cd core-logger && npm publish && cd ..
21+
cd core-logger-pino && npm publish && cd ..
22+
cd core-logger-signale && npm publish && cd ..
23+
cd core-logger-winston && npm publish && cd ..
24+
cd core-new-relic && npm publish && cd ..
25+
cd core-p2p && npm publish && cd ..
26+
cd core-snapshots && npm publish && cd ..
27+
cd core-state && npm publish && cd ..
28+
cd core-tester-cli && npm publish && cd ..
29+
cd core-transaction-pool && npm publish && cd ..
30+
cd core-transactions && npm publish && cd ..
31+
cd core-utils && npm publish && cd ..
32+
cd core-vote-report && npm publish && cd ..
33+
cd core-wallet-api && npm publish && cd ..
34+
cd core-webhooks && npm publish && cd ..
35+
cd core && npm publish && cd ..

packages/core-api/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-api",
3-
"version": "2.5.37",
3+
"version": "2.5.38",
44
"description": "Public API for ARK Core",
55
"license": "MIT",
66
"contributors": [
@@ -21,12 +21,12 @@
2121
"pretest": "bash ../../scripts/pre-test.sh"
2222
},
2323
"dependencies": {
24-
"@arkecosystem/core-container": "^2.5.37",
25-
"@arkecosystem/core-http-utils": "^2.5.37",
26-
"@arkecosystem/core-interfaces": "^2.5.37",
27-
"@arkecosystem/core-transaction-pool": "^2.5.37",
28-
"@arkecosystem/core-utils": "^2.5.37",
29-
"@arkecosystem/crypto": "^2.5.37",
24+
"@arkecosystem/core-container": "^2.5.38",
25+
"@arkecosystem/core-http-utils": "^2.5.38",
26+
"@arkecosystem/core-interfaces": "^2.5.38",
27+
"@arkecosystem/core-transaction-pool": "^2.5.38",
28+
"@arkecosystem/core-utils": "^2.5.38",
29+
"@arkecosystem/crypto": "^2.5.38",
3030
"@arkecosystem/utils": "^0.3.0",
3131
"@hapi/boom": "^7.4.2",
3232
"@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.5.37",
3+
"version": "2.5.38",
44
"description": "Blockchain Manager for ARK Core",
55
"license": "MIT",
66
"contributors": [
@@ -22,14 +22,14 @@
2222
"pretest": "bash ../../scripts/pre-test.sh"
2323
},
2424
"dependencies": {
25-
"@arkecosystem/core-container": "^2.5.37",
26-
"@arkecosystem/core-database": "^2.5.37",
27-
"@arkecosystem/core-event-emitter": "^2.5.37",
28-
"@arkecosystem/core-interfaces": "^2.5.37",
29-
"@arkecosystem/core-state": "^2.5.37",
30-
"@arkecosystem/core-transactions": "^2.5.37",
31-
"@arkecosystem/core-utils": "^2.5.37",
32-
"@arkecosystem/crypto": "^2.5.37",
25+
"@arkecosystem/core-container": "^2.5.38",
26+
"@arkecosystem/core-database": "^2.5.38",
27+
"@arkecosystem/core-event-emitter": "^2.5.38",
28+
"@arkecosystem/core-interfaces": "^2.5.38",
29+
"@arkecosystem/core-state": "^2.5.38",
30+
"@arkecosystem/core-transactions": "^2.5.38",
31+
"@arkecosystem/core-utils": "^2.5.38",
32+
"@arkecosystem/crypto": "^2.5.38",
3333
"async": "^3.1.0",
3434
"delay": "^4.3.0",
3535
"immutable": "^4.0.0-rc.12",
@@ -39,7 +39,7 @@
3939
"xstate": "^4.6.7"
4040
},
4141
"devDependencies": {
42-
"@arkecosystem/core-p2p": "^2.5.37",
42+
"@arkecosystem/core-p2p": "^2.5.38",
4343
"@types/async": "^3.0.0",
4444
"@types/lodash.get": "^4.4.6",
4545
"@types/pluralize": "^0.0.29",

packages/core-container/package.json

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

packages/core-database-postgres/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-database-postgres",
3-
"version": "2.5.37",
3+
"version": "2.5.38",
44
"description": "PostgreSQL integration 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.5.37",
25-
"@arkecosystem/core-database": "^2.5.37",
26-
"@arkecosystem/core-interfaces": "^2.5.37",
27-
"@arkecosystem/core-state": "^2.5.37",
28-
"@arkecosystem/core-transactions": "^2.5.37",
29-
"@arkecosystem/core-utils": "^2.5.37",
30-
"@arkecosystem/crypto": "^2.5.37",
24+
"@arkecosystem/core-container": "^2.5.38",
25+
"@arkecosystem/core-database": "^2.5.38",
26+
"@arkecosystem/core-interfaces": "^2.5.38",
27+
"@arkecosystem/core-state": "^2.5.38",
28+
"@arkecosystem/core-transactions": "^2.5.38",
29+
"@arkecosystem/core-utils": "^2.5.38",
30+
"@arkecosystem/crypto": "^2.5.38",
3131
"@arkecosystem/utils": "^0.3.0",
3232
"bluebird": "^3.5.5",
3333
"cpy-cli": "^2.0.0",

packages/core-database/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-database",
3-
"version": "2.5.37",
3+
"version": "2.5.38",
44
"description": "Database Interface for ARK Core",
55
"license": "MIT",
66
"contributors": [
@@ -22,12 +22,12 @@
2222
"pretest": "bash ../../scripts/pre-test.sh"
2323
},
2424
"dependencies": {
25-
"@arkecosystem/core-container": "^2.5.37",
26-
"@arkecosystem/core-event-emitter": "^2.5.37",
27-
"@arkecosystem/core-interfaces": "^2.5.37",
28-
"@arkecosystem/core-transactions": "^2.5.37",
29-
"@arkecosystem/core-utils": "^2.5.37",
30-
"@arkecosystem/crypto": "^2.5.37",
25+
"@arkecosystem/core-container": "^2.5.38",
26+
"@arkecosystem/core-event-emitter": "^2.5.38",
27+
"@arkecosystem/core-interfaces": "^2.5.38",
28+
"@arkecosystem/core-transactions": "^2.5.38",
29+
"@arkecosystem/core-utils": "^2.5.38",
30+
"@arkecosystem/crypto": "^2.5.38",
3131
"@arkecosystem/utils": "^0.3.0",
3232
"lodash.clonedeep": "^4.5.0",
3333
"lodash.compact": "^3.0.1",

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.5.37",
3+
"version": "2.5.38",
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.5.37",
22-
"@arkecosystem/core-event-emitter": "^2.5.37",
23-
"@arkecosystem/core-http-utils": "^2.5.37",
24-
"@arkecosystem/core-interfaces": "^2.5.37",
25-
"@arkecosystem/crypto": "^2.5.37",
21+
"@arkecosystem/core-container": "^2.5.38",
22+
"@arkecosystem/core-event-emitter": "^2.5.38",
23+
"@arkecosystem/core-http-utils": "^2.5.38",
24+
"@arkecosystem/core-interfaces": "^2.5.38",
25+
"@arkecosystem/crypto": "^2.5.38",
2626
"@elastic/elasticsearch": "^7.2.0",
2727
"@hapi/boom": "^7.4.2",
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.5.37",
3+
"version": "2.5.38",
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.5.37",
21+
"@arkecosystem/core-container": "^2.5.38",
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.5.37",
3+
"version": "2.5.38",
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.5.37",
21+
"@arkecosystem/core-container": "^2.5.38",
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.5.37",
3+
"version": "2.5.38",
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.5.37",
21+
"@arkecosystem/core-container": "^2.5.38",
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.5.37",
3+
"version": "2.5.38",
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.5.37",
21+
"@arkecosystem/core-container": "^2.5.38",
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.5.37",
3+
"version": "2.5.38",
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.5.37",
21+
"@arkecosystem/core-container": "^2.5.38",
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.5.37",
3+
"version": "2.5.38",
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.5.37",
3+
"version": "2.5.38",
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.5.37",
23-
"@arkecosystem/core-interfaces": "^2.5.37",
22+
"@arkecosystem/core-container": "^2.5.38",
23+
"@arkecosystem/core-interfaces": "^2.5.38",
2424
"@arkecosystem/exchange-json-rpc": "^1.0.3"
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.5.37",
3+
"version": "2.5.38",
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.5.37",
23-
"@arkecosystem/core-interfaces": "^2.5.37",
22+
"@arkecosystem/core-container": "^2.5.38",
23+
"@arkecosystem/core-interfaces": "^2.5.38",
2424
"connect-history-api-fallback": "^1.6.0",
2525
"express": "^4.17.1"
2626
},

packages/core-forger/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arkecosystem/core-forger",
3-
"version": "2.5.37",
3+
"version": "2.5.38",
44
"description": "Forger for ARK Core",
55
"license": "MIT",
66
"contributors": [
@@ -21,12 +21,12 @@
2121
"pretest": "bash ../../scripts/pre-test.sh"
2222
},
2323
"dependencies": {
24-
"@arkecosystem/core-container": "^2.5.37",
25-
"@arkecosystem/core-event-emitter": "^2.5.37",
26-
"@arkecosystem/core-interfaces": "^2.5.37",
27-
"@arkecosystem/core-p2p": "^2.5.37",
28-
"@arkecosystem/core-utils": "^2.5.37",
29-
"@arkecosystem/crypto": "^2.5.37",
24+
"@arkecosystem/core-container": "^2.5.38",
25+
"@arkecosystem/core-event-emitter": "^2.5.38",
26+
"@arkecosystem/core-interfaces": "^2.5.38",
27+
"@arkecosystem/core-p2p": "^2.5.38",
28+
"@arkecosystem/core-utils": "^2.5.38",
29+
"@arkecosystem/crypto": "^2.5.38",
3030
"delay": "^4.3.0",
3131
"lodash.isempty": "^4.4.0",
3232
"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.5.37",
3+
"version": "2.5.38",
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.5.37",
22-
"@arkecosystem/core-utils": "^2.5.37",
23-
"@arkecosystem/crypto": "^2.5.37",
21+
"@arkecosystem/core-container": "^2.5.38",
22+
"@arkecosystem/core-utils": "^2.5.38",
23+
"@arkecosystem/crypto": "^2.5.38",
2424
"@hapi/boom": "^7.4.2",
2525
"@hapi/good": "^8.2.0",
2626
"@hapi/good-console": "^8.1.0",

0 commit comments

Comments
 (0)