Skip to content

Commit

Permalink
Update cms and plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
use-strict committed Sep 10, 2019
1 parent 24bf76b commit 71c2f2b
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 41 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.

## [Unreleased]

- Update to @alethio/cms@1.0.0-beta.7, which adds support for dependencies between plugin data adapters
- Update all plugins with support for new CMS version

## [1.0.0-beta.6] - 2019-09-09

- Fix APP_BASE_URL slash (/) escaping
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Expand Up @@ -5,17 +5,17 @@ WORKDIR /build
COPY package.json package-lock.json ./
RUN npm install

RUN npm i -g @alethio/cms-plugin-tool@^1.0.0-beta.4
RUN npm i -g @alethio/cms-plugin-tool@^1.0.0-beta.5

COPY . .

RUN npm run build --verbose

RUN acp install \
@alethio/explorer-plugin-eth-common@2.3.0 \
@alethio/explorer-plugin-eth-lite@2.1.0 \
@alethio/explorer-plugin-eth-ibft2@1.0.1 \
@alethio/explorer-plugin-3box@1.0.1
@alethio/explorer-plugin-eth-common@2.4.0 \
@alethio/explorer-plugin-eth-lite@2.2.0 \
@alethio/explorer-plugin-eth-ibft2@1.1.0 \
@alethio/explorer-plugin-3box@1.1.0

FROM nginx:stable-alpine

Expand Down
6 changes: 3 additions & 3 deletions config.default.json
Expand Up @@ -6,13 +6,13 @@
"pluginsUrl": "plugins",

"plugins": {
"plugin://aleth.io/eth-common?v=2.3.0": {
"plugin://aleth.io/eth-common?v=2.4.0": {

},
"plugin://aleth.io/3box?v=1.0.1": {
"plugin://aleth.io/3box?v=1.1.0": {
"ipfsUrlMask": "https://ipfs.infura.io/ipfs/%s"
},
"plugin://aleth.io/eth-lite?v=2.1.0": {
"plugin://aleth.io/eth-lite?v=2.2.0": {
"nodeUrl": "https://mainnet.infura.io/"
}
},
Expand Down
8 changes: 4 additions & 4 deletions config.ibft2.json
Expand Up @@ -6,16 +6,16 @@
"pluginsUrl": "plugins",

"plugins": {
"plugin://aleth.io/eth-common?v=2.3.0": {
"plugin://aleth.io/eth-common?v=2.4.0": {

},
"plugin://aleth.io/3box?v=1.0.1": {
"plugin://aleth.io/3box?v=1.1.0": {
"ipfsUrlMask": "https://ipfs.infura.io/ipfs/%s"
},
"plugin://aleth.io/eth-lite?v=2.1.0": {
"plugin://aleth.io/eth-lite?v=2.2.0": {
"nodeUrl": "https://mainnet.infura.io/"
},
"plugin://aleth.io/eth-ibft2?v=1.0.1": {
"plugin://aleth.io/eth-ibft2?v=1.1.0": {

}
},
Expand Down
69 changes: 42 additions & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -42,7 +42,7 @@
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"interpolate-html-plugin": "^3.0.0",
"plugin-api": "npm:@alethio/cms-plugin-api@^1.0.0-beta.1",
"plugin-api": "npm:@alethio/cms-plugin-api@^1.0.0-beta.6",
"rimraf": "^2.6.3",
"source-map-loader": "^0.2.4",
"source-map-support": "^0.5.11",
Expand All @@ -63,7 +63,7 @@
"webpack-runner": "^3.1.0"
},
"dependencies": {
"@alethio/cms": "^1.0.0-beta.6",
"@alethio/cms": "^1.0.0-beta.7",
"@alethio/explorer-ui": "^1.0.0-beta.0",
"@alethio/ui": "^1.0.0-beta.18",
"@puzzl/browser": "^1.0.0-beta.2",
Expand Down

0 comments on commit 71c2f2b

Please sign in to comment.