chore(release): 4.1.0-beta.3

This commit is contained in:
Michael Bradley, Jr 2019-06-07 13:42:13 -05:00
parent d264070069
commit ff3100b035
108 changed files with 673 additions and 191 deletions

View File

@ -3,6 +3,29 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
### Bug Fixes
* **@cockpit/explorer:** slice contract function result string only if starts/ends with double-quote ([ac76a40](https://github.com/embark-framework/embark/commit/ac76a40)), closes [#1636](https://github.com/embark-framework/embark/issues/1636)
* **@embark/swarm:** update url-scheme to bzz-raw ([6d844d7](https://github.com/embark-framework/embark/commit/6d844d7))
* **@embark/test-runner:** don't try to deploy and register ENS domains after JS tests have run ([e5fc12e](https://github.com/embark-framework/embark/commit/e5fc12e))
* gas estimates in test ([#1650](https://github.com/embark-framework/embark/issues/1650)) ([312c631](https://github.com/embark-framework/embark/commit/312c631))
* packages/embark/package.json to reduce vulnerabilities ([9029bfe](https://github.com/embark-framework/embark/commit/9029bfe))
* **@embarkjs:** unconditionally require symlinked embarkjs-* modules ([b45b2e2](https://github.com/embark-framework/embark/commit/b45b2e2))
* **@embarkjs/whisper:** don't rely on global EmbarkJS in whisper APIs ([f2903e7](https://github.com/embark-framework/embark/commit/f2903e7)), closes [/github.com/embark-framework/embark/blob/ac76a40a6156603fa436f1fe173835cff5fb0c3d/packages/embarkjs-whisper/src/index.js#L43-L62](https://github.com//github.com/embark-framework/embark/blob/ac76a40a6156603fa436f1fe173835cff5fb0c3d/packages/embarkjs-whisper/src/index.js/issues/L43-L62) [/github.com/embark-framework/embark/blob/ac76a40a6156603fa436f1fe173835cff5fb0c3d/packages/embarkjs-whisper/src/index.js#L64-L73](https://github.com//github.com/embark-framework/embark/blob/ac76a40a6156603fa436f1fe173835cff5fb0c3d/packages/embarkjs-whisper/src/index.js/issues/L64-L73) [/github.com/embark-framework/embark/blob/ac76a40a6156603fa436f1fe173835cff5fb0c3d/packages/embark-code-runner/src/index.ts#L33](https://github.com//github.com/embark-framework/embark/blob/ac76a40a6156603fa436f1fe173835cff5fb0c3d/packages/embark-code-runner/src/index.ts/issues/L33)
### Features
* **@cockpit/explorer:** enable users to send ether through payable methods ([#1649](https://github.com/embark-framework/embark/issues/1649)) ([d10c0b7](https://github.com/embark-framework/embark/commit/d10c0b7))
* **@embark/cli:** exit with error if --template and --contracts-only are both used with 'new' cmd ([d477adc](https://github.com/embark-framework/embark/commit/d477adc))
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-dapp-template-boilerplate
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-dapp-template-boilerplate **Note:** Version bump only for package embark-dapp-template-boilerplate

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-dapp-template-boilerplate", "name": "embark-dapp-template-boilerplate",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"description": "Basic DApp template for Embark", "description": "Basic DApp template for Embark",
"homepage": "https://github.com/embark-framework/embark/tree/master/dapps/templates/boilerplate#readme", "homepage": "https://github.com/embark-framework/embark/tree/master/dapps/templates/boilerplate#readme",
"bugs": "https://github.com/embark-framework/embark/issues", "bugs": "https://github.com/embark-framework/embark/issues",
@ -33,9 +33,9 @@
"url": "https://github.com/embark-framework/embark.git" "url": "https://github.com/embark-framework/embark.git"
}, },
"devDependencies": { "devDependencies": {
"embark": "^4.1.0-beta.2", "embark": "^4.1.0-beta.3",
"embark-reset": "^4.1.0-beta.0", "embark-reset": "^4.1.0-beta.3",
"embarkjs-connector-web3": "^4.1.0-beta.2", "embarkjs-connector-web3": "^4.1.0-beta.3",
"npm-run-all": "4.1.5", "npm-run-all": "4.1.5",
"rimraf": "2.6.3" "rimraf": "2.6.3"
} }

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-dapp-template-demo
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-dapp-template-demo **Note:** Version bump only for package embark-dapp-template-demo

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-dapp-template-demo", "name": "embark-dapp-template-demo",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"description": "Demo DApp for Embark", "description": "Demo DApp for Embark",
"homepage": "https://github.com/embark-framework/embark/tree/master/dapps/templates/demo#readme", "homepage": "https://github.com/embark-framework/embark/tree/master/dapps/templates/demo#readme",
"bugs": "https://github.com/embark-framework/embark/issues", "bugs": "https://github.com/embark-framework/embark/issues",
@ -34,9 +34,9 @@
}, },
"devDependencies": { "devDependencies": {
"bootstrap": "3.3.7", "bootstrap": "3.3.7",
"embark": "^4.1.0-beta.2", "embark": "^4.1.0-beta.3",
"embark-reset": "^4.1.0-beta.0", "embark-reset": "^4.1.0-beta.3",
"embarkjs-connector-web3": "^4.1.0-beta.2", "embarkjs-connector-web3": "^4.1.0-beta.3",
"npm-run-all": "4.1.5", "npm-run-all": "4.1.5",
"react": "16.7.0", "react": "16.7.0",
"react-bootstrap": "0.32.4", "react-bootstrap": "0.32.4",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-dapp-template-simple
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-dapp-template-simple **Note:** Version bump only for package embark-dapp-template-simple

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-dapp-template-simple", "name": "embark-dapp-template-simple",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"description": "Contracts-only DApp template for Embark", "description": "Contracts-only DApp template for Embark",
"homepage": "https://github.com/embark-framework/embark/tree/master/dapps/templates/simple#readme", "homepage": "https://github.com/embark-framework/embark/tree/master/dapps/templates/simple#readme",
"bugs": "https://github.com/embark-framework/embark/issues", "bugs": "https://github.com/embark-framework/embark/issues",
@ -29,9 +29,9 @@
"url": "https://github.com/embark-framework/embark.git" "url": "https://github.com/embark-framework/embark.git"
}, },
"devDependencies": { "devDependencies": {
"embark": "^4.1.0-beta.2", "embark": "^4.1.0-beta.3",
"embark-reset": "^4.1.0-beta.0", "embark-reset": "^4.1.0-beta.3",
"embarkjs-connector-web3": "^4.1.0-beta.2", "embarkjs-connector-web3": "^4.1.0-beta.3",
"npm-run-all": "4.1.5", "npm-run-all": "4.1.5",
"rimraf": "2.6.3" "rimraf": "2.6.3"
} }

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
### Bug Fixes
* **@embark/swarm:** update url-scheme to bzz-raw ([6d844d7](https://github.com/embark-framework/embark/commit/6d844d7))
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-dapp-test-app **Note:** Version bump only for package embark-dapp-test-app

View File

@ -3,11 +3,11 @@
"devDependencies": { "devDependencies": {
"@babel/code-frame": "7.0.0", "@babel/code-frame": "7.0.0",
"bootstrap": "3.4.0", "bootstrap": "3.4.0",
"embark": "^4.1.0-beta.2", "embark": "^4.1.0-beta.3",
"embark-dapp-test-service": "^4.0.0", "embark-dapp-test-service": "^4.0.0",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-reset": "^4.1.0-beta.0", "embark-reset": "^4.1.0-beta.3",
"embarkjs-connector-web3": "^4.1.0-beta.2", "embarkjs-connector-web3": "^4.1.0-beta.3",
"fs-extra": "7.0.1", "fs-extra": "7.0.1",
"haml": "0.4.3", "haml": "0.4.3",
"jquery": "3.3.1", "jquery": "3.3.1",
@ -25,5 +25,5 @@
"reset": "npx embark-reset", "reset": "npx embark-reset",
"test": "npx embark test" "test": "npx embark test"
}, },
"version": "4.1.0-beta.2" "version": "4.1.0-beta.3"
} }

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-dapp-test-contracts
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-dapp-test-contracts **Note:** Version bump only for package embark-dapp-test-contracts

View File

@ -1,9 +1,9 @@
{ {
"description": "Test DApp for integration testing purposes", "description": "Test DApp for integration testing purposes",
"devDependencies": { "devDependencies": {
"embark": "^4.1.0-beta.2", "embark": "^4.1.0-beta.3",
"embark-reset": "^4.1.0-beta.0", "embark-reset": "^4.1.0-beta.3",
"embarkjs-connector-web3": "^4.1.0-beta.2" "embarkjs-connector-web3": "^4.1.0-beta.3"
}, },
"name": "embark-dapp-test-contracts", "name": "embark-dapp-test-contracts",
"private": true, "private": true,
@ -14,5 +14,5 @@
"reset": "npx embark-reset", "reset": "npx embark-reset",
"test": "npx embark test" "test": "npx embark test"
}, },
"version": "4.1.0-beta.2" "version": "4.1.0-beta.3"
} }

View File

@ -16,5 +16,5 @@
}, },
"npmClient": "yarn", "npmClient": "yarn",
"useWorkspaces": true, "useWorkspaces": true,
"version": "4.1.0-beta.2" "version": "4.1.0-beta.3"
} }

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-api-client
# [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15) # [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15)
**Note:** Version bump only for package embark-api-client **Note:** Version bump only for package embark-api-client

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-api-client", "name": "embark-api-client",
"version": "4.1.0-beta.1", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Embark api module", "description": "Embark api module",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-api
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-api **Note:** Version bump only for package embark-api

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-api", "name": "embark-api",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Embark api module", "description": "Embark api module",
@ -43,9 +43,9 @@
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"colors": "1.3.2", "colors": "1.3.2",
"embark-async-wrapper": "^4.1.0-beta.1", "embark-async-wrapper": "^4.1.0-beta.3",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2" "embark-utils": "^4.1.0-beta.3"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "7.2.3", "@babel/cli": "7.2.3",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-async-wrapper
# [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15) # [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15)
**Note:** Version bump only for package embark-async-wrapper **Note:** Version bump only for package embark-async-wrapper

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-async-wrapper", "name": "embark-async-wrapper",
"version": "4.1.0-beta.1", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Extensions to caolan/async used by Embark", "description": "Extensions to caolan/async used by Embark",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-authenticator
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-authenticator **Note:** Version bump only for package embark-authenticator

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-authenticator", "name": "embark-authenticator",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Authenticator module for Embark's Cockpit", "description": "Authenticator module for Embark's Cockpit",
@ -47,8 +47,8 @@
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"keccakjs": "0.2.3", "keccakjs": "0.2.3",
"uuid": "3.3.2" "uuid": "3.3.2"
}, },

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-blockchain-connector
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-blockchain-connector **Note:** Version bump only for package embark-blockchain-connector

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-blockchain-connector", "name": "embark-blockchain-connector",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Blockchain Connector for Embark", "description": "Blockchain Connector for Embark",
@ -48,10 +48,10 @@
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "2.6.1", "async": "2.6.1",
"embark-core": "^4.1.0-beta.2", "embark-core": "^4.1.0-beta.3",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"embarkjs": "^4.1.0-beta.2", "embarkjs": "^4.1.0-beta.3",
"ethereumjs-tx": "1.3.7", "ethereumjs-tx": "1.3.7",
"ethereumjs-util": "6.0.0", "ethereumjs-util": "6.0.0",
"ganache-cli": "6.4.3", "ganache-cli": "6.4.3",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-blockchain-listener
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-blockchain-listener **Note:** Version bump only for package embark-blockchain-listener

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-blockchain-listener", "name": "embark-blockchain-listener",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Blockchain Listener APIs for Embark", "description": "Blockchain Listener APIs for Embark",
@ -48,9 +48,9 @@
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "2.6.1", "async": "2.6.1",
"embark-core": "^4.1.0-beta.2", "embark-core": "^4.1.0-beta.3",
"embark-process-logs-api": "^4.1.0-beta.2", "embark-process-logs-api": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"web3": "1.0.0-beta.37" "web3": "1.0.0-beta.37"
}, },
"devDependencies": { "devDependencies": {

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-blockchain-process
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-blockchain-process **Note:** Version bump only for package embark-blockchain-process

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-blockchain-process", "name": "embark-blockchain-process",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Blockchain process abstraction for Embark", "description": "Blockchain process abstraction for Embark",
@ -48,10 +48,10 @@
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "2.6.1", "async": "2.6.1",
"embark-core": "^4.1.0-beta.2", "embark-core": "^4.1.0-beta.3",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-logger": "^4.1.0-beta.2", "embark-logger": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"ethereumjs-tx": "1.3.7", "ethereumjs-tx": "1.3.7",
"ethereumjs-util": "6.0.0", "ethereumjs-util": "6.0.0",
"fs-extra": "7.0.1", "fs-extra": "7.0.1",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-code-generator
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-code-generator **Note:** Version bump only for package embark-code-generator

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-code-generator", "name": "embark-code-generator",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Embark code generator", "description": "Embark code generator",
@ -50,9 +50,9 @@
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "2.6.1", "async": "2.6.1",
"ejs": "2.6.1", "ejs": "2.6.1",
"embark-core": "^4.1.0-beta.2", "embark-core": "^4.1.0-beta.3",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"fs-extra": "7.0.1" "fs-extra": "7.0.1"
}, },
"devDependencies": { "devDependencies": {

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-code-runner
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-code-runner **Note:** Version bump only for package embark-code-runner

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-code-runner", "name": "embark-code-runner",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Code execution VM for Embark", "description": "Code execution VM for Embark",
@ -48,8 +48,8 @@
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "2.6.1", "async": "2.6.1",
"colors": "1.3.2", "colors": "1.3.2",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"embarkjs": "^4.1.0-beta.2", "embarkjs": "^4.1.0-beta.3",
"fs-extra": "7.0.1", "fs-extra": "7.0.1",
"parse-json": "4.0.0", "parse-json": "4.0.0",
"vm2": "3.6.4", "vm2": "3.6.4",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-compiler
# [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15) # [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15)
**Note:** Version bump only for package embark-compiler **Note:** Version bump only for package embark-compiler

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-compiler", "name": "embark-compiler",
"version": "4.1.0-beta.1", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Embark compiler module", "description": "Embark compiler module",
@ -42,8 +42,8 @@
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"embark-async-wrapper": "^4.1.0-beta.1", "embark-async-wrapper": "^4.1.0-beta.3",
"embark-i18n": "^4.1.0-beta.1" "embark-i18n": "^4.1.0-beta.3"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "7.2.3", "@babel/cli": "7.2.3",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-console-listener
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-console-listener **Note:** Version bump only for package embark-console-listener

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-console-listener", "name": "embark-console-listener",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Console listener component for Embark", "description": "Console listener component for Embark",
@ -48,8 +48,8 @@
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "2.6.1", "async": "2.6.1",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2" "embark-utils": "^4.1.0-beta.3"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "7.2.3", "@babel/cli": "7.2.3",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-console
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-console", "name": "embark-console",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Console component for Embark", "description": "Console component for Embark",
@ -50,9 +50,9 @@
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "2.6.1", "async": "2.6.1",
"chalk": "2.4.2", "chalk": "2.4.2",
"embark-core": "^4.1.0-beta.2", "embark-core": "^4.1.0-beta.3",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"json-stringify-safe": "5.0.1" "json-stringify-safe": "5.0.1"
}, },
"devDependencies": { "devDependencies": {
@ -60,7 +60,7 @@
"@babel/core": "7.2.2", "@babel/core": "7.2.2",
"@types/json-stringify-safe": "5.0.0", "@types/json-stringify-safe": "5.0.0",
"cross-env": "5.2.0", "cross-env": "5.2.0",
"embark-logger": "^4.1.0-beta.2", "embark-logger": "^4.1.0-beta.3",
"eslint": "5.7.0", "eslint": "5.7.0",
"mocha": "5.2.0", "mocha": "5.2.0",
"npm-run-all": "4.1.5", "npm-run-all": "4.1.5",

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
### Features
* **@cockpit/explorer:** enable users to send ether through payable methods ([#1649](https://github.com/embark-framework/embark/issues/1649)) ([d10c0b7](https://github.com/embark-framework/embark/commit/d10c0b7))
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-contracts-manager **Note:** Version bump only for package embark-contracts-manager

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-contracts-manager", "name": "embark-contracts-manager",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Smart contracts manager for Embark", "description": "Smart contracts manager for Embark",
@ -49,9 +49,9 @@
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "2.6.1", "async": "2.6.1",
"clone-deep": "4.0.0", "clone-deep": "4.0.0",
"embark-core": "^4.1.0-beta.2", "embark-core": "^4.1.0-beta.3",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2" "embark-utils": "^4.1.0-beta.3"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "7.2.3", "@babel/cli": "7.2.3",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-core
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-core **Note:** Version bump only for package embark-core

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-core", "name": "embark-core",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Core library for Embark", "description": "Core library for Embark",
@ -48,9 +48,9 @@
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-process-logs-api": "^4.1.0-beta.2", "embark-process-logs-api": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"flatted": "0.2.3", "flatted": "0.2.3",
"fs-extra": "7.0.1", "fs-extra": "7.0.1",
"node-ipc": "9.1.1", "node-ipc": "9.1.1",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-coverage
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-coverage **Note:** Version bump only for package embark-coverage

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-coverage", "name": "embark-coverage",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Code Coverage capabilities for Embark", "description": "Code Coverage capabilities for Embark",
@ -42,8 +42,8 @@
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"embark-core": "^4.1.0-beta.2", "embark-core": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"fs-extra": "7.0.1", "fs-extra": "7.0.1",
"globule": "1.2.1", "globule": "1.2.1",
"semver": "5.6.0", "semver": "5.6.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-debugger
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-debugger **Note:** Version bump only for package embark-debugger

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-debugger", "name": "embark-debugger",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Debugger component for Embark", "description": "Debugger component for Embark",
@ -45,7 +45,7 @@
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "2.6.1", "async": "2.6.1",
"colors": "1.3.2", "colors": "1.3.2",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"remix-debug-debugtest": "0.2.16" "remix-debug-debugtest": "0.2.16"
}, },
"devDependencies": { "devDependencies": {

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-deploy-tracker
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-deploy-tracker **Note:** Version bump only for package embark-deploy-tracker

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-deploy-tracker", "name": "embark-deploy-tracker",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Console component for Embark", "description": "Console component for Embark",
@ -47,7 +47,7 @@
"extends": "../../.eslintrc.json" "extends": "../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"fs-extra": "7.0.1" "fs-extra": "7.0.1"
}, },
"devDependencies": { "devDependencies": {

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
### Bug Fixes
* gas estimates in test ([#1650](https://github.com/embark-framework/embark/issues/1650)) ([312c631](https://github.com/embark-framework/embark/commit/312c631))
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-deployment **Note:** Version bump only for package embark-deployment

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-deployment", "name": "embark-deployment",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Deployment APIs for Embark", "description": "Deployment APIs for Embark",
@ -49,9 +49,9 @@
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "2.6.1", "async": "2.6.1",
"clone-deep": "4.0.0", "clone-deep": "4.0.0",
"embark-core": "^4.1.0-beta.2", "embark-core": "^4.1.0-beta.3",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2" "embark-utils": "^4.1.0-beta.3"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "7.2.3", "@babel/cli": "7.2.3",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-ens
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-ens", "name": "embark-ens",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Implements ENS support in Embark", "description": "Implements ENS support in Embark",
@ -49,11 +49,11 @@
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "^2.6.1", "async": "^2.6.1",
"embark-core": "^4.1.0-beta.2", "embark-core": "^4.1.0-beta.3",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"embarkjs": "^4.1.0-beta.2", "embarkjs": "^4.1.0-beta.3",
"embarkjs-ens": "^4.1.0-beta.2", "embarkjs-ens": "^4.1.0-beta.3",
"eth-ens-namehash": "2.0.8" "eth-ens-namehash": "2.0.8"
}, },
"devDependencies": { "devDependencies": {

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-graph
# [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15) # [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15)
**Note:** Version bump only for package embark-graph **Note:** Version bump only for package embark-graph

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-graph", "name": "embark-graph",
"version": "4.1.0-beta.1", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Smart contract documentation generator for Embark DApps", "description": "Smart contract documentation generator for Embark DApps",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-i18n
# [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15) # [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15)
**Note:** Version bump only for package embark-i18n **Note:** Version bump only for package embark-i18n

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-i18n", "name": "embark-i18n",
"version": "4.1.0-beta.1", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "i18n Support for Embark", "description": "i18n Support for Embark",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-library-manager
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-library-manager **Note:** Version bump only for package embark-library-manager

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-library-manager", "name": "embark-library-manager",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Module for downloading and managing libraries", "description": "Module for downloading and managing libraries",
@ -48,8 +48,8 @@
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"colors": "1.3.2", "colors": "1.3.2",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"live-plugin-manager-git-fix": "0.12.1" "live-plugin-manager-git-fix": "0.12.1"
}, },
"devDependencies": { "devDependencies": {

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-listener
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-listener **Note:** Version bump only for package embark-listener

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-listener", "name": "embark-listener",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Log listening for Embark", "description": "Log listening for Embark",
@ -47,7 +47,7 @@
"extends": "../../.eslintrc.json" "extends": "../../.eslintrc.json"
}, },
"dependencies": { "dependencies": {
"embark-process-logs-api": "^4.1.0-beta.2" "embark-process-logs-api": "^4.1.0-beta.3"
}, },
"devDependencies": { "devDependencies": {
"eslint": "5.7.0", "eslint": "5.7.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-logger
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-logger **Note:** Version bump only for package embark-logger

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-logger", "name": "embark-logger",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Logging utilities for Embark", "description": "Logging utilities for Embark",
@ -49,7 +49,7 @@
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"colors": "1.3.2", "colors": "1.3.2",
"date-and-time": "0.6.2", "date-and-time": "0.6.2",
"embark-utils": "^4.1.0-beta.2" "embark-utils": "^4.1.0-beta.3"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "7.2.3", "@babel/cli": "7.2.3",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-pipeline
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-pipeline", "name": "embark-pipeline",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Build pipeline module for Embark", "description": "Build pipeline module for Embark",
@ -49,9 +49,9 @@
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "2.6.1", "async": "2.6.1",
"colors": "1.3.2", "colors": "1.3.2",
"embark-core": "^4.1.0-beta.2", "embark-core": "^4.1.0-beta.3",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"find-up": "2.1.0", "find-up": "2.1.0",
"fs-extra": "7.0.1", "fs-extra": "7.0.1",
"webpack": "4.29.3" "webpack": "4.29.3"

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-plugin-cmd
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-plugin-cmd **Note:** Version bump only for package embark-plugin-cmd

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-plugin-cmd", "name": "embark-plugin-cmd",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Plugin installation utility for Embark", "description": "Plugin installation utility for Embark",
@ -38,8 +38,8 @@
}, },
"dependencies": { "dependencies": {
"async": "2.6.1", "async": "2.6.1",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2" "embark-utils": "^4.1.0-beta.3"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "7.2.3", "@babel/cli": "7.2.3",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-process-logs-api
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-process-logs-api **Note:** Version bump only for package embark-process-logs-api

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-process-logs-api", "name": "embark-process-logs-api",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Registers APIs for Embark process logs", "description": "Registers APIs for Embark process logs",
@ -47,7 +47,7 @@
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"embark-utils": "^4.1.0-beta.2" "embark-utils": "^4.1.0-beta.3"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "7.2.3", "@babel/cli": "7.2.3",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-profiler
# [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15) # [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15)
**Note:** Version bump only for package embark-profiler **Note:** Version bump only for package embark-profiler

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-profiler", "name": "embark-profiler",
"version": "4.1.0-beta.1", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Smart contract profiler for Embark DApps", "description": "Smart contract profiler for Embark DApps",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-reset
# [4.1.0-beta.0](https://github.com/embark-framework/embark/compare/v4.0.0...v4.1.0-beta.0) (2019-04-17) # [4.1.0-beta.0](https://github.com/embark-framework/embark/compare/v4.0.0...v4.1.0-beta.0) (2019-04-17)
**Note:** Version bump only for package embark-reset **Note:** Version bump only for package embark-reset

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-reset", "name": "embark-reset",
"version": "4.1.0-beta.0", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "DApp reset utlity for Embark", "description": "DApp reset utlity for Embark",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-scaffolding
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-scaffolding **Note:** Version bump only for package embark-scaffolding

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-scaffolding", "name": "embark-scaffolding",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Provides scaffolding utilities", "description": "Provides scaffolding utilities",
@ -42,8 +42,8 @@
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2" "embark-utils": "^4.1.0-beta.3"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "7.2.3", "@babel/cli": "7.2.3",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-solidity
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-solidity **Note:** Version bump only for package embark-solidity

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-solidity", "name": "embark-solidity",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Solidity Compiler APIs for Embark", "description": "Solidity Compiler APIs for Embark",
@ -48,9 +48,9 @@
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "2.6.1", "async": "2.6.1",
"embark-core": "^4.1.0-beta.2", "embark-core": "^4.1.0-beta.3",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"fs-extra": "7.0.1", "fs-extra": "7.0.1",
"live-plugin-manager-git-fix": "0.12.1", "live-plugin-manager-git-fix": "0.12.1",
"semver": "5.6.0", "semver": "5.6.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-specialconfigs
# [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15) # [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15)

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-specialconfigs", "name": "embark-specialconfigs",
"version": "4.1.0-beta.1", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Adds various configs to embark's contract.js config file", "description": "Adds various configs to embark's contract.js config file",
@ -48,7 +48,7 @@
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "2.6.1", "async": "2.6.1",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"viz.js": "1.8.2" "viz.js": "1.8.2"
}, },
"devDependencies": { "devDependencies": {

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
### Bug Fixes
* **@embark/test-runner:** don't try to deploy and register ENS domains after JS tests have run ([e5fc12e](https://github.com/embark-framework/embark/commit/e5fc12e))
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-test-runner **Note:** Version bump only for package embark-test-runner

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-test-runner", "name": "embark-test-runner",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Embark Testrunner", "description": "Embark Testrunner",
@ -48,8 +48,8 @@
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "2.6.1", "async": "2.6.1",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"fs-extra": "7.0.1", "fs-extra": "7.0.1",
"mocha": "5.2.0" "mocha": "5.2.0"
}, },

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-transaction-tracker
# [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15) # [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15)
**Note:** Version bump only for package embark-transaction-tracker **Note:** Version bump only for package embark-transaction-tracker

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-transaction-tracker", "name": "embark-transaction-tracker",
"version": "4.1.0-beta.1", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Transaction tracker for Embark's cockpit", "description": "Transaction tracker for Embark's cockpit",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package @types/embark
# [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15) # [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15)

View File

@ -1,7 +1,7 @@
{ {
"name": "@types/embark", "name": "@types/embark",
"private": true, "private": true,
"version": "4.1.0-beta.1", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "TypeScript definitions for Embark", "description": "TypeScript definitions for Embark",

View File

@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
### Bug Fixes
* **@cockpit/explorer:** slice contract function result string only if starts/ends with double-quote ([ac76a40](https://github.com/embark-framework/embark/commit/ac76a40)), closes [#1636](https://github.com/embark-framework/embark/issues/1636)
### Features
* **@cockpit/explorer:** enable users to send ether through payable methods ([#1649](https://github.com/embark-framework/embark/issues/1649)) ([d10c0b7](https://github.com/embark-framework/embark/commit/d10c0b7))
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-ui", "name": "embark-ui",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Web frontend for interactive DApp development with Embark", "description": "Web frontend for interactive DApp development with Embark",
@ -67,7 +67,7 @@
"date-fns": "1.30.1", "date-fns": "1.30.1",
"dotenv": "6.0.0", "dotenv": "6.0.0",
"dotenv-expand": "4.2.0", "dotenv-expand": "4.2.0",
"embark-api-client": "^4.1.0-beta.1", "embark-api-client": "^4.1.0-beta.3",
"eslint": "5.6.0", "eslint": "5.6.0",
"eslint-config-react-app": "3.0.5", "eslint-config-react-app": "3.0.5",
"eslint-loader": "2.1.1", "eslint-loader": "2.1.1",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-utils
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-utils", "name": "embark-utils",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Utils used by Embark", "description": "Utils used by Embark",
@ -49,7 +49,7 @@
"bip39": "2.5.0", "bip39": "2.5.0",
"clipboardy": "1.2.3", "clipboardy": "1.2.3",
"colors": "1.3.2", "colors": "1.3.2",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"ethereumjs-wallet": "0.6.3", "ethereumjs-wallet": "0.6.3",
"find-up": "2.1.0", "find-up": "2.1.0",
"follow-redirects": "1.5.7", "follow-redirects": "1.5.7",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-vyper
# [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15) # [4.1.0-beta.1](https://github.com/embark-framework/embark/compare/v4.1.0-beta.0...v4.1.0-beta.1) (2019-05-15)
**Note:** Version bump only for package embark-vyper **Note:** Version bump only for package embark-vyper

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-vyper", "name": "embark-vyper",
"version": "4.1.0-beta.1", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Embark wrapper for the Vyper compiler", "description": "Embark wrapper for the Vyper compiler",
@ -47,8 +47,8 @@
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"embark-async-wrapper": "^4.1.0-beta.1", "embark-async-wrapper": "^4.1.0-beta.3",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"shelljs": "0.5.3" "shelljs": "0.5.3"
}, },
"devDependencies": { "devDependencies": {

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-watcher
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-watcher **Note:** Version bump only for package embark-watcher

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-watcher", "name": "embark-watcher",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Watches changes in the file system", "description": "Watches changes in the file system",
@ -48,8 +48,8 @@
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"chokidar": "2.1.6", "chokidar": "2.1.6",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2" "embark-utils": "^4.1.0-beta.3"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "7.2.3", "@babel/cli": "7.2.3",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embark-webserver
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-webserver **Note:** Version bump only for package embark-webserver

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-webserver", "name": "embark-webserver",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Webserver for Embark", "description": "Webserver for Embark",
@ -48,8 +48,8 @@
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "2.6.1", "async": "2.6.1",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"express": "4.16.3", "express": "4.16.3",
"express-http-proxy": "1.5.1", "express-http-proxy": "1.5.1",
"express-ws": "4.0.0", "express-ws": "4.0.0",

View File

@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
### Bug Fixes
* **@embarkjs:** unconditionally require symlinked embarkjs-* modules ([b45b2e2](https://github.com/embark-framework/embark/commit/b45b2e2))
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embark-whisper **Note:** Version bump only for package embark-whisper

View File

@ -1,6 +1,6 @@
{ {
"name": "embark-whisper", "name": "embark-whisper",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Module to add Whisper support to Embark", "description": "Module to add Whisper support to Embark",
@ -48,10 +48,10 @@
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"async": "2.6.1", "async": "2.6.1",
"embark-core": "^4.1.0-beta.2", "embark-core": "^4.1.0-beta.3",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"embarkjs-whisper": "^4.1.0-beta.2", "embarkjs-whisper": "^4.1.0-beta.3",
"rxjs": "6.4.0" "rxjs": "6.4.0"
}, },
"devDependencies": { "devDependencies": {

View File

@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
### Bug Fixes
* packages/embark/package.json to reduce vulnerabilities ([9029bfe](https://github.com/embark-framework/embark/commit/9029bfe))
* **@embarkjs:** unconditionally require symlinked embarkjs-* modules ([b45b2e2](https://github.com/embark-framework/embark/commit/b45b2e2))
### Features
* **@embark/cli:** exit with error if --template and --contracts-only are both used with 'new' cmd ([d477adc](https://github.com/embark-framework/embark/commit/d477adc))
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)

View File

@ -1,6 +1,6 @@
{ {
"name": "embark", "name": "embark",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Embark is a framework that allows you to easily develop and deploy DApps", "description": "Embark is a framework that allows you to easily develop and deploy DApps",
@ -90,48 +90,48 @@
"decompress": "4.2.0", "decompress": "4.2.0",
"deep-equal": "1.0.1", "deep-equal": "1.0.1",
"ejs": "2.6.1", "ejs": "2.6.1",
"embark-api": "^4.1.0-beta.2", "embark-api": "^4.1.0-beta.3",
"embark-authenticator": "^4.1.0-beta.2", "embark-authenticator": "^4.1.0-beta.3",
"embark-blockchain-connector": "^4.1.0-beta.2", "embark-blockchain-connector": "^4.1.0-beta.3",
"embark-blockchain-listener": "^4.1.0-beta.2", "embark-blockchain-listener": "^4.1.0-beta.3",
"embark-blockchain-process": "^4.1.0-beta.2", "embark-blockchain-process": "^4.1.0-beta.3",
"embark-code-generator": "^4.1.0-beta.2", "embark-code-generator": "^4.1.0-beta.3",
"embark-code-runner": "^4.1.0-beta.2", "embark-code-runner": "^4.1.0-beta.3",
"embark-compiler": "^4.1.0-beta.1", "embark-compiler": "^4.1.0-beta.3",
"embark-console": "^4.1.0-beta.2", "embark-console": "^4.1.0-beta.3",
"embark-console-listener": "^4.1.0-beta.2", "embark-console-listener": "^4.1.0-beta.3",
"embark-contracts-manager": "^4.1.0-beta.2", "embark-contracts-manager": "^4.1.0-beta.3",
"embark-core": "^4.1.0-beta.2", "embark-core": "^4.1.0-beta.3",
"embark-coverage": "^4.1.0-beta.2", "embark-coverage": "^4.1.0-beta.3",
"embark-debugger": "^4.1.0-beta.2", "embark-debugger": "^4.1.0-beta.3",
"embark-deploy-tracker": "^4.1.0-beta.2", "embark-deploy-tracker": "^4.1.0-beta.3",
"embark-deployment": "^4.1.0-beta.2", "embark-deployment": "^4.1.0-beta.3",
"embark-ens": "^4.1.0-beta.2", "embark-ens": "^4.1.0-beta.3",
"embark-i18n": "^4.1.0-beta.1", "embark-i18n": "^4.1.0-beta.3",
"embark-library-manager": "^4.1.0-beta.2", "embark-library-manager": "^4.1.0-beta.3",
"embark-listener": "^4.1.0-beta.2", "embark-listener": "^4.1.0-beta.3",
"embark-logger": "^4.1.0-beta.2", "embark-logger": "^4.1.0-beta.3",
"embark-pipeline": "^4.1.0-beta.2", "embark-pipeline": "^4.1.0-beta.3",
"embark-plugin-cmd": "^4.1.0-beta.2", "embark-plugin-cmd": "^4.1.0-beta.3",
"embark-process-logs-api": "^4.1.0-beta.2", "embark-process-logs-api": "^4.1.0-beta.3",
"embark-profiler": "^4.1.0-beta.1", "embark-profiler": "^4.1.0-beta.3",
"embark-reset": "^4.1.0-beta.0", "embark-reset": "^4.1.0-beta.3",
"embark-scaffolding": "^4.1.0-beta.2", "embark-scaffolding": "^4.1.0-beta.3",
"embark-solidity": "^4.1.0-beta.2", "embark-solidity": "^4.1.0-beta.3",
"embark-specialconfigs": "^4.1.0-beta.1", "embark-specialconfigs": "^4.1.0-beta.3",
"embark-test-runner": "^4.1.0-beta.2", "embark-test-runner": "^4.1.0-beta.3",
"embark-transaction-tracker": "^4.1.0-beta.1", "embark-transaction-tracker": "^4.1.0-beta.3",
"embark-ui": "^4.1.0-beta.2", "embark-ui": "^4.1.0-beta.3",
"embark-utils": "^4.1.0-beta.2", "embark-utils": "^4.1.0-beta.3",
"embark-vyper": "^4.1.0-beta.1", "embark-vyper": "^4.1.0-beta.3",
"embark-watcher": "^4.1.0-beta.2", "embark-watcher": "^4.1.0-beta.3",
"embark-webserver": "^4.1.0-beta.2", "embark-webserver": "^4.1.0-beta.3",
"embark-whisper": "^4.1.0-beta.2", "embark-whisper": "^4.1.0-beta.3",
"embarkjs": "^4.1.0-beta.2", "embarkjs": "^4.1.0-beta.3",
"embarkjs-ens": "^4.1.0-beta.2", "embarkjs-ens": "^4.1.0-beta.3",
"embarkjs-ipfs": "^4.1.0-beta.2", "embarkjs-ipfs": "^4.1.0-beta.3",
"embarkjs-swarm": "^4.1.0-beta.2", "embarkjs-swarm": "^4.1.0-beta.3",
"embarkjs-whisper": "^4.1.0-beta.2", "embarkjs-whisper": "^4.1.0-beta.3",
"eth-ens-namehash": "2.0.8", "eth-ens-namehash": "2.0.8",
"ethereumjs-tx": "1.3.7", "ethereumjs-tx": "1.3.7",
"ethereumjs-util": "6.0.0", "ethereumjs-util": "6.0.0",

View File

@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embarkjs-connector-web3
# [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22) # [4.1.0-beta.2](https://github.com/embark-framework/embark/compare/v4.1.0-beta.1...v4.1.0-beta.2) (2019-05-22)
**Note:** Version bump only for package embarkjs-connector-web3 **Note:** Version bump only for package embarkjs-connector-web3

View File

@ -1,6 +1,6 @@
{ {
"name": "embarkjs-connector-web3", "name": "embarkjs-connector-web3",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Web3.js Connector for EmbarkJS", "description": "Web3.js Connector for EmbarkJS",
@ -31,7 +31,7 @@
"reset": "npx rimraf embark-*.tgz package" "reset": "npx rimraf embark-*.tgz package"
}, },
"dependencies": { "dependencies": {
"embark-utils": "^4.1.0-beta.2" "embark-utils": "^4.1.0-beta.3"
}, },
"devDependencies": { "devDependencies": {
"rimraf": "2.6.3" "rimraf": "2.6.3"

View File

@ -0,0 +1,8 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [4.1.0-beta.3](https://github.com/embark-framework/embark/compare/v4.1.0-beta.2...v4.1.0-beta.3) (2019-06-07)
**Note:** Version bump only for package embarkjs-ens

View File

@ -1,6 +1,6 @@
{ {
"name": "embarkjs-ens", "name": "embarkjs-ens",
"version": "4.1.0-beta.2", "version": "4.1.0-beta.3",
"author": "Iuri Matias <iuri.matias@gmail.com>", "author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [], "contributors": [],
"description": "Ens plugin for embarkjs", "description": "Ens plugin for embarkjs",
@ -51,7 +51,7 @@
}, },
"dependencies": { "dependencies": {
"@babel/runtime-corejs2": "7.3.1", "@babel/runtime-corejs2": "7.3.1",
"embarkjs": "^4.1.0-beta.2", "embarkjs": "^4.1.0-beta.3",
"eth-ens-namehash": "2.0.8", "eth-ens-namehash": "2.0.8",
"web3": "1.0.0-beta.37" "web3": "1.0.0-beta.37"
}, },

Some files were not shown because too many files have changed in this diff Show More