Skip to content

Commit

Permalink
chore: update service deps, bump versions, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
rhyslbw committed Oct 20, 2020
1 parent cc7f4dd commit 0590abe
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 19 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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/*"
Expand Down
6 changes: 3 additions & 3 deletions packages/api-cardano-db-hasura/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions packages/api-genesis/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion packages/client-ts/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
8 changes: 4 additions & 4 deletions packages/server/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions packages/util-dev/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion packages/util/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 0590abe

Please sign in to comment.