Skip to content

update migration to 0.1.2-rc.8-v0 #562

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Nov 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ services:
GRAPH_GRAPHQL_MAX_FIRST: '1000'

ipfs:
image: daostack/test-env-experimental-ipfs:4.0.22
image: daostack/test-env-experimental-ipfs:4.0.24
ports:
- 5001:5001

postgres:
image: daostack/test-env-experimental-postgres:4.0.22
image: daostack/test-env-experimental-postgres:4.0.24
ports:
- 9432:5432
environment:
POSTGRES_PASSWORD: 'letmein'

ganache:
image: daostack/test-env-experimental-ganache:4.0.22
image: daostack/test-env-experimental-ganache:4.0.24
ports:
- 8545:8545
36 changes: 18 additions & 18 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
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@
]
},
"devDependencies": {
"@daostack/migration-experimental": "0.1.2-rc.7-v0",
"@daostack/test-env-experimental": "4.0.22",
"@daostack/migration-experimental": "0.1.2-rc.8-v0",
"@daostack/test-env-experimental": "4.0.24",
"@types/graphql": "^14.2.2",
"@types/isomorphic-fetch": "^0.0.34",
"@types/jest": "^24.0.15",
Expand Down
2 changes: 1 addition & 1 deletion src/settings.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// the version of the redeemer contract to use.
// we can specify multiple versions, and try to find them in the order given
export const PACKAGE_VERSION = [0, 1, 7]
export const PACKAGE_VERSION = [0, 1, 8]
export const LATEST_ARC_VERSION = `0.1.2-rc.${PACKAGE_VERSION[2]}`
export const ABI_DIR = './abis'
export const REDEEMER_CONTRACT_VERSIONS = [
Expand Down
2 changes: 1 addition & 1 deletion test/proposal-join.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('Join', () => {
const joins = await arc
.plugins({where: {name: 'Join'}}).pipe(first()).toPromise()

const join = joins[0] as Join
const join = joins[1] as Join
const joinState = await join.fetchState()

expect(joinState.pluginParams).toMatchObject({
Expand Down