graphql-http 2.2.8__tar.gz → 2.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {graphql_http-2.2.8 → graphql_http-2.3.0}/.github/workflows/python-package.yml +9 -1
- {graphql_http-2.2.8 → graphql_http-2.3.0}/PKG-INFO +1 -1
- graphql_http-2.3.0/VERSION +1 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/graphql_http/graphiql/index.html +1358 -494
- {graphql_http-2.2.8 → graphql_http-2.3.0}/graphql_http.egg-info/PKG-INFO +1 -1
- graphql_http-2.2.8/VERSION +0 -1
- {graphql_http-2.2.8 → graphql_http-2.3.0}/.coverage +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/.github/workflows/pages.yml +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/.gitignore +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/.gitmodules +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/LICENSE +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/README.md +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/docs/.gitmodules +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/docs/content/_index.md +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/docs/content/docs/_index.md +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/docs/content/docs/api-reference.md +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/docs/content/docs/authentication.md +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/docs/content/docs/configuration.md +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/docs/content/docs/examples.md +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/docs/content/docs/getting-started.md +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/docs/content/docs/testing.md +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/docs/hugo.toml +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/docs/index.md +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/example_advanced_server.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/examples/README.md +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/examples/__init__.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/examples/advanced_server.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/examples/auth_server.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/examples/basic_server.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/examples/graphql_api_server.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/graphql_http/__init__.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/graphql_http/error.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/graphql_http/helpers.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/graphql_http/introspection.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/graphql_http/server.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/graphql_http.egg-info/SOURCES.txt +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/graphql_http.egg-info/dependency_links.txt +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/graphql_http.egg-info/requires.txt +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/graphql_http.egg-info/top_level.txt +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/pyproject.toml +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/setup.cfg +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/test_server.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/tests/__init__.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/tests/app.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/tests/app_federation.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/tests/conftest.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/tests/test_auth.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/tests/test_cors.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/tests/test_examples.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/tests/test_federation.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/tests/test_graphql_api.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/tests/test_introspection.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/tests/test_linting.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/tests/test_server.py +0 -0
- {graphql_http-2.2.8 → graphql_http-2.3.0}/uv.lock +0 -0
|
@@ -47,6 +47,7 @@ jobs:
|
|
|
47
47
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
|
|
48
48
|
permissions:
|
|
49
49
|
id-token: write
|
|
50
|
+
contents: write
|
|
50
51
|
|
|
51
52
|
steps:
|
|
52
53
|
- name: Validate tag format (e.g., 1.0.0)
|
|
@@ -75,4 +76,11 @@ jobs:
|
|
|
75
76
|
shell: bash
|
|
76
77
|
|
|
77
78
|
- name: Build and publish package to PyPI
|
|
78
|
-
run: uv build && uv publish
|
|
79
|
+
run: uv build && uv publish
|
|
80
|
+
|
|
81
|
+
- name: Create GitHub Release
|
|
82
|
+
uses: softprops/action-gh-release@v2
|
|
83
|
+
with:
|
|
84
|
+
tag_name: ${{ github.ref_name }}
|
|
85
|
+
name: ${{ github.ref_name }}
|
|
86
|
+
generate_release_notes: true
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2.3.0
|