Skip to content

Commit

Permalink
cardano-graphql: version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
disassembler committed Jul 7, 2020
1 parent be90e3b commit 5e417c9
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 22 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Expand Up @@ -58,7 +58,7 @@ services:
hasura:
build:
context: ./packages/api-cardano-db-hasura/hasura
image: inputoutput/cardano-graphql-hasura:${CARDANO_GRAPHQL_VERSION:-v1.0.0-rc.14}
image: inputoutput/cardano-graphql-hasura:${CARDANO_GRAPHQL_VERSION:-1.0.0}
ports:
- "8090:8080"
depends_on:
Expand Down Expand Up @@ -86,7 +86,7 @@ services:
build:
context: .
target: server
image: inputoutput/cardano-graphql:${CARDANO_GRAPHQL_VERSION:-v1.0.0-rc.14}
image: inputoutput/cardano-graphql:${CARDANO_GRAPHQL_VERSION:-1.0.0}
environment:
- CACHE_ENABLED=true
- HASURA_URI=http://hasura:8080
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "cardano-graphql",
"description": "A TypeScript monorepo. Includes a server package and API modules for flexible implementation",
"version": "1.0.0-rc.14",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
Expand Down
6 changes: 3 additions & 3 deletions packages/api-cardano-db-hasura/package.json
@@ -1,6 +1,6 @@
{
"name": "@cardano-graphql/api-cardano-db-hasura",
"version": "1.0.0-rc.14",
"version": "1.0.0",
"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": "1.0.0-rc.14",
"@cardano-graphql/util": "1.0.0",
"@graphql-tools/delegate": "^6.0.10",
"@graphql-tools/schema": "^6.0.9",
"@graphql-tools/wrap": "^6.0.9",
Expand All @@ -48,7 +48,7 @@
"p-retry": "^4.2.0"
},
"devDependencies": {
"@cardano-graphql/util-dev": "1.0.0-rc.14",
"@cardano-graphql/util-dev": "1.0.0",
"@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
@@ -1,6 +1,6 @@
{
"name": "@cardano-graphql/cli",
"version": "1.0.0-rc.14",
"version": "1.0.0",
"description": "Management tool for managing a Cardano GraphQL deployment",
"main": "./dist/index.js",
"bin": {
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/Docker/docker-compose.yml
Expand Up @@ -58,7 +58,7 @@ services:
hasura:
build:
context: ./packages/api-cardano-db-hasura/hasura
image: inputoutput/cardano-graphql-hasura:v1.0.0-rc.14
image: inputoutput/cardano-graphql-hasura:1.0.0
ports:
- "8090:8080"
depends_on:
Expand Down Expand Up @@ -86,7 +86,7 @@ services:
build:
context: .
target: server
image: inputoutput/cardano-graphql:v1.0.0-rc.14
image: inputoutput/cardano-graphql:1.0.0
environment:
- CACHE_ENABLED=true
- HASURA_URI=http://hasura:8080
Expand Down
2 changes: 1 addition & 1 deletion packages/client-ts/package.json
@@ -1,6 +1,6 @@
{
"name": "@cardano-graphql/client-ts",
"version": "1.0.0-rc.14",
"version": "1.0.0",
"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
@@ -1,6 +1,6 @@
{
"name": "@cardano-graphql/server",
"version": "1.0.0-rc.14",
"version": "1.0.0",
"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": "1.0.0-rc.14",
"@cardano-graphql/api-cardano-db-hasura": "1.0.0",
"@graphql-tools/merge": "^6.0.10",
"apollo-metrics": "^1.0.1",
"apollo-server-core": "^2.14.3",
Expand All @@ -38,7 +38,7 @@
"ts-custom-error": "^3.1.1"
},
"devDependencies": {
"@cardano-graphql/util-dev": "1.0.0-rc.14",
"@cardano-graphql/util-dev": "1.0.0",
"@types/graphql-depth-limit": "^1.1.2",
"@types/node": "^14.0.13",
"typescript": "^3.9.5"
Expand Down
4 changes: 2 additions & 2 deletions packages/util-dev/package.json
@@ -1,6 +1,6 @@
{
"name": "@cardano-graphql/util-dev",
"version": "1.0.0-rc.14",
"version": "1.0.0",
"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": "1.0.0-rc.14"
"@cardano-graphql/util": "1.0.0"
},
"directories": {
"lib": "src",
Expand Down
2 changes: 1 addition & 1 deletion packages/util/package.json
@@ -1,6 +1,6 @@
{
"name": "@cardano-graphql/util",
"version": "1.0.0-rc.14",
"version": "1.0.0",
"description": "Common utilities",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
6 changes: 1 addition & 5 deletions release.nix
Expand Up @@ -21,11 +21,7 @@ pkgs.lib.fix (self: {
required = pkgs.releaseTools.aggregate {
name = "required";
constituents = with self; [
self.cardano-graphql.cardano-graphql-api-cardano-db-hasura
self.cardano-graphql.cardano-graphql-cli
self.cardano-graphql.cardano-graphql-client-ts
self.cardano-graphql.cardano-graphql-server
self.cardano-graphql.cardano-graphql-util
cardano-graphql
graphql-engine
hasura-cli
hasura-cli-ext
Expand Down
2 changes: 1 addition & 1 deletion shell.nix
Expand Up @@ -19,7 +19,7 @@ let
nix # Purely Functional Package Manager
nodePackages.node2nix # Generates a set of Nix expressions from a NPM package's package.json
packages.nodejs # Event-driven I/O framework for the V8 JavaScript engine
packages.cardano-graphql.cardano-graphql-server
packages.cardano-graphql
pkgconfig # Allows packages to find out information about other packages
pkgs.packages.persistgraphql
pkgs.packages.hasura-cli
Expand Down

0 comments on commit 5e417c9

Please sign in to comment.