Skip to content

Commit 34d0863

Browse files
committed
Bump strawberry
1 parent 8fb2ff8 commit 34d0863

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.7.3
2+
current_version = 1.8.0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?

docs/debugging.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ Below examples are written for IMS but should apply to any other gitlab project.
77
### VSCODE
88

99
Initial setup:
10-
* Add configuration from `okteto/launch.json` to `.vscode/launch.json`
10+
* Add configuration from `okteto/launch.json` to `.vscode/launch.json`
1111

1212
Steps to take every time you want to debug:
1313
* In your `.env` set `DEBUG_VSCODE=true`
1414
* Choose how you want to debug:
1515
* To run IMS in debugging mode: `okteto up`
1616
* To run unit tests in debugging mode: `okteto up ims --command=pytest --command="tests/unit_tests" --command="-v"`
17-
* (note: you cannot debug acceptance tests this way, unless you run them against an IMS instance)
17+
* (note: you cannot debug acceptance tests this way, unless you run them against an IMS instance)
1818
* Wait until you see this log statement `[info ] Waiting for debug client to connect`
1919
* In VScode go to `Run & Debug` and run configuration "Attach to IMS okteto"
2020

@@ -45,7 +45,7 @@ Steps to take every time you want to debug:
4545
* Choose how you want to debug:
4646
* To run IMS in debugging mode: `okteto up`
4747
* To run unit tests in debugging mode: `okteto up ims --command=pytest --command="tests/unit_tests" --command="-v"`
48-
* (note: you cannot debug acceptance tests this way, unless you run them against an IMS instance)
48+
* (note: you cannot debug acceptance tests this way, unless you run them against an IMS instance)
4949
* Wait until you see this log statement `[info ] Connecting to pydevd server (choose 'Resume Program' in PyCharm)`
5050
* Go back to PyCharm and click `Resume Program` in the Debug window
5151

nwastdlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#
1414
"""The NWA-stdlib module."""
1515

16-
__version__ = "1.7.3"
16+
__version__ = "1.8.0"
1717

1818
from nwastdlib.f import const, identity
1919

nwastdlib/graphql/extensions/deprecation_checker_extension.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
from graphql import GraphQLField, GraphQLResolveInfo
1717
from graphql.pyutils import Path
1818
from strawberry.extensions import SchemaExtension
19-
from strawberry.field import StrawberryField
20-
from strawberry.types.types import StrawberryObjectDefinition
19+
from strawberry.types.base import StrawberryObjectDefinition
20+
from strawberry.types.field import StrawberryField
2121

2222
logger = structlog.get_logger()
2323

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ requires = [
3333
"colorama~=0.4.3",
3434
"pydantic>=2.4.0",
3535
"pydantic_settings",
36-
"strawberry-graphql",
36+
"strawberry-graphql>=0.246.2",
3737
"redis>=5.0, <5.1.0",
38-
"structlog~=22.1.0",
38+
"structlog>=22.1.0",
3939
]
4040
description-file = "README.md"
4141
requires-python = ">=3.11"

0 commit comments

Comments
 (0)