From 0590abe8ced3aa1dd1350286689ef968d82178c9 Mon Sep 17 00:00:00 2001 From: Rhys Bartels-Waller Date: Tue, 20 Oct 2020 22:46:44 +1100 Subject: [PATCH] chore: update service deps, bump versions, update changelog --- CHANGELOG.md | 9 +++++++++ docker-compose.yml | 8 ++++---- package.json | 2 +- packages/api-cardano-db-hasura/package.json | 6 +++--- packages/api-genesis/package.json | 4 ++-- packages/cli/package.json | 2 +- packages/client-ts/package.json | 2 +- packages/server/package.json | 8 ++++---- packages/util-dev/package.json | 4 ++-- packages/util/package.json | 2 +- 10 files changed, 28 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dea498a..c85442c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [2.2.1](https://github.com/input-output-hk/cardano-graphql/compare/2.2.0...2.2.1) (2020-10-20) + +### Compatible with: + +- [`cardano-node`: `1.21.1`](https://github.com/input-output-hk/cardano-node/releases/tag/1.21.1) +- [`cardano-db-sync`: `5.0.3`](https://github.com/input-output-hk/cardano-db-sync/releases/tag/5.0.3) + +This patch release updates the service dependencies, primarily to move off `cardano-db-sync@5.0.2`, which has a [known critical issue](https://github.com/input-output-hk/cardano-db-sync/issues/351) + ## [2.2.0](https://github.com/input-output-hk/cardano-graphql/compare/2.1.0...2.2.0) (2020-09-24) ### Compatible with: diff --git a/docker-compose.yml b/docker-compose.yml index a821b3c4..b64456f6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -24,7 +24,7 @@ services: max-size: "200k" max-file: "10" cardano-node: - image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.20.0} + image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.21.1} command: [ "run", "--config", "/config/config.json", @@ -44,7 +44,7 @@ services: max-size: "400k" max-file: "20" cardano-db-sync-extended: - image: inputoutput/cardano-db-sync:${CARDANO_DB_SYNC_VERSION:-5.0.1} + image: inputoutput/cardano-db-sync:${CARDANO_DB_SYNC_VERSION:-5.0.3} command: [ "--config", "/config/config.json", "--socket-path", "/node-ipc/node.socket" @@ -73,7 +73,7 @@ services: hasura: build: context: ./packages/api-cardano-db-hasura/hasura - image: inputoutput/cardano-graphql-hasura:${CARDANO_GRAPHQL_VERSION:-2.1.0} + image: inputoutput/cardano-graphql-hasura:${CARDANO_GRAPHQL_VERSION:-2.2.1} ports: - ${HASURA_PORT:-8090}:8080 depends_on: @@ -103,7 +103,7 @@ services: target: server args: - NETWORK=${NETWORK:-mainnet} - image: inputoutput/cardano-graphql:${CARDANO_GRAPHQL_VERSION:-2.1.0} + image: inputoutput/cardano-graphql:${CARDANO_GRAPHQL_VERSION:-2.2.1} environment: - ALLOW_INTROSPECTION=true - CACHE_ENABLED=true diff --git a/package.json b/package.json index b3ecb662..488dd7f6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "cardano-graphql", "description": "A TypeScript monorepo. Includes a server package and API modules for flexible implementation", - "version": "2.2.0", + "version": "2.2.1", "private": true, "workspaces": [ "packages/*" diff --git a/packages/api-cardano-db-hasura/package.json b/packages/api-cardano-db-hasura/package.json index bccaba67..9e78b3c8 100644 --- a/packages/api-cardano-db-hasura/package.json +++ b/packages/api-cardano-db-hasura/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-graphql/api-cardano-db-hasura", - "version": "2.2.0", + "version": "2.2.1", "description": "Module for interfacing with the Cardano DB, populated by cardano-db-sync-extended that utilises Hasura for a powerful query interface", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -32,7 +32,7 @@ "schema.graphql" ], "dependencies": { - "@cardano-graphql/util": "2.2.0", + "@cardano-graphql/util": "2.2.1", "@graphql-tools/delegate": "^6.0.10", "@graphql-tools/schema": "^6.0.9", "@graphql-tools/wrap": "^6.0.9", @@ -51,7 +51,7 @@ "pg-listen": "^1.6.0" }, "devDependencies": { - "@cardano-graphql/util-dev": "2.2.0", + "@cardano-graphql/util-dev": "2.2.1", "@graphql-codegen/cli": "^1.15.2", "@graphql-codegen/typescript": "^1.15.2", "@graphql-codegen/typescript-graphql-files-modules": "^1.15.2", diff --git a/packages/api-genesis/package.json b/packages/api-genesis/package.json index e99ad834..c092828b 100644 --- a/packages/api-genesis/package.json +++ b/packages/api-genesis/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-graphql/api-genesis", - "version": "2.2.0", + "version": "2.2.1", "description": "Query the network genesis", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -38,7 +38,7 @@ "graphql-scalars": "^1.2.2" }, "devDependencies": { - "@cardano-graphql/util-dev": "2.2.0", + "@cardano-graphql/util-dev": "2.2.1", "@graphql-codegen/cli": "^1.15.2", "@graphql-codegen/typescript": "^1.15.2", "@graphql-codegen/typescript-graphql-files-modules": "^1.15.2", diff --git a/packages/cli/package.json b/packages/cli/package.json index 4fe96b16..e6d325e1 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-graphql/cli", - "version": "2.2.0", + "version": "2.2.1", "description": "Management tool for managing a Cardano GraphQL deployment", "main": "./dist/index.js", "bin": { diff --git a/packages/client-ts/package.json b/packages/client-ts/package.json index 147b3b01..b6dceb43 100644 --- a/packages/client-ts/package.json +++ b/packages/client-ts/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-graphql/client-ts", - "version": "2.2.0", + "version": "2.2.1", "description": "A client package for Cardano GraphQL, including the GraphQL schema and TypeScript definitions generated from it", "repository": { "type": "git", diff --git a/packages/server/package.json b/packages/server/package.json index 564081dd..c5e22f9c 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-graphql/server", - "version": "2.2.0", + "version": "2.2.1", "description": "Serve the Cardano GraphQL API over HTTP", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -24,8 +24,8 @@ }, "homepage": "https://github.com/input-output-hk/cardano-graphql/blob/master/packages/server/README.md", "dependencies": { - "@cardano-graphql/api-cardano-db-hasura": "2.2.0", - "@cardano-graphql/api-genesis": "2.2.0", + "@cardano-graphql/api-cardano-db-hasura": "2.2.1", + "@cardano-graphql/api-genesis": "2.2.1", "@graphql-tools/merge": "^6.0.10", "apollo-metrics": "^1.0.1", "apollo-server-core": "^2.14.3", @@ -41,7 +41,7 @@ "ts-custom-error": "^3.1.1" }, "devDependencies": { - "@cardano-graphql/util-dev": "2.2.0", + "@cardano-graphql/util-dev": "2.2.1", "@types/fs-extra": "^9.0.1", "@types/graphql-depth-limit": "^1.1.2", "@types/node": "^14.0.13", diff --git a/packages/util-dev/package.json b/packages/util-dev/package.json index 48076fdd..b7c7f3d5 100644 --- a/packages/util-dev/package.json +++ b/packages/util-dev/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-graphql/util-dev", - "version": "2.2.0", + "version": "2.2.1", "description": "Common development utilities", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -22,7 +22,7 @@ }, "homepage": "https://github.com/input-output-hk/cardano-graphql/blob/master/packages/util-dev/README.md", "devDependencies": { - "@cardano-graphql/util": "2.2.0", + "@cardano-graphql/util": "2.2.1", "shx": "^0.3.2" }, "directories": { diff --git a/packages/util/package.json b/packages/util/package.json index 1544222f..c8fdd039 100644 --- a/packages/util/package.json +++ b/packages/util/package.json @@ -1,6 +1,6 @@ { "name": "@cardano-graphql/util", - "version": "2.2.0", + "version": "2.2.1", "description": "Common utilities", "main": "dist/index.js", "typings": "dist/index.d.ts",