Skip to content

Commit

Permalink
Release 5.0.0 (#40)
Browse files Browse the repository at this point in the history
* Update dependencies

* Add 5.x.x migration docs

* Bump version to 5.0.0
  • Loading branch information
DoctorJohn authored Jan 1, 2024
1 parent 0a066fb commit 20f7031
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 21 deletions.
10 changes: 10 additions & 0 deletions docs/migrating.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Migrating

## From 4.x.x to 5.x.x

The connection initialization parameters of the legacy `graphql-ws`
protocol now default to an empty JSON object `{}` instead of `null`.
This is to be more aligned with the reference implementation.

Furthermore, various constants have been removed from `aiogqlc.constants`.
They were not considered part of the public API, but in case you used them,
you might need to update your code.

## From 3.x.x to 4.x.x

Support for Python 3.7 was dropped because it reached its end of life.
Expand Down
37 changes: 19 additions & 18 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aiogqlc"
version = "4.1.0"
version = "5.0.0"
description = "aiohttp based GraphQL client"
authors = ["Jonathan Ehwald <github@ehwald.info>"]
license = "MIT"
Expand Down Expand Up @@ -33,9 +33,9 @@ aiohttp = "^3.6.0"
pre-commit = "^3.4.0"
pytest = "^7.4.1"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.21.1"
pytest-asyncio = "^0.23.3"
pytest-aiohttp = "^1.0.4"
strawberry-graphql = "^0.213.0"
strawberry-graphql = "^0.217.0"
mypy = "^1.5.1"
mkdocs = "^1.5.2"
mkdocs-material = "^9.2.8"
Expand Down

0 comments on commit 20f7031

Please sign in to comment.