Skip to content

Commit

Permalink
chore: bump version, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
rhyslbw committed Nov 3, 2022
1 parent 9c1f815 commit 4049bca
Show file tree
Hide file tree
Showing 10 changed files with 34 additions and 21 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

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.

### [7.0.2](https://github.com/input-output-hk/cardano-graphql/compare/7.0.1...7.0.2) (2022-10-03)

### Compatible with:

- [`cardano-node`: `1.35.3`](https://github.com/input-output-hk/cardano-node/releases/tag/1.35.3)
- [`cardano-ogmios`: `v5.5.7`](https://github.com/CardanoSolutions/ogmios/releases/tag/v5.5.7)
- [`cardano-db-sync`: `13.0.5`](https://github.com/input-output-hk/cardano-db-sync/releases/tag/13.0.5)
- [`hasura/graphql-engine`: `1.3.3`](https://github.com/hasura/graphql-engine/releases/tag/v1.3.3)

* bump cardano-configurations ([a386938](https://github.com/input-output-hk/cardano-graphql/commit/a3869386932c4cd5c53012882c30ed150931a148))
* remove upper Node.js engines constraint ([7eb733f](https://github.com/input-output-hk/cardano-graphql/commit/7eb733f5c5434202a3ccb8fe5a51a4f52a0ed66b))


### [7.0.1](https://github.com/input-output-hk/cardano-graphql/compare/7.0.0...7.0.1) (2022-09-19)

### Compatible with:
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Check the [releases] for the latest version.
``` console
git clone \
--single-branch \
--branch 7.0.1 \
--branch 7.0.2 \
--recurse-submodules \
https://github.com/input-output-hk/cardano-graphql.git \
&& cd cardano-graphql
Expand Down Expand Up @@ -114,8 +114,8 @@ your use-case.
Get the most recent weekly snapshot link [here](https://update-cardano-mainnet.iohk.io/cardano-db-sync/index.html#11/), and set it as `RESTORE_SNAPSHOT` below, or omit if you wish to sync from genesis.
``` console
export NETWORK=mainnet &&\
docker pull inputoutput/cardano-graphql:7.0.1-${NETWORK} &&\
docker pull inputoutput/cardano-graphql-hasura:7.0.1 &&\
docker pull inputoutput/cardano-graphql:7.0.2-${NETWORK} &&\
docker pull inputoutput/cardano-graphql-hasura:7.0.2 &&\
docker pull cardanosolutions/cardano-node-ogmios:v5.5.7_1.35.3-${NETWORK} &&\
RESTORE_SNAPSHOT=https://update-cardano-mainnet.iohk.io/cardano-db-sync/13/db-sync-snapshot-schema-13-block-7960123-x86_64.tgz \
docker-compose up -d &&\
Expand All @@ -128,8 +128,8 @@ docker-compose logs -f

``` console
export NETWORK=preprod &&\
docker pull inputoutput/cardano-graphql:7.0.1-${NETWORK} &&\
docker pull inputoutput/cardano-graphql-hasura:7.0.1 &&\
docker pull inputoutput/cardano-graphql:7.0.2-${NETWORK} &&\
docker pull inputoutput/cardano-graphql-hasura:7.0.2 &&\
docker pull cardanosolutions/cardano-node-ogmios:v5.5.7_1.35.3-${NETWORK} &&\
API_PORT=3101 \
HASURA_PORT=8091 \
Expand All @@ -146,8 +146,8 @@ docker-compose -p ${NETWORK} logs -f

``` console
export NETWORK=preview &&\
docker pull inputoutput/cardano-graphql:7.0.1-${NETWORK} &&\
docker pull inputoutput/cardano-graphql-hasura:7.0.1 &&\
docker pull inputoutput/cardano-graphql:7.0.2-${NETWORK} &&\
docker pull inputoutput/cardano-graphql-hasura:7.0.2 &&\
docker pull cardanosolutions/cardano-node-ogmios:v5.5.7_1.35.3-${NETWORK} &&\
API_PORT=3102 \
HASURA_PORT=8092 \
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ services:
hasura:
build:
context: ./packages/api-cardano-db-hasura/hasura
image: inputoutput/cardano-graphql-hasura:${CARDANO_GRAPHQL_VERSION:-7.0.1}
image: inputoutput/cardano-graphql-hasura:${CARDANO_GRAPHQL_VERSION:-7.0.2}
ports:
- ${HASURA_PORT:-8090}:8080
depends_on:
Expand All @@ -106,7 +106,7 @@ services:
cache_from: [ inputoutput/cardano-graphql:latest ]
context: .
target: server
image: inputoutput/cardano-graphql:${CARDANO_GRAPHQL_VERSION:-7.0.1}-${NETWORK:-mainnet}
image: inputoutput/cardano-graphql:${CARDANO_GRAPHQL_VERSION:-7.0.2}-${NETWORK:-mainnet}
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
Expand Up @@ -4,7 +4,7 @@
"engines": {
"node": ">=14.15.0"
},
"version": "7.0.1",
"version": "7.0.2",
"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": "7.0.1",
"version": "7.0.2",
"description": "Module for interfacing with the Cardano DB, populated by cardano-db-sync 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": "7.0.1",
"@cardano-graphql/util": "7.0.2",
"@cardano-ogmios/client": "5.5.7",
"@cardanosolutions/json-bigint": "^1.0.0",
"@emurgo/cip14-js": "^2.0.0",
Expand Down Expand Up @@ -64,7 +64,7 @@
"ts-log": "^2.2.3"
},
"devDependencies": {
"@cardano-graphql/util-dev": "7.0.1",
"@cardano-graphql/util-dev": "7.0.2",
"@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": "7.0.1",
"version": "7.0.2",
"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": "7.0.1",
"version": "7.0.2",
"description": "A client package for Cardano GraphQL, including the GraphQL schema and TypeScript definitions generated from it",
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cardano-graphql/server",
"version": "7.0.1",
"version": "7.0.2",
"description": "Serve the Cardano GraphQL API over HTTP",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand All @@ -24,7 +24,7 @@
},
"homepage": "https://github.com/input-output-hk/cardano-graphql/blob/master/packages/server/README.md",
"dependencies": {
"@cardano-graphql/api-cardano-db-hasura": "7.0.1",
"@cardano-graphql/api-cardano-db-hasura": "7.0.2",
"@cardano-ogmios/schema": "5.5.7",
"@graphql-tools/merge": "^6.0.10",
"apollo-metrics": "^1.0.1",
Expand All @@ -46,7 +46,7 @@
"ts-log": "^2.2.3"
},
"devDependencies": {
"@cardano-graphql/util-dev": "7.0.1",
"@cardano-graphql/util-dev": "7.0.2",
"@graphql-codegen/cli": "^1.15.2",
"@types/death": "^1.1.1",
"@types/fs-extra": "^9.0.1",
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": "7.0.1",
"version": "7.0.2",
"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": "7.0.1",
"@cardano-graphql/util": "7.0.2",
"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": "7.0.1",
"version": "7.0.2",
"description": "Common utilities",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down

0 comments on commit 4049bca

Please sign in to comment.