Skip to content

Commit

Permalink
release: 2.4.0-next.1 (#2541)
Browse files Browse the repository at this point in the history
  • Loading branch information
faustbrian committed May 8, 2019
1 parent afb69f2 commit e774e70
Show file tree
Hide file tree
Showing 35 changed files with 154 additions and 152 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -82,6 +82,7 @@ As we move towards 2.6 and the completion of AIP11, AIP18 and AIP29 there will b
- Remove extraneous Client class in `@arkecosystem/crypto` ([#2417])
- Split the `Crypto` class into `Hash` and `Transaction` in `@arkecosystem/crypto` ([#2444])
- Invalidate blocks with expired transactions ([#2528])
- Transaction type agnostic wallet bootstrap to support AIP29 ([#2539])

### Removed

Expand Down Expand Up @@ -629,3 +630,4 @@ Closed security vulnerabilities:
[#2526]: https://github.com/ARKEcosystem/core/pull/2526
[#2528]: https://github.com/ARKEcosystem/core/pull/2528
[#2529]: https://github.com/ARKEcosystem/core/pull/2529
[#2539]: https://github.com/ARKEcosystem/core/pull/2539
2 changes: 1 addition & 1 deletion lerna.json
Expand Up @@ -3,5 +3,5 @@
"npmClient": "yarn",
"packages": ["packages/*", "plugins/*"],
"useWorkspaces": true,
"version": "2.4.0-next.0"
"version": "2.4.0-next.1"
}
14 changes: 7 additions & 7 deletions packages/core-api/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-api",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "Public API for ARK Core",
"license": "MIT",
"contributors": [
Expand All @@ -21,12 +21,12 @@
"pretest": "bash ../../scripts/pre-test.sh"
},
"dependencies": {
"@arkecosystem/core-container": "^2.4.0-next.0",
"@arkecosystem/core-http-utils": "^2.4.0-next.0",
"@arkecosystem/core-interfaces": "^2.4.0-next.0",
"@arkecosystem/core-transaction-pool": "^2.4.0-next.0",
"@arkecosystem/core-utils": "^2.4.0-next.0",
"@arkecosystem/crypto": "^2.4.0-next.0",
"@arkecosystem/core-container": "^2.4.0-next.1",
"@arkecosystem/core-http-utils": "^2.4.0-next.1",
"@arkecosystem/core-interfaces": "^2.4.0-next.1",
"@arkecosystem/core-transaction-pool": "^2.4.0-next.1",
"@arkecosystem/core-utils": "^2.4.0-next.1",
"@arkecosystem/crypto": "^2.4.0-next.1",
"@arkecosystem/utils": "^0.3.0",
"@faustbrian/dato": "^0.3.0",
"@faustbrian/hapi-version": "^0.2.11",
Expand Down
16 changes: 8 additions & 8 deletions packages/core-blockchain/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-blockchain",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "Blockchain Manager for ARK Core",
"license": "MIT",
"contributors": [
Expand All @@ -22,12 +22,12 @@
"pretest": "bash ../../scripts/pre-test.sh"
},
"dependencies": {
"@arkecosystem/core-container": "^2.4.0-next.0",
"@arkecosystem/core-database": "^2.4.0-next.0",
"@arkecosystem/core-interfaces": "^2.4.0-next.0",
"@arkecosystem/core-transactions": "^2.4.0-next.0",
"@arkecosystem/core-utils": "^2.4.0-next.0",
"@arkecosystem/crypto": "^2.4.0-next.0",
"@arkecosystem/core-container": "^2.4.0-next.1",
"@arkecosystem/core-database": "^2.4.0-next.1",
"@arkecosystem/core-interfaces": "^2.4.0-next.1",
"@arkecosystem/core-transactions": "^2.4.0-next.1",
"@arkecosystem/core-utils": "^2.4.0-next.1",
"@arkecosystem/crypto": "^2.4.0-next.1",
"async": "^2.6.2",
"delay": "^4.2.0",
"immutable": "^4.0.0-rc.12",
Expand All @@ -37,7 +37,7 @@
"xstate": "^4.5.0"
},
"devDependencies": {
"@arkecosystem/core-p2p": "^2.4.0-next.0",
"@arkecosystem/core-p2p": "^2.4.0-next.1",
"@types/async": "^2.4.1",
"@types/lodash.get": "^4.4.6",
"@types/pluralize": "^0.0.29",
Expand Down
6 changes: 3 additions & 3 deletions packages/core-container/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-container",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "Container for ARK Core",
"license": "MIT",
"contributors": [
Expand All @@ -19,8 +19,8 @@
"prepublishOnly": "yarn build"
},
"dependencies": {
"@arkecosystem/core-interfaces": "^2.4.0-next.0",
"@arkecosystem/crypto": "^2.4.0-next.0",
"@arkecosystem/core-interfaces": "^2.4.0-next.1",
"@arkecosystem/crypto": "^2.4.0-next.1",
"@hapi/hoek": "^6.2.1",
"@hapi/joi": "^15.0.1",
"awilix": "^4.2.2",
Expand Down
14 changes: 7 additions & 7 deletions packages/core-database-postgres/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-database-postgres",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "PostgreSQL integration for ARK Core",
"license": "MIT",
"contributors": [
Expand All @@ -21,12 +21,12 @@
"pretest": "bash ../../scripts/pre-test.sh"
},
"dependencies": {
"@arkecosystem/core-container": "^2.4.0-next.0",
"@arkecosystem/core-database": "^2.4.0-next.0",
"@arkecosystem/core-interfaces": "^2.4.0-next.0",
"@arkecosystem/core-utils": "^2.4.0-next.0",
"@arkecosystem/core-transactions": "^2.4.0-next.0",
"@arkecosystem/crypto": "^2.4.0-next.0",
"@arkecosystem/core-container": "^2.4.0-next.1",
"@arkecosystem/core-database": "^2.4.0-next.1",
"@arkecosystem/core-interfaces": "^2.4.0-next.1",
"@arkecosystem/core-transactions": "^2.4.0-next.1",
"@arkecosystem/core-utils": "^2.4.0-next.1",
"@arkecosystem/crypto": "^2.4.0-next.1",
"@arkecosystem/utils": "^0.3.0",
"@faustbrian/dato": "^0.3.0",
"@types/bluebird": "^3.5.26",
Expand Down
14 changes: 7 additions & 7 deletions packages/core-database/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-database",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "Database Interface for ARK Core",
"license": "MIT",
"contributors": [
Expand All @@ -22,12 +22,12 @@
"pretest": "bash ../../scripts/pre-test.sh"
},
"dependencies": {
"@arkecosystem/core-container": "^2.4.0-next.0",
"@arkecosystem/core-event-emitter": "^2.4.0-next.0",
"@arkecosystem/core-interfaces": "^2.4.0-next.0",
"@arkecosystem/core-transactions": "^2.4.0-next.0",
"@arkecosystem/core-utils": "^2.4.0-next.0",
"@arkecosystem/crypto": "^2.4.0-next.0",
"@arkecosystem/core-container": "^2.4.0-next.1",
"@arkecosystem/core-event-emitter": "^2.4.0-next.1",
"@arkecosystem/core-interfaces": "^2.4.0-next.1",
"@arkecosystem/core-transactions": "^2.4.0-next.1",
"@arkecosystem/core-utils": "^2.4.0-next.1",
"@arkecosystem/crypto": "^2.4.0-next.1",
"@arkecosystem/utils": "^0.3.0",
"lodash.clonedeep": "^4.5.0",
"lodash.compact": "^3.0.1",
Expand Down
12 changes: 6 additions & 6 deletions packages/core-elasticsearch/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-elasticsearch",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "A powerful Elasticsearch integration for ARK Core",
"license": "MIT",
"contributors": [
Expand All @@ -18,11 +18,11 @@
"prepublishOnly": "yarn build"
},
"dependencies": {
"@arkecosystem/core-container": "^2.4.0-next.0",
"@arkecosystem/core-event-emitter": "^2.4.0-next.0",
"@arkecosystem/core-http-utils": "^2.4.0-next.0",
"@arkecosystem/core-interfaces": "^2.4.0-next.0",
"@arkecosystem/crypto": "^2.4.0-next.0",
"@arkecosystem/core-container": "^2.4.0-next.1",
"@arkecosystem/core-event-emitter": "^2.4.0-next.1",
"@arkecosystem/core-http-utils": "^2.4.0-next.1",
"@arkecosystem/core-interfaces": "^2.4.0-next.1",
"@arkecosystem/crypto": "^2.4.0-next.1",
"@hapi/boom": "^7.4.2",
"@hapi/joi": "^15.0.1",
"elasticsearch": "^15.5.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/core-error-tracker-airbrake/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-error-tracker-airbrake",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "Airbrake error tracker integration for ARK Core.",
"license": "MIT",
"contributors": [
Expand All @@ -18,7 +18,7 @@
"prepublishOnly": "yarn build"
},
"dependencies": {
"@arkecosystem/core-container": "^2.4.0-next.0",
"@arkecosystem/core-container": "^2.4.0-next.1",
"airbrake-js": "^1.6.6"
},
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions packages/core-error-tracker-bugsnag/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-error-tracker-bugsnag",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "Bugsnag error tracker integration for ARK Core.",
"license": "MIT",
"contributors": [
Expand All @@ -18,7 +18,7 @@
"prepublishOnly": "yarn build"
},
"dependencies": {
"@arkecosystem/core-container": "^2.4.0-next.0",
"@arkecosystem/core-container": "^2.4.0-next.1",
"@bugsnag/js": "^6.2.0"
},
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions packages/core-error-tracker-raygun/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-error-tracker-raygun",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "Raygun error tracker integration for ARK Core.",
"license": "MIT",
"contributors": [
Expand All @@ -18,7 +18,7 @@
"prepublishOnly": "yarn build"
},
"dependencies": {
"@arkecosystem/core-container": "^2.4.0-next.0",
"@arkecosystem/core-container": "^2.4.0-next.1",
"raygun": "^0.10.1"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/core-error-tracker-rollbar/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-error-tracker-rollbar",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "Rollbar error tracker integration for ARK Core.",
"license": "MIT",
"contributors": [
Expand All @@ -18,7 +18,7 @@
"prepublishOnly": "yarn build"
},
"dependencies": {
"@arkecosystem/core-container": "^2.4.0-next.0",
"@arkecosystem/core-container": "^2.4.0-next.1",
"rollbar": "^2.6.1"
},
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions packages/core-error-tracker-sentry/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-error-tracker-sentry",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "Sentry error tracker integration for ARK Core.",
"license": "MIT",
"contributors": [
Expand All @@ -18,7 +18,7 @@
"prepublishOnly": "yarn build"
},
"dependencies": {
"@arkecosystem/core-container": "^2.4.0-next.0",
"@arkecosystem/core-container": "^2.4.0-next.1",
"@sentry/node": "^5.1.0"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core-event-emitter/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-event-emitter",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "Event Manager for ARK Core",
"license": "MIT",
"contributors": [
Expand Down
12 changes: 6 additions & 6 deletions packages/core-forger/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-forger",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "Forger for ARK Core",
"license": "MIT",
"contributors": [
Expand All @@ -21,11 +21,11 @@
"pretest": "bash ../../scripts/pre-test.sh"
},
"dependencies": {
"@arkecosystem/core-container": "^2.4.0-next.0",
"@arkecosystem/core-interfaces": "^2.4.0-next.0",
"@arkecosystem/core-p2p": "^2.4.0-next.0",
"@arkecosystem/core-utils": "^2.4.0-next.0",
"@arkecosystem/crypto": "^2.4.0-next.0",
"@arkecosystem/core-container": "^2.4.0-next.1",
"@arkecosystem/core-interfaces": "^2.4.0-next.1",
"@arkecosystem/core-p2p": "^2.4.0-next.1",
"@arkecosystem/core-utils": "^2.4.0-next.1",
"@arkecosystem/crypto": "^2.4.0-next.1",
"delay": "^4.2.0",
"lodash.isempty": "^4.4.0",
"lodash.uniq": "^4.5.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/core-http-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-http-utils",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "Http Utilities for ARK Core",
"license": "MIT",
"contributors": [
Expand All @@ -18,9 +18,9 @@
"prepublishOnly": "yarn build"
},
"dependencies": {
"@arkecosystem/core-container": "^2.4.0-next.0",
"@arkecosystem/core-utils": "^2.4.0-next.0",
"@arkecosystem/crypto": "^2.4.0-next.0",
"@arkecosystem/core-container": "^2.4.0-next.1",
"@arkecosystem/core-utils": "^2.4.0-next.1",
"@arkecosystem/crypto": "^2.4.0-next.1",
"@hapi/boom": "^7.4.2",
"@hapi/good": "^8.2.0",
"@hapi/good-console": "^8.1.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/core-interfaces/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-interfaces",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "Interface types for essential ARK Core modules",
"license": "MIT",
"contributors": [
Expand All @@ -23,7 +23,7 @@
"pretest": "bash ../../scripts/pre-test.sh"
},
"dependencies": {
"@arkecosystem/crypto": "^2.4.0-next.0",
"@arkecosystem/crypto": "^2.4.0-next.1",
"@faustbrian/dato": "^0.3.0",
"awilix": "^4.2.2"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/core-jest-matchers/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-jest-matchers",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "Jest matchers for ARK Core",
"license": "MIT",
"contributors": [
Expand All @@ -20,8 +20,8 @@
"prepublishOnly": "yarn build"
},
"dependencies": {
"@arkecosystem/core-container": "^2.4.0-next.0",
"@arkecosystem/crypto": "^2.4.0-next.0",
"@arkecosystem/core-container": "^2.4.0-next.1",
"@arkecosystem/crypto": "^2.4.0-next.1",
"@arkecosystem/utils": "^0.3.0",
"bip39": "^3.0.1",
"jest-extended": "^0.11.1",
Expand Down
14 changes: 7 additions & 7 deletions packages/core-json-rpc/package.json
@@ -1,6 +1,6 @@
{
"name": "@arkecosystem/core-json-rpc",
"version": "2.4.0-next.0",
"version": "2.4.0-next.1",
"description": "A JSON-RPC 2.0 Specification compliant server to interact with the ARK Blockchain.",
"license": "MIT",
"contributors": [
Expand All @@ -20,11 +20,11 @@
"pretest": "bash ../../scripts/pre-test.sh"
},
"dependencies": {
"@arkecosystem/core-container": "^2.4.0-next.0",
"@arkecosystem/core-http-utils": "^2.4.0-next.0",
"@arkecosystem/core-interfaces": "^2.4.0-next.0",
"@arkecosystem/core-utils": "^2.4.0-next.0",
"@arkecosystem/crypto": "^2.4.0-next.0",
"@arkecosystem/core-container": "^2.4.0-next.1",
"@arkecosystem/core-http-utils": "^2.4.0-next.1",
"@arkecosystem/core-interfaces": "^2.4.0-next.1",
"@arkecosystem/core-utils": "^2.4.0-next.1",
"@arkecosystem/crypto": "^2.4.0-next.1",
"@hapi/boom": "^7.4.2",
"@keyv/sqlite": "^2.0.0",
"bip39": "^3.0.1",
Expand All @@ -35,7 +35,7 @@
"wif": "^2.0.6"
},
"devDependencies": {
"@arkecosystem/core-p2p": "^2.4.0-next.0",
"@arkecosystem/core-p2p": "^2.4.0-next.1",
"@types/bip39": "^2.4.2",
"@types/hapi__boom": "^7.4.0",
"@types/is-reachable": "^3.1.0",
Expand Down

0 comments on commit e774e70

Please sign in to comment.