Skip to content

Commit c0c2bb9

Browse files
Fix init crash when package name is equal to one of typenames (#725)
1 parent a50fecb commit c0c2bb9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+471
-570
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning].
66

7+
## [Unreleased]
8+
9+
### Fixed
10+
11+
- cli: Fixed `init` crash when package name is equal to one of the project typenames.
12+
713
## [6.5.7] - 2022-05-30
814

915
### Added

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,6 @@ clean: ## Remove all files from .gitignore except for `.venv`
7474
git clean -xdf --exclude=".venv"
7575

7676
update: ## Update dependencies, export requirements.txt
77-
git checkout HEAD requirements.* poetry.lock
78-
79-
make install
8077
poetry update
8178

8279
cp pyproject.toml pyproject.toml.bak

demos/demo-auction/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.25.1
56+
image: hasura/graphql-engine:v2.28.0
5757
depends_on:
5858
- db
5959
environment:

demos/demo-auction/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.25.1
34+
image: hasura/graphql-engine:v2.28.0
3535
ports:
3636
- 127.0.0.1:8080:8080
3737
depends_on:

demos/demo-auction/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.25.1",
9+
"hasura_image": "hasura/graphql-engine:v2.28.0",
1010
"license": "MIT",
1111
"line_length": "120",
1212
"linters": "default",

demos/demo-big-maps/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.25.1
56+
image: hasura/graphql-engine:v2.28.0
5757
depends_on:
5858
- db
5959
environment:

demos/demo-big-maps/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.25.1
34+
image: hasura/graphql-engine:v2.28.0
3535
ports:
3636
- 127.0.0.1:8080:8080
3737
depends_on:

demos/demo-big-maps/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.25.1",
9+
"hasura_image": "hasura/graphql-engine:v2.28.0",
1010
"license": "MIT",
1111
"line_length": "120",
1212
"linters": "default",

demos/demo-dao/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.25.1
56+
image: hasura/graphql-engine:v2.28.0
5757
depends_on:
5858
- db
5959
environment:

demos/demo-dao/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.25.1
34+
image: hasura/graphql-engine:v2.28.0
3535
ports:
3636
- 127.0.0.1:8080:8080
3737
depends_on:

0 commit comments

Comments
 (0)