Skip to content

Commit 4bbf8e4

Browse files
Forbid using Hasura instances running vulnerable versions (#548)
1 parent 3d7b9fa commit 4bbf8e4

39 files changed

+164
-53
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic
1616
* index: Do not deserialize originations matched by the `source` filter.
1717
* index: Wrap storage deserialization exceptions with `InvalidDataError`.
1818

19+
### Security
20+
21+
* hasura: Forbid using Hasura instances running vulnerable versions.
22+
1923
## [6.3.0] - 2022-11-15
2024

2125
### Added

demos/demo-domains-big-map/docker-compose.swarm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ services:
5353
logging: *logging
5454

5555
hasura:
56-
image: hasura/graphql-engine:v2.15.0
56+
image: hasura/graphql-engine:v2.15.2
5757
depends_on:
5858
- db
5959
environment:

demos/demo-domains-big-map/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ services:
3131
retries: 5
3232

3333
hasura:
34-
image: hasura/graphql-engine:v2.15.0
34+
image: hasura/graphql-engine:v2.15.2
3535
ports:
3636
- 127.0.0.1:8080:8080
3737
depends_on:

demos/demo-domains-big-map/replay.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"crash_reporting": false,
77
"description": "My shiny new indexer based on DipDup",
88
"dipdup_version": "6",
9-
"hasura_image": "hasura/graphql-engine:v2.15.0",
9+
"hasura_image": "hasura/graphql-engine:v2.15.2",
1010
"license": "MIT",
1111
"line_length": "120",
1212
"linters": "default",

demos/demo-domains/docker-compose.swarm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ services:
5353
logging: *logging
5454

5555
hasura:
56-
image: hasura/graphql-engine:v2.15.0
56+
image: hasura/graphql-engine:v2.15.2
5757
depends_on:
5858
- db
5959
environment:

demos/demo-domains/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ services:
3131
retries: 5
3232

3333
hasura:
34-
image: hasura/graphql-engine:v2.15.0
34+
image: hasura/graphql-engine:v2.15.2
3535
ports:
3636
- 127.0.0.1:8080:8080
3737
depends_on:

demos/demo-domains/replay.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"crash_reporting": false,
77
"description": "My shiny new indexer based on DipDup",
88
"dipdup_version": "6",
9-
"hasura_image": "hasura/graphql-engine:v2.15.0",
9+
"hasura_image": "hasura/graphql-engine:v2.15.2",
1010
"license": "MIT",
1111
"line_length": "120",
1212
"linters": "default",

demos/demo-events/docker-compose.swarm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ services:
5353
logging: *logging
5454

5555
hasura:
56-
image: hasura/graphql-engine:v2.15.0
56+
image: hasura/graphql-engine:v2.15.2
5757
depends_on:
5858
- db
5959
environment:

demos/demo-events/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ services:
3131
retries: 5
3232

3333
hasura:
34-
image: hasura/graphql-engine:v2.15.0
34+
image: hasura/graphql-engine:v2.15.2
3535
ports:
3636
- 127.0.0.1:8080:8080
3737
depends_on:

demos/demo-events/replay.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"crash_reporting": false,
77
"description": "My shiny new indexer based on DipDup",
88
"dipdup_version": "6",
9-
"hasura_image": "hasura/graphql-engine:v2.15.0",
9+
"hasura_image": "hasura/graphql-engine:v2.15.2",
1010
"license": "MIT",
1111
"line_length": "120",
1212
"linters": "default",

0 commit comments

Comments
 (0)