imbi-plugin-github 2.12.1__tar.gz → 2.13.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.
Files changed (31) hide show
  1. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/PKG-INFO +2 -2
  2. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/pyproject.toml +3 -3
  3. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/uv.lock +6 -6
  4. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/.github/workflows/publish.yml +0 -0
  5. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/.github/workflows/test.yml +0 -0
  6. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/.gitignore +0 -0
  7. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/.pre-commit-config.yaml +0 -0
  8. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/CLAUDE.md +0 -0
  9. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/LICENSE +0 -0
  10. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/README.md +0 -0
  11. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/justfile +0 -0
  12. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/src/imbi_plugin_github/__init__.py +0 -0
  13. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/src/imbi_plugin_github/_app_auth.py +0 -0
  14. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/src/imbi_plugin_github/_hosts.py +0 -0
  15. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/src/imbi_plugin_github/_repos.py +0 -0
  16. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/src/imbi_plugin_github/commits.py +0 -0
  17. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/src/imbi_plugin_github/deployment.py +0 -0
  18. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/src/imbi_plugin_github/doctor.py +0 -0
  19. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/src/imbi_plugin_github/identity.py +0 -0
  20. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/src/imbi_plugin_github/lifecycle.py +0 -0
  21. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/src/imbi_plugin_github/plugin.py +0 -0
  22. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/src/imbi_plugin_github/pull_requests.py +0 -0
  23. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/tests/__init__.py +0 -0
  24. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/tests/test_commits.py +0 -0
  25. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/tests/test_deployment.py +0 -0
  26. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/tests/test_doctor.py +0 -0
  27. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/tests/test_hosts.py +0 -0
  28. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/tests/test_identity.py +0 -0
  29. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/tests/test_lifecycle.py +0 -0
  30. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/tests/test_pull_requests.py +0 -0
  31. {imbi_plugin_github-2.12.1 → imbi_plugin_github-2.13.0}/tests/test_repos.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: imbi-plugin-github
3
- Version: 2.12.1
3
+ Version: 2.13.0
4
4
  Summary: GitHub identity plugin for Imbi (github.com / GHEC / GHES)
5
5
  Author-email: "Gavin M. Roy" <gavinr@aweber.com>
6
6
  License: BSD-3-Clause
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python :: 3
13
13
  Classifier: Programming Language :: Python :: 3.14
14
14
  Requires-Python: >=3.14
15
15
  Requires-Dist: httpx>=0.27
16
- Requires-Dist: imbi-common[databases]==2.12.1
16
+ Requires-Dist: imbi-common[databases]==2.13.0
17
17
  Requires-Dist: pydantic>=2
18
18
  Requires-Dist: pyjwt[crypto]>=2.8
19
19
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "imbi-plugin-github"
3
- version = "2.12.1"
3
+ version = "2.13.0"
4
4
  description = "GitHub identity plugin for Imbi (github.com / GHEC / GHES)"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.14"
@@ -16,7 +16,7 @@ classifiers = [
16
16
  ]
17
17
  dependencies = [
18
18
  "httpx>=0.27",
19
- "imbi-common[databases]==2.12.1",
19
+ "imbi-common[databases]==2.13.0",
20
20
  "pydantic>=2",
21
21
  "pyjwt[crypto]>=2.8",
22
22
  ]
@@ -25,7 +25,7 @@ dependencies = [
25
25
  dev = [
26
26
  "basedpyright",
27
27
  "coverage[toml]",
28
- "imbi-common[server,databases]==2.12.1",
28
+ "imbi-common[server,databases]==2.13.0",
29
29
  "pre-commit",
30
30
  "pytest",
31
31
  "pytest-asyncio",
@@ -667,7 +667,7 @@ wheels = [
667
667
 
668
668
  [[package]]
669
669
  name = "imbi-common"
670
- version = "2.12.1"
670
+ version = "2.13.0"
671
671
  source = { registry = "https://pypi.org/simple" }
672
672
  dependencies = [
673
673
  { name = "cryptography" },
@@ -683,9 +683,9 @@ dependencies = [
683
683
  { name = "python-slugify" },
684
684
  { name = "typer" },
685
685
  ]
686
- sdist = { url = "https://files.pythonhosted.org/packages/3a/67/70076e536ca9c9254f89d52fa4c7242ff3571182222440be474bcdb5bdaa/imbi_common-2.12.1.tar.gz", hash = "sha256:701e8941a49beceb319eec270a9517973e05c837c588086a18dfa79ca5a39600", size = 360810, upload-time = "2026-07-13T16:39:15.795Z" }
686
+ sdist = { url = "https://files.pythonhosted.org/packages/59/b0/b1cb8620ce473c8147f405deae58f45c54be04bba5199cc7d7075fef6f31/imbi_common-2.13.0.tar.gz", hash = "sha256:cfe6ec31e5678eee9cd09317b9f40cd469954d91584cfc1fa454f47b3391ab2e", size = 360811, upload-time = "2026-07-14T01:37:22.164Z" }
687
687
  wheels = [
688
- { url = "https://files.pythonhosted.org/packages/62/18/126ebfdf5e6b21a25344b6762112680c6ba7b43400bfa5471f0f0a1c12f5/imbi_common-2.12.1-py3-none-any.whl", hash = "sha256:785f11ecd5e5892579fd62f0060831111fef82fa337e070aca4dee362b9d71cd", size = 120610, upload-time = "2026-07-13T16:39:14.424Z" },
688
+ { url = "https://files.pythonhosted.org/packages/27/86/25e65b351c5d485e2079baaf0bf338e8faa87669358b4d0bcf0ee7d95f1d/imbi_common-2.13.0-py3-none-any.whl", hash = "sha256:c1d8e1af8ae2709fa7b136f6a35464d79561eb4e5c4bf19d05a32d3abc49dec3", size = 120609, upload-time = "2026-07-14T01:37:20.588Z" },
689
689
  ]
690
690
 
691
691
  [package.optional-dependencies]
@@ -703,7 +703,7 @@ server = [
703
703
 
704
704
  [[package]]
705
705
  name = "imbi-plugin-github"
706
- version = "2.12.1"
706
+ version = "2.13.0"
707
707
  source = { editable = "." }
708
708
  dependencies = [
709
709
  { name = "httpx" },
@@ -732,7 +732,7 @@ dist = [
732
732
  [package.metadata]
733
733
  requires-dist = [
734
734
  { name = "httpx", specifier = ">=0.27" },
735
- { name = "imbi-common", extras = ["databases"], specifier = "==2.12.1" },
735
+ { name = "imbi-common", extras = ["databases"], specifier = "==2.13.0" },
736
736
  { name = "pydantic", specifier = ">=2" },
737
737
  { name = "pyjwt", extras = ["crypto"], specifier = ">=2.8" },
738
738
  ]
@@ -741,7 +741,7 @@ requires-dist = [
741
741
  dev = [
742
742
  { name = "basedpyright" },
743
743
  { name = "coverage", extras = ["toml"] },
744
- { name = "imbi-common", extras = ["server", "databases"], specifier = "==2.12.1" },
744
+ { name = "imbi-common", extras = ["server", "databases"], specifier = "==2.13.0" },
745
745
  { name = "pre-commit" },
746
746
  { name = "pytest" },
747
747
  { name = "pytest-asyncio" },