mirror of https://github.com/embarklabs/embark.git
chore(release): 4.1.0-beta.6
This commit is contained in:
parent
33eab74ebd
commit
cda40b93c4
31
CHANGELOG.md
31
CHANGELOG.md
|
@ -3,6 +3,37 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **@embark/accountParser:** exit on unsupported account configs ([78bb9bc](https://github.com/embark-framework/embark/commit/78bb9bc))
|
||||
* **@embark/cli:** properly forward cli options to ethereum simulator ([beebbe6](https://github.com/embark-framework/embark/commit/beebbe6))
|
||||
* **@embark/embarkjs-ipfs:** use `version()` API instead of `id()` to determine availability ([1595e4b](https://github.com/embark-framework/embark/commit/1595e4b))
|
||||
* **@embark/ipfs:** fix ipfs upload with wrong error message ([27bd574](https://github.com/embark-framework/embark/commit/27bd574))
|
||||
* **@embark/library-manager:** add a check/warning for `"1.0.0-beta"` web3 version in installAll ([6dd0628](https://github.com/embark-framework/embark/commit/6dd0628))
|
||||
* **@embark/pipeline:** adjust ignore paths ([e58c552](https://github.com/embark-framework/embark/commit/e58c552))
|
||||
* **@embark/pipeline:** check if config arg of writeStats is falsy ([9d81fc5](https://github.com/embark-framework/embark/commit/9d81fc5))
|
||||
* **@embark/pipeline:** streamline contract index file creation ([810c3be](https://github.com/embark-framework/embark/commit/810c3be))
|
||||
* **@embark/site:** fix configuring contract link in structure.md ([9c0923c](https://github.com/embark-framework/embark/commit/9c0923c))
|
||||
* **@embark/test-runner:** fix describe in describe tests ([c2094db](https://github.com/embark-framework/embark/commit/c2094db))
|
||||
* **@embark/ui:** fix errorEntities not working at all ([5ab4c22](https://github.com/embark-framework/embark/commit/5ab4c22))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **@embark/cmd:** add a warning on build and upload if development ([9e74d32](https://github.com/embark-framework/embark/commit/9e74d32))
|
||||
* **@embark/pipeline:** add minimalContractSize to remove bytecode ([b0cccae](https://github.com/embark-framework/embark/commit/b0cccae))
|
||||
* **@embark/pipeline:** enable choosing which fields to filter out ([b5c81bd](https://github.com/embark-framework/embark/commit/b5c81bd))
|
||||
* **@embark/site:** add docs on filteredFields ([59eb69c](https://github.com/embark-framework/embark/commit/59eb69c))
|
||||
* **@embark/site:** add documentation on minimalContractSize ([f9fb302](https://github.com/embark-framework/embark/commit/f9fb302))
|
||||
* **homepage:** add section with logos from companies, who use embark ([178d8cd](https://github.com/embark-framework/embark/commit/178d8cd))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
|
||||
|
|
|
@ -3,6 +3,18 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **@embark/pipeline:** add minimalContractSize to remove bytecode ([b0cccae](https://github.com/embark-framework/embark/commit/b0cccae))
|
||||
* **@embark/pipeline:** enable choosing which fields to filter out ([b5c81bd](https://github.com/embark-framework/embark/commit/b5c81bd))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-dapp-template-boilerplate
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-dapp-template-boilerplate",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"description": "Basic DApp template for Embark",
|
||||
"homepage": "https://github.com/embark-framework/embark/tree/master/dapps/templates/boilerplate#readme",
|
||||
"bugs": "https://github.com/embark-framework/embark/issues",
|
||||
|
@ -33,7 +33,7 @@
|
|||
"url": "https://github.com/embark-framework/embark.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"embark": "^4.1.0-beta.5",
|
||||
"embark": "^4.1.0-beta.6",
|
||||
"embark-reset": "^4.1.0-beta.3",
|
||||
"npm-run-all": "4.1.5",
|
||||
"rimraf": "2.6.3"
|
||||
|
|
|
@ -3,6 +3,18 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **@embark/pipeline:** add minimalContractSize to remove bytecode ([b0cccae](https://github.com/embark-framework/embark/commit/b0cccae))
|
||||
* **@embark/pipeline:** enable choosing which fields to filter out ([b5c81bd](https://github.com/embark-framework/embark/commit/b5c81bd))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-dapp-template-demo",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"description": "Demo DApp for Embark",
|
||||
"homepage": "https://github.com/embark-framework/embark/tree/master/dapps/templates/demo#readme",
|
||||
"bugs": "https://github.com/embark-framework/embark/issues",
|
||||
|
@ -34,7 +34,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"bootstrap": "3.3.7",
|
||||
"embark": "^4.1.0-beta.5",
|
||||
"embark": "^4.1.0-beta.6",
|
||||
"embark-reset": "^4.1.0-beta.3",
|
||||
"npm-run-all": "4.1.5",
|
||||
"react": "16.7.0",
|
||||
|
|
|
@ -3,6 +3,18 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **@embark/pipeline:** add minimalContractSize to remove bytecode ([b0cccae](https://github.com/embark-framework/embark/commit/b0cccae))
|
||||
* **@embark/pipeline:** enable choosing which fields to filter out ([b5c81bd](https://github.com/embark-framework/embark/commit/b5c81bd))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-dapp-template-simple
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-dapp-template-simple",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"description": "Contracts-only DApp template for Embark",
|
||||
"homepage": "https://github.com/embark-framework/embark/tree/master/dapps/templates/simple#readme",
|
||||
"bugs": "https://github.com/embark-framework/embark/issues",
|
||||
|
@ -29,7 +29,7 @@
|
|||
"url": "https://github.com/embark-framework/embark.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"embark": "^4.1.0-beta.5",
|
||||
"embark": "^4.1.0-beta.6",
|
||||
"embark-reset": "^4.1.0-beta.3",
|
||||
"npm-run-all": "4.1.5",
|
||||
"rimraf": "2.6.3"
|
||||
|
|
|
@ -3,6 +3,17 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **@embark/test-runner:** fix describe in describe tests ([c2094db](https://github.com/embark-framework/embark/commit/c2094db))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-dapp-test-app
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"devDependencies": {
|
||||
"@babel/code-frame": "7.0.0",
|
||||
"bootstrap": "3.4.0",
|
||||
"embark": "^4.1.0-beta.5",
|
||||
"embark": "^4.1.0-beta.6",
|
||||
"embark-dapp-test-service": "^4.0.0",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-reset": "^4.1.0-beta.3",
|
||||
|
@ -24,5 +24,5 @@
|
|||
"reset": "npx embark-reset",
|
||||
"test": "npx embark test"
|
||||
},
|
||||
"version": "4.1.0-beta.5"
|
||||
"version": "4.1.0-beta.6"
|
||||
}
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-dapp-test-contracts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-dapp-test-contracts
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"description": "Test DApp for integration testing purposes",
|
||||
"devDependencies": {
|
||||
"embark": "^4.1.0-beta.5",
|
||||
"embark": "^4.1.0-beta.6",
|
||||
"embark-reset": "^4.1.0-beta.3"
|
||||
},
|
||||
"name": "embark-dapp-test-contracts",
|
||||
|
@ -13,5 +13,5 @@
|
|||
"reset": "npx embark-reset",
|
||||
"test": "npx embark test"
|
||||
},
|
||||
"version": "4.1.0-beta.5"
|
||||
"version": "4.1.0-beta.6"
|
||||
}
|
||||
|
|
|
@ -16,5 +16,5 @@
|
|||
},
|
||||
"npmClient": "yarn",
|
||||
"useWorkspaces": true,
|
||||
"version": "4.1.0-beta.5"
|
||||
"version": "4.1.0-beta.6"
|
||||
}
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-api
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-api
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-api",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Embark api module",
|
||||
|
@ -45,7 +45,7 @@
|
|||
"colors": "1.3.2",
|
||||
"embark-async-wrapper": "^4.1.0-beta.3",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5"
|
||||
"embark-utils": "^4.1.0-beta.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "7.2.3",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-authenticator
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-authenticator
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-authenticator",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Authenticator module for Embark's Cockpit",
|
||||
|
@ -48,7 +48,7 @@
|
|||
"dependencies": {
|
||||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"keccakjs": "0.2.3",
|
||||
"uuid": "3.3.2"
|
||||
},
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-blockchain-connector
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-blockchain-connector",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Blockchain Connector for Embark",
|
||||
|
@ -48,10 +48,10 @@
|
|||
"dependencies": {
|
||||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embarkjs": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"embarkjs": "^4.1.0-beta.6",
|
||||
"ethereumjs-tx": "1.3.7",
|
||||
"ethereumjs-util": "6.0.0",
|
||||
"ganache-cli": "6.4.3",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-blockchain-listener
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-blockchain-listener
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-blockchain-listener",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Blockchain Listener APIs for Embark",
|
||||
|
@ -48,9 +48,9 @@
|
|||
"dependencies": {
|
||||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-process-logs-api": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-process-logs-api": "^4.1.0-beta.6",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"web3": "1.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-blockchain-process
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-blockchain-process
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-blockchain-process",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Blockchain process abstraction for Embark",
|
||||
|
@ -48,10 +48,10 @@
|
|||
"dependencies": {
|
||||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-logger": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embark-logger": "^4.1.0-beta.6",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"ethereumjs-tx": "1.3.7",
|
||||
"ethereumjs-util": "6.0.0",
|
||||
"fs-extra": "7.0.1",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-code-generator
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-code-generator",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Embark code generator",
|
||||
|
@ -50,9 +50,9 @@
|
|||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"ejs": "2.6.1",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"fs-extra": "7.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-code-runner
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-code-runner",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Code execution VM for Embark",
|
||||
|
@ -48,8 +48,8 @@
|
|||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"colors": "1.3.2",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embarkjs": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"embarkjs": "^4.1.0-beta.6",
|
||||
"fs-extra": "7.0.1",
|
||||
"parse-json": "4.0.0",
|
||||
"vm2": "3.6.4",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-console-listener
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-console-listener
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-console-listener",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Console listener component for Embark",
|
||||
|
@ -49,7 +49,7 @@
|
|||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5"
|
||||
"embark-utils": "^4.1.0-beta.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "7.2.3",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-console
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-console",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Console component for Embark",
|
||||
|
@ -50,9 +50,9 @@
|
|||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"chalk": "2.4.2",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"json-stringify-safe": "5.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -60,7 +60,7 @@
|
|||
"@babel/core": "7.2.2",
|
||||
"@types/json-stringify-safe": "5.0.0",
|
||||
"cross-env": "5.2.0",
|
||||
"embark-logger": "^4.1.0-beta.5",
|
||||
"embark-logger": "^4.1.0-beta.6",
|
||||
"eslint": "5.7.0",
|
||||
"mocha": "5.2.0",
|
||||
"npm-run-all": "4.1.5",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-contracts-manager
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-contracts-manager",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Smart contracts manager for Embark",
|
||||
|
@ -49,9 +49,9 @@
|
|||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"clone-deep": "4.0.0",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5"
|
||||
"embark-utils": "^4.1.0-beta.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "7.2.3",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-core
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-core
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-core",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Core library for Embark",
|
||||
|
@ -50,8 +50,8 @@
|
|||
"dependencies": {
|
||||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-process-logs-api": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embark-process-logs-api": "^4.1.0-beta.6",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"flatted": "0.2.3",
|
||||
"fs-extra": "7.0.1",
|
||||
"node-ipc": "9.1.1",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-coverage
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-coverage
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-coverage",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Code Coverage capabilities for Embark",
|
||||
|
@ -43,8 +43,8 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"fs-extra": "7.0.1",
|
||||
"globule": "1.2.1",
|
||||
"prettier-plugin-solidity": "1.0.0-alpha.25",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-deploy-tracker
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-deploy-tracker
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-deploy-tracker",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Console component for Embark",
|
||||
|
@ -47,7 +47,7 @@
|
|||
"extends": "../../.eslintrc.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"fs-extra": "7.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-deployment
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-deployment",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Deployment APIs for Embark",
|
||||
|
@ -49,9 +49,9 @@
|
|||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"clone-deep": "4.0.0",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5"
|
||||
"embark-utils": "^4.1.0-beta.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "7.2.3",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-ens
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-ens
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-ens",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Implements ENS support in Embark",
|
||||
|
@ -49,11 +49,11 @@
|
|||
"dependencies": {
|
||||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embarkjs": "^4.1.0-beta.5",
|
||||
"embarkjs-ens": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"embarkjs": "^4.1.0-beta.6",
|
||||
"embarkjs-ens": "^4.1.0-beta.6",
|
||||
"eth-ens-namehash": "2.0.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -3,6 +3,17 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **@embark/ipfs:** fix ipfs upload with wrong error message ([27bd574](https://github.com/embark-framework/embark/commit/27bd574))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-ipfs
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-ipfs",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Implements IPFS support in Embark",
|
||||
|
@ -51,12 +51,12 @@
|
|||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"colors": "1.3.2",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-storage": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embarkjs": "^4.1.0-beta.5",
|
||||
"embarkjs-ipfs": "^4.1.0-beta.3",
|
||||
"embark-storage": "^4.1.0-beta.6",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"embarkjs": "^4.1.0-beta.6",
|
||||
"embarkjs-ipfs": "^4.1.0-beta.6",
|
||||
"ipfs-api": "17.2.4",
|
||||
"shelljs": "0.8.3"
|
||||
},
|
||||
|
|
|
@ -3,6 +3,17 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **@embark/library-manager:** add a check/warning for `"1.0.0-beta"` web3 version in installAll ([6dd0628](https://github.com/embark-framework/embark/commit/6dd0628))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-library-manager
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-library-manager",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Module for downloading and managing libraries",
|
||||
|
@ -49,7 +49,7 @@
|
|||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"colors": "1.3.2",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"fs-extra": "7.0.1",
|
||||
"rimraf": "2.6.3"
|
||||
},
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-listener
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-listener
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-listener",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Log listening for Embark",
|
||||
|
@ -47,7 +47,7 @@
|
|||
"extends": "../../.eslintrc.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"embark-process-logs-api": "^4.1.0-beta.5"
|
||||
"embark-process-logs-api": "^4.1.0-beta.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"eslint": "5.7.0",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-logger
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-logger
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-logger",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Logging utilities for Embark",
|
||||
|
@ -49,7 +49,7 @@
|
|||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"colors": "1.3.2",
|
||||
"date-and-time": "0.6.2",
|
||||
"embark-utils": "^4.1.0-beta.5"
|
||||
"embark-utils": "^4.1.0-beta.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "7.2.3",
|
||||
|
|
|
@ -3,6 +3,25 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **@embark/pipeline:** adjust ignore paths ([e58c552](https://github.com/embark-framework/embark/commit/e58c552))
|
||||
* **@embark/pipeline:** check if config arg of writeStats is falsy ([9d81fc5](https://github.com/embark-framework/embark/commit/9d81fc5))
|
||||
* **@embark/pipeline:** streamline contract index file creation ([810c3be](https://github.com/embark-framework/embark/commit/810c3be))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **@embark/pipeline:** add minimalContractSize to remove bytecode ([b0cccae](https://github.com/embark-framework/embark/commit/b0cccae))
|
||||
* **@embark/pipeline:** enable choosing which fields to filter out ([b5c81bd](https://github.com/embark-framework/embark/commit/b5c81bd))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-pipeline
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-pipeline",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Build pipeline module for Embark",
|
||||
|
@ -49,9 +49,9 @@
|
|||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"colors": "1.3.2",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"find-up": "2.1.0",
|
||||
"fs-extra": "7.0.1",
|
||||
"webpack": "4.29.3"
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-plugin-cmd
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-plugin-cmd
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-plugin-cmd",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Plugin installation utility for Embark",
|
||||
|
@ -39,7 +39,7 @@
|
|||
"dependencies": {
|
||||
"async": "2.6.1",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5"
|
||||
"embark-utils": "^4.1.0-beta.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "7.2.3",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-process-logs-api
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-process-logs-api
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-process-logs-api",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Registers APIs for Embark process logs",
|
||||
|
@ -47,7 +47,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"embark-utils": "^4.1.0-beta.5"
|
||||
"embark-utils": "^4.1.0-beta.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "7.2.3",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-profiler
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-profiler",
|
||||
"version": "4.1.0-beta.3",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Smart contract profiler for Embark DApps",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-scaffolding
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-scaffolding
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-scaffolding",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Provides scaffolding utilities",
|
||||
|
@ -43,7 +43,7 @@
|
|||
"dependencies": {
|
||||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5"
|
||||
"embark-utils": "^4.1.0-beta.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "7.2.3",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-solidity
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-solidity
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-solidity",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Solidity Compiler APIs for Embark",
|
||||
|
@ -48,9 +48,9 @@
|
|||
"dependencies": {
|
||||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"fs-extra": "7.0.1",
|
||||
"semver": "5.6.0",
|
||||
"solc": "0.5.0",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-storage
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-storage",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Storage provider abstraction module for Embark",
|
||||
|
@ -49,9 +49,9 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"lodash.clonedeep": "4.5.0",
|
||||
"shelljs": "0.8.3"
|
||||
},
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-swarm
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-swarm
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-swarm",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Implements Swarm support in Embark",
|
||||
|
@ -52,11 +52,11 @@
|
|||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"colors": "1.3.2",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-storage": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embarkjs": "^4.1.0-beta.5",
|
||||
"embark-storage": "^4.1.0-beta.6",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"embarkjs": "^4.1.0-beta.6",
|
||||
"embarkjs-swarm": "^4.1.0-beta.3",
|
||||
"swarm-api": "0.1.2"
|
||||
},
|
||||
|
|
|
@ -3,6 +3,17 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **@embark/test-runner:** fix describe in describe tests ([c2094db](https://github.com/embark-framework/embark/commit/c2094db))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-test-runner",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Embark Testrunner",
|
||||
|
@ -49,7 +49,7 @@
|
|||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"fs-extra": "7.0.1",
|
||||
"mocha": "5.2.0"
|
||||
},
|
||||
|
|
|
@ -3,6 +3,17 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **@embark/ui:** fix errorEntities not working at all ([5ab4c22](https://github.com/embark-framework/embark/commit/5ab4c22))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-ui",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Web frontend for interactive DApp development with Embark",
|
||||
|
|
|
@ -3,6 +3,17 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **@embark/accountParser:** exit on unsupported account configs ([78bb9bc](https://github.com/embark-framework/embark/commit/78bb9bc))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-utils",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Utils used by Embark",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-watcher
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-watcher
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-watcher",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Watches changes in the file system",
|
||||
|
@ -49,7 +49,7 @@
|
|||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"chokidar": "2.1.6",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5"
|
||||
"embark-utils": "^4.1.0-beta.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "7.2.3",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-web3
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-web3
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-web3",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Module to add Web3 support to Embark",
|
||||
|
@ -47,9 +47,9 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embarkjs-web3": "^4.1.0-beta.4"
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"embarkjs-web3": "^4.1.0-beta.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "7.2.3",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-webserver
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-webserver
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-webserver",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Webserver for Embark",
|
||||
|
@ -49,7 +49,7 @@
|
|||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"express": "4.16.3",
|
||||
"express-http-proxy": "1.5.1",
|
||||
"express-ws": "4.0.0",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embark-whisper
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embark-whisper
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark-whisper",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Module to add Whisper support to Embark",
|
||||
|
@ -48,10 +48,10 @@
|
|||
"dependencies": {
|
||||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embarkjs-whisper": "^4.1.0-beta.3",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"embarkjs-whisper": "^4.1.0-beta.6",
|
||||
"rxjs": "6.4.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -3,6 +3,22 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **@embark/cli:** properly forward cli options to ethereum simulator ([beebbe6](https://github.com/embark-framework/embark/commit/beebbe6))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **@embark/cmd:** add a warning on build and upload if development ([9e74d32](https://github.com/embark-framework/embark/commit/9e74d32))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Embark is a framework that allows you to easily develop and deploy DApps",
|
||||
|
@ -90,54 +90,54 @@
|
|||
"decompress": "4.2.0",
|
||||
"deep-equal": "1.0.1",
|
||||
"ejs": "2.6.1",
|
||||
"embark-api": "^4.1.0-beta.5",
|
||||
"embark-authenticator": "^4.1.0-beta.5",
|
||||
"embark-blockchain-connector": "^4.1.0-beta.5",
|
||||
"embark-blockchain-listener": "^4.1.0-beta.5",
|
||||
"embark-blockchain-process": "^4.1.0-beta.5",
|
||||
"embark-code-generator": "^4.1.0-beta.5",
|
||||
"embark-code-runner": "^4.1.0-beta.5",
|
||||
"embark-api": "^4.1.0-beta.6",
|
||||
"embark-authenticator": "^4.1.0-beta.6",
|
||||
"embark-blockchain-connector": "^4.1.0-beta.6",
|
||||
"embark-blockchain-listener": "^4.1.0-beta.6",
|
||||
"embark-blockchain-process": "^4.1.0-beta.6",
|
||||
"embark-code-generator": "^4.1.0-beta.6",
|
||||
"embark-code-runner": "^4.1.0-beta.6",
|
||||
"embark-compiler": "^4.1.0-beta.3",
|
||||
"embark-console": "^4.1.0-beta.5",
|
||||
"embark-console-listener": "^4.1.0-beta.5",
|
||||
"embark-contracts-manager": "^4.1.0-beta.5",
|
||||
"embark-core": "^4.1.0-beta.5",
|
||||
"embark-coverage": "^4.1.0-beta.5",
|
||||
"embark-console": "^4.1.0-beta.6",
|
||||
"embark-console-listener": "^4.1.0-beta.6",
|
||||
"embark-contracts-manager": "^4.1.0-beta.6",
|
||||
"embark-core": "^4.1.0-beta.6",
|
||||
"embark-coverage": "^4.1.0-beta.6",
|
||||
"embark-debugger": "^4.1.0-beta.3",
|
||||
"embark-deploy-tracker": "^4.1.0-beta.5",
|
||||
"embark-deployment": "^4.1.0-beta.5",
|
||||
"embark-ens": "^4.1.0-beta.5",
|
||||
"embark-deploy-tracker": "^4.1.0-beta.6",
|
||||
"embark-deployment": "^4.1.0-beta.6",
|
||||
"embark-ens": "^4.1.0-beta.6",
|
||||
"embark-graph": "^4.1.0-beta.3",
|
||||
"embark-i18n": "^4.1.0-beta.3",
|
||||
"embark-ipfs": "^4.1.0-beta.5",
|
||||
"embark-library-manager": "^4.1.0-beta.5",
|
||||
"embark-listener": "^4.1.0-beta.5",
|
||||
"embark-logger": "^4.1.0-beta.5",
|
||||
"embark-pipeline": "^4.1.0-beta.5",
|
||||
"embark-plugin-cmd": "^4.1.0-beta.5",
|
||||
"embark-process-logs-api": "^4.1.0-beta.5",
|
||||
"embark-profiler": "^4.1.0-beta.3",
|
||||
"embark-ipfs": "^4.1.0-beta.6",
|
||||
"embark-library-manager": "^4.1.0-beta.6",
|
||||
"embark-listener": "^4.1.0-beta.6",
|
||||
"embark-logger": "^4.1.0-beta.6",
|
||||
"embark-pipeline": "^4.1.0-beta.6",
|
||||
"embark-plugin-cmd": "^4.1.0-beta.6",
|
||||
"embark-process-logs-api": "^4.1.0-beta.6",
|
||||
"embark-profiler": "^4.1.0-beta.6",
|
||||
"embark-reset": "^4.1.0-beta.3",
|
||||
"embark-scaffolding": "^4.1.0-beta.5",
|
||||
"embark-solidity": "^4.1.0-beta.5",
|
||||
"embark-scaffolding": "^4.1.0-beta.6",
|
||||
"embark-solidity": "^4.1.0-beta.6",
|
||||
"embark-specialconfigs": "^4.1.0-beta.3",
|
||||
"embark-storage": "^4.1.0-beta.5",
|
||||
"embark-swarm": "^4.1.0-beta.5",
|
||||
"embark-test-runner": "^4.1.0-beta.5",
|
||||
"embark-storage": "^4.1.0-beta.6",
|
||||
"embark-swarm": "^4.1.0-beta.6",
|
||||
"embark-test-runner": "^4.1.0-beta.6",
|
||||
"embark-transaction-tracker": "^4.1.0-beta.3",
|
||||
"embark-ui": "^4.1.0-beta.5",
|
||||
"embark-utils": "^4.1.0-beta.5",
|
||||
"embark-ui": "^4.1.0-beta.6",
|
||||
"embark-utils": "^4.1.0-beta.6",
|
||||
"embark-vyper": "^4.1.0-beta.5",
|
||||
"embark-watcher": "^4.1.0-beta.5",
|
||||
"embark-web3": "^4.1.0-beta.5",
|
||||
"embark-webserver": "^4.1.0-beta.5",
|
||||
"embark-whisper": "^4.1.0-beta.5",
|
||||
"embarkjs": "^4.1.0-beta.5",
|
||||
"embarkjs-ens": "^4.1.0-beta.5",
|
||||
"embarkjs-ipfs": "^4.1.0-beta.3",
|
||||
"embark-watcher": "^4.1.0-beta.6",
|
||||
"embark-web3": "^4.1.0-beta.6",
|
||||
"embark-webserver": "^4.1.0-beta.6",
|
||||
"embark-whisper": "^4.1.0-beta.6",
|
||||
"embarkjs": "^4.1.0-beta.6",
|
||||
"embarkjs-ens": "^4.1.0-beta.6",
|
||||
"embarkjs-ipfs": "^4.1.0-beta.6",
|
||||
"embarkjs-swarm": "^4.1.0-beta.3",
|
||||
"embarkjs-web3": "^4.1.0-beta.4",
|
||||
"embarkjs-whisper": "^4.1.0-beta.3",
|
||||
"embarkjs-web3": "^4.1.0-beta.6",
|
||||
"embarkjs-whisper": "^4.1.0-beta.6",
|
||||
"eth-ens-namehash": "2.0.8",
|
||||
"ethereumjs-tx": "1.3.7",
|
||||
"ethereumjs-util": "6.0.0",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embarkjs-ens
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
**Note:** Version bump only for package embarkjs-ens
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embarkjs-ens",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Ens plugin for embarkjs",
|
||||
|
@ -51,7 +51,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"embarkjs": "^4.1.0-beta.5",
|
||||
"embarkjs": "^4.1.0-beta.6",
|
||||
"eth-ens-namehash": "2.0.8",
|
||||
"web3": "1.2.1"
|
||||
},
|
||||
|
|
|
@ -3,6 +3,17 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **@embark/embarkjs-ipfs:** use `version()` API instead of `id()` to determine availability ([1595e4b](https://github.com/embark-framework/embark/commit/1595e4b))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [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-ipfs
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embarkjs-ipfs",
|
||||
"version": "4.1.0-beta.3",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Ipfs plugin for embarkjs",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embarkjs-web3
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.4](https://github.com/embark-framework/embark/compare/v4.1.0-beta.3...v4.1.0-beta.4) (2019-06-27)
|
||||
|
||||
**Note:** Version bump only for package embarkjs-web3
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embarkjs-web3",
|
||||
"version": "4.1.0-beta.4",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "embarkjs plugin to interact with web3",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embarkjs-whisper
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [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)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embarkjs-whisper",
|
||||
"version": "4.1.0-beta.3",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Whisper plugin for embarkjs",
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
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.6](https://github.com/embark-framework/embark/compare/v4.1.0-beta.5...v4.1.0-beta.6) (2019-08-09)
|
||||
|
||||
**Note:** Version bump only for package embarkjs
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [4.1.0-beta.5](https://github.com/embark-framework/embark/compare/v4.1.0-beta.4...v4.1.0-beta.5) (2019-07-10)
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embarkjs",
|
||||
"version": "4.1.0-beta.5",
|
||||
"version": "4.1.0-beta.6",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "JavaScript library for easily interacting with web3 technologies",
|
||||
|
|
Loading…
Reference in New Issue