merge branch 'release-v1.0' to master after stable release

This commit is contained in:
Shahidh K Muhammed 2019-12-17 19:23:34 +05:30
commit 7abe5dd744
11 changed files with 11 additions and 11 deletions

View File

@ -21,7 +21,7 @@ export const getFeaturesCompatibility = serverVersion => {
Object.keys(featureLaunchVersions).forEach(feature => { Object.keys(featureLaunchVersions).forEach(feature => {
featuresCompatibility[feature] = isValidServerVersion featuresCompatibility[feature] = isValidServerVersion
? semver.satisfies(featureLaunchVersions[feature], '<=' + serverVersion) ? semver.satisfies(serverVersion, '>=' + featureLaunchVersions[feature])
: true; : true;
}); });

View File

@ -97,7 +97,7 @@
"firewallRuleName": "allow-all-azure-firewall-rule", "firewallRuleName": "allow-all-azure-firewall-rule",
"containerGroupName": "[concat(parameters('name'), '-container-group')]", "containerGroupName": "[concat(parameters('name'), '-container-group')]",
"containerName": "hasura-graphql-engine", "containerName": "hasura-graphql-engine",
"containerImage": "hasura/graphql-engine:v1.0.0-rc.1" "containerImage": "hasura/graphql-engine:v1.0.0"
}, },
"resources": [ "resources": [
{ {

View File

@ -55,7 +55,7 @@
"dbName": "[parameters('postgresDatabaseName')]", "dbName": "[parameters('postgresDatabaseName')]",
"containerGroupName": "[concat(parameters('name'), '-container-group')]", "containerGroupName": "[concat(parameters('name'), '-container-group')]",
"containerName": "hasura-graphql-engine", "containerName": "hasura-graphql-engine",
"containerImage": "hasura/graphql-engine:v1.0.0-rc.1" "containerImage": "hasura/graphql-engine:v1.0.0"
}, },
"resources": [ "resources": [
{ {

View File

@ -6,7 +6,7 @@ services:
volumes: volumes:
- db_data:/var/lib/postgresql/data - db_data:/var/lib/postgresql/data
graphql-engine: graphql-engine:
image: hasura/graphql-engine:v1.0.0-rc.1 image: hasura/graphql-engine:v1.0.0
depends_on: depends_on:
- "postgres" - "postgres"
restart: always restart: always

View File

@ -17,7 +17,7 @@ services:
PGADMIN_DEFAULT_EMAIL: pgadmin@example.com PGADMIN_DEFAULT_EMAIL: pgadmin@example.com
PGADMIN_DEFAULT_PASSWORD: admin PGADMIN_DEFAULT_PASSWORD: admin
graphql-engine: graphql-engine:
image: hasura/graphql-engine:v1.0.0-rc.1 image: hasura/graphql-engine:v1.0.0
ports: ports:
- "8080:8080" - "8080:8080"
depends_on: depends_on:

View File

@ -6,7 +6,7 @@ services:
volumes: volumes:
- db_data:/var/lib/postgresql/data - db_data:/var/lib/postgresql/data
graphql-engine: graphql-engine:
image: hasura/graphql-engine:v1.0.0-rc.1 image: hasura/graphql-engine:v1.0.0
ports: ports:
- "8080:8080" - "8080:8080"
depends_on: depends_on:

View File

@ -6,7 +6,7 @@ services:
volumes: volumes:
- db_data:/var/lib/postgresql/data - db_data:/var/lib/postgresql/data
graphql-engine: graphql-engine:
image: hasura/graphql-engine:v1.0.0-rc.1 image: hasura/graphql-engine:v1.0.0
ports: ports:
- "8080:8080" - "8080:8080"
depends_on: depends_on:

View File

@ -2,4 +2,4 @@
docker run -d -p 8080:8080 \ docker run -d -p 8080:8080 \
-e HASURA_GRAPHQL_DATABASE_URL=postgres://username:password@hostname:port/dbname \ -e HASURA_GRAPHQL_DATABASE_URL=postgres://username:password@hostname:port/dbname \
-e HASURA_GRAPHQL_ENABLE_CONSOLE=true \ -e HASURA_GRAPHQL_ENABLE_CONSOLE=true \
hasura/graphql-engine:v1.0.0-rc.1 hasura/graphql-engine:v1.0.0

View File

@ -16,7 +16,7 @@ spec:
spec: spec:
containers: containers:
- name: graphql-engine - name: graphql-engine
image: hasura/graphql-engine:v1.0.0-rc.1 image: hasura/graphql-engine:v1.0.0
ports: ports:
- containerPort: 8080 - containerPort: 8080
readinessProbe: readinessProbe:

View File

@ -18,7 +18,7 @@ spec:
app: hasura app: hasura
spec: spec:
containers: containers:
- image: hasura/graphql-engine:v1.0.0-rc.1 - image: hasura/graphql-engine:v1.0.0
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
name: hasura name: hasura
env: env:

View File

@ -1,4 +1,4 @@
FROM hasura/graphql-engine:v1.0.0-rc.1 FROM hasura/graphql-engine:v1.0.0
# set an env var to let the cli know that # set an env var to let the cli know that
# it is running in server environment # it is running in server environment