Skip to content

Commit ac7db4b

Browse files
committedAug 22, 2022
chore: bump version, update changelog
1 parent 1ccb59d commit ac7db4b

File tree

10 files changed

+61
-21
lines changed

10 files changed

+61
-21
lines changed
 

‎CHANGELOG.md

+40
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,46 @@
22

33
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.
44

5+
## [7.0.0](https://github.com/input-output-hk/cardano-graphql/compare/6.2.0...7.0.0) (2022-08-19)
6+
7+
### Compatible with:
8+
9+
- [`cardano-node`: `1.35.3`](https://github.com/input-output-hk/cardano-node/releases/tag/1.35.3)
10+
- [`cardano-ogmios`: `v5.5.5`](https://github.com/CardanoSolutions/ogmios/releases/tag/v5.5.5)
11+
- [`cardano-db-sync`: `13.0.4`](https://github.com/input-output-hk/cardano-db-sync/releases/tag/13.0.4) - Note: The database must be recreated using the new version.
12+
- [`hasura/graphql-engine`: `1.3.3`](https://github.com/hasura/graphql-engine/releases/tag/v1.3.3)
13+
14+
### ⚠ BREAKING CHANGES
15+
16+
* collateral outputs
17+
* add ProtocolParams type to better represent current protocol params
18+
* remove remnants of previously deprecated config
19+
* Reward.receivedIn nullability
20+
* `Reward.stakePool` is now nullable to handle rewards of type
21+
`treasury` or `reserves`.
22+
23+
### Features
24+
25+
* add `TransactionOutput`|`CollateralOutput`.`paymentCredential` ([e6e2d45](https://github.com/input-output-hk/cardano-graphql/commit/e6e2d45cdd4c82f40495c39197f3ef79a287add2))
26+
* add Transaction.referenceInputs ([2c5e0b5](https://github.com/input-output-hk/cardano-graphql/commit/2c5e0b5409c783805ec8e0795f322bd1a3d154f7))
27+
* collateral outputs ([a222cb4](https://github.com/input-output-hk/cardano-graphql/commit/a222cb4305b6d3bbd96c1bf82d0252baa09f1af4))
28+
* support Babbage block ([fe484e1](https://github.com/input-output-hk/cardano-graphql/commit/fe484e1a607a61ac413df7736490ea0d6644c1e5))
29+
* support Plutus data ([58f6c48](https://github.com/input-output-hk/cardano-graphql/commit/58f6c48e5786ab97027c1c4ba2ae8a5554035408))
30+
* remove remnants of previously deprecated config ([c3fc2aa](https://github.com/input-output-hk/cardano-graphql/commit/c3fc2aabe0d29e50393906b2aa5947de9b6b0fc1))
31+
* update to Ogmios v5.5.0 cardano-db-sync 13.0.0 ([b821f21](https://github.com/input-output-hk/cardano-graphql/commit/b821f21ade1f1365f1fd4b4012bbb2c982a1fe9a))
32+
33+
34+
### Bug Fixes
35+
36+
* `Redeemer.fee` is nullable in the Babbage era ([813a7ae](https://github.com/input-output-hk/cardano-graphql/commit/813a7ae55b87a9c651cc7cb9e7e4e2141877e6fd))
37+
* add ProtocolParams type to better represent current protocol params ([73cf785](https://github.com/input-output-hk/cardano-graphql/commit/73cf785d266568b4f1c19025a025a22e228c9d7a))
38+
* **api-cardano-db-hasura:** define response as optional in metadata server errors ([ca5d556](https://github.com/input-output-hk/cardano-graphql/commit/ca5d556bcf0c2bd0b022ee3c293851b7ddd8f6f7))
39+
* **cli:** correct services option ([f600d31](https://github.com/input-output-hk/cardano-graphql/commit/f600d31028afe9d3452855be3e8638d56488e4f1))
40+
* gracefully shutdown cardano-db-sync ([2f02e56](https://github.com/input-output-hk/cardano-graphql/commit/2f02e562b26818e8c57ca1fde08a30daf3c4d436)), closes [/github.com/CardanoSolutions/ogmios/blob/c32341e56ccbeb1cf1e803d4607699668a1e2cc2/Dockerfile#L73](https://github.com/input-output-hk//github.com/CardanoSolutions/ogmios/blob/c32341e56ccbeb1cf1e803d4607699668a1e2cc2/Dockerfile/issues/L73)
41+
* Reward.receivedIn nullability ([9a3dcf5](https://github.com/input-output-hk/cardano-graphql/commit/9a3dcf538fb6878cb1977f308adb3aa8322408f6))
42+
* trim whitespace from credentials in server config ([b40a596](https://github.com/input-output-hk/cardano-graphql/commit/b40a5960c9c312141618c77106457d6bae1eeb87))
43+
44+
545
## [6.2.0](https://github.com/input-output-hk/cardano-graphql/compare/6.1.0...6.2.0) (2022-01-26)
646

747
### Compatible with:

‎README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Check the [releases] for the latest version.
4040
``` console
4141
git clone \
4242
--single-branch \
43-
--branch 6.2.0 \
43+
--branch 7.0.0 \
4444
--recurse-submodules \
4545
https://github.com/input-output-hk/cardano-graphql.git \
4646
&& cd cardano-graphql
@@ -114,8 +114,8 @@ your use-case.
114114
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.
115115
``` console
116116
export NETWORK=mainnet &&\
117-
docker pull inputoutput/cardano-graphql:6.2.0-${NETWORK} &&\
118-
docker pull inputoutput/cardano-graphql-hasura:6.2.0 &&\
117+
docker pull inputoutput/cardano-graphql:7.0.0-${NETWORK} &&\
118+
docker pull inputoutput/cardano-graphql-hasura:7.0.0 &&\
119119
docker pull cardanosolutions/cardano-node-ogmios:v5.5.5_1.35.3-${NETWORK} &&\
120120
RESTORE_SNAPSHOT=https://update-cardano-mainnet.iohk.io/cardano-db-sync/13/db-sync-snapshot-schema-13-block-7643447-x86_64.tgz \
121121
docker-compose up -d &&\
@@ -128,8 +128,8 @@ docker-compose logs -f
128128

129129
``` console
130130
export NETWORK=preprod &&\
131-
docker pull inputoutput/cardano-graphql:6.2.0-${NETWORK} &&\
132-
docker pull inputoutput/cardano-graphql-hasura:6.2.0 &&\
131+
docker pull inputoutput/cardano-graphql:7.0.0-${NETWORK} &&\
132+
docker pull inputoutput/cardano-graphql-hasura:7.0.0 &&\
133133
docker pull cardanosolutions/cardano-node-ogmios:v5.5.5_1.35.3-${NETWORK} &&\
134134
API_PORT=3101 \
135135
HASURA_PORT=8091 \
@@ -146,8 +146,8 @@ docker-compose -p ${NETWORK} logs -f
146146

147147
``` console
148148
export NETWORK=preview &&\
149-
docker pull inputoutput/cardano-graphql:6.2.0-${NETWORK} &&\
150-
docker pull inputoutput/cardano-graphql-hasura:6.2.0 &&\
149+
docker pull inputoutput/cardano-graphql:7.0.0-${NETWORK} &&\
150+
docker pull inputoutput/cardano-graphql-hasura:7.0.0 &&\
151151
docker pull cardanosolutions/cardano-node-ogmios:v5.5.5_1.35.3-${NETWORK} &&\
152152
API_PORT=3102 \
153153
HASURA_PORT=8092 \

‎docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ services:
7878
hasura:
7979
build:
8080
context: ./packages/api-cardano-db-hasura/hasura
81-
image: inputoutput/cardano-graphql-hasura:${CARDANO_GRAPHQL_VERSION:-6.2.0}
81+
image: inputoutput/cardano-graphql-hasura:${CARDANO_GRAPHQL_VERSION:-7.0.0}
8282
ports:
8383
- ${HASURA_PORT:-8090}:8080
8484
depends_on:
@@ -105,7 +105,7 @@ services:
105105
cache_from: [ inputoutput/cardano-graphql:latest ]
106106
context: .
107107
target: server
108-
image: inputoutput/cardano-graphql:${CARDANO_GRAPHQL_VERSION:-6.2.0}-${NETWORK:-mainnet}
108+
image: inputoutput/cardano-graphql:${CARDANO_GRAPHQL_VERSION:-7.0.0}-${NETWORK:-mainnet}
109109
environment:
110110
- ALLOW_INTROSPECTION=true
111111
- CACHE_ENABLED=true

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"engines": {
55
"node": ">=14.15.0 <17.0.0"
66
},
7-
"version": "6.2.0",
7+
"version": "7.0.0",
88
"private": true,
99
"workspaces": [
1010
"packages/*"

‎packages/api-cardano-db-hasura/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cardano-graphql/api-cardano-db-hasura",
3-
"version": "6.2.0",
3+
"version": "7.0.0",
44
"description": "Module for interfacing with the Cardano DB, populated by cardano-db-sync that utilises Hasura for a powerful query interface",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",
@@ -32,7 +32,7 @@
3232
"schema.graphql"
3333
],
3434
"dependencies": {
35-
"@cardano-graphql/util": "6.2.0",
35+
"@cardano-graphql/util": "7.0.0",
3636
"@cardano-ogmios/client": "5.5.5",
3737
"@cardanosolutions/json-bigint": "^1.0.0",
3838
"@emurgo/cip14-js": "^2.0.0",
@@ -64,7 +64,7 @@
6464
"ts-log": "^2.2.3"
6565
},
6666
"devDependencies": {
67-
"@cardano-graphql/util-dev": "6.2.0",
67+
"@cardano-graphql/util-dev": "7.0.0",
6868
"@graphql-codegen/cli": "^1.15.2",
6969
"@graphql-codegen/typescript": "^1.15.2",
7070
"@graphql-codegen/typescript-graphql-files-modules": "^1.15.2",

‎packages/cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cardano-graphql/cli",
3-
"version": "6.2.0",
3+
"version": "7.0.0",
44
"description": "Management tool for managing a Cardano GraphQL deployment",
55
"main": "./dist/index.js",
66
"bin": {

‎packages/client-ts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cardano-graphql/client-ts",
3-
"version": "6.2.0",
3+
"version": "7.0.0",
44
"description": "A client package for Cardano GraphQL, including the GraphQL schema and TypeScript definitions generated from it",
55
"repository": {
66
"type": "git",

‎packages/server/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cardano-graphql/server",
3-
"version": "6.2.0",
3+
"version": "7.0.0",
44
"description": "Serve the Cardano GraphQL API over HTTP",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",
@@ -24,7 +24,7 @@
2424
},
2525
"homepage": "https://github.com/input-output-hk/cardano-graphql/blob/master/packages/server/README.md",
2626
"dependencies": {
27-
"@cardano-graphql/api-cardano-db-hasura": "6.2.0",
27+
"@cardano-graphql/api-cardano-db-hasura": "7.0.0",
2828
"@cardano-ogmios/schema": "5.5.5",
2929
"@graphql-tools/merge": "^6.0.10",
3030
"apollo-metrics": "^1.0.1",
@@ -46,7 +46,7 @@
4646
"ts-log": "^2.2.3"
4747
},
4848
"devDependencies": {
49-
"@cardano-graphql/util-dev": "6.2.0",
49+
"@cardano-graphql/util-dev": "7.0.0",
5050
"@graphql-codegen/cli": "^1.15.2",
5151
"@types/death": "^1.1.1",
5252
"@types/fs-extra": "^9.0.1",

‎packages/util-dev/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cardano-graphql/util-dev",
3-
"version": "6.2.0",
3+
"version": "7.0.0",
44
"description": "Common development utilities",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",
@@ -22,7 +22,7 @@
2222
},
2323
"homepage": "https://github.com/input-output-hk/cardano-graphql/blob/master/packages/util-dev/README.md",
2424
"devDependencies": {
25-
"@cardano-graphql/util": "6.2.0",
25+
"@cardano-graphql/util": "7.0.0",
2626
"shx": "^0.3.2"
2727
},
2828
"directories": {

‎packages/util/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cardano-graphql/util",
3-
"version": "6.2.0",
3+
"version": "7.0.0",
44
"description": "Common utilities",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",

0 commit comments

Comments
 (0)
Please sign in to comment.