keyrunes-python-sdk 0.3.0__tar.gz → 0.3.1__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.
- {keyrunes_python_sdk-0.3.0 → keyrunes_python_sdk-0.3.1}/CHANGELOG.md +12 -0
- {keyrunes_python_sdk-0.3.0 → keyrunes_python_sdk-0.3.1}/PKG-INFO +1 -2
- {keyrunes_python_sdk-0.3.0 → keyrunes_python_sdk-0.3.1}/keyrunes_sdk/__init__.py +1 -1
- {keyrunes_python_sdk-0.3.0 → keyrunes_python_sdk-0.3.1}/pyproject.toml +2 -2
- {keyrunes_python_sdk-0.3.0 → keyrunes_python_sdk-0.3.1}/LICENSE +0 -0
- {keyrunes_python_sdk-0.3.0 → keyrunes_python_sdk-0.3.1}/README.md +0 -0
- {keyrunes_python_sdk-0.3.0 → keyrunes_python_sdk-0.3.1}/keyrunes_sdk/client.py +0 -0
- {keyrunes_python_sdk-0.3.0 → keyrunes_python_sdk-0.3.1}/keyrunes_sdk/config.py +0 -0
- {keyrunes_python_sdk-0.3.0 → keyrunes_python_sdk-0.3.1}/keyrunes_sdk/decorators.py +0 -0
- {keyrunes_python_sdk-0.3.0 → keyrunes_python_sdk-0.3.1}/keyrunes_sdk/exceptions.py +0 -0
- {keyrunes_python_sdk-0.3.0 → keyrunes_python_sdk-0.3.1}/keyrunes_sdk/models.py +0 -0
- {keyrunes_python_sdk-0.3.0 → keyrunes_python_sdk-0.3.1}/keyrunes_sdk/py.typed +0 -0
|
@@ -5,6 +5,18 @@ Todas as mudanças notáveis neste projeto serão documentadas neste arquivo.
|
|
|
5
5
|
O formato é baseado em [Keep a Changelog](https://keepachangelog.com/pt-BR/1.0.0/),
|
|
6
6
|
e este projeto adere ao [Semantic Versioning](https://semver.org/lang/pt-BR/).
|
|
7
7
|
|
|
8
|
+
## [0.3.1] - 2026-09-04
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- `mutmut` is no longer a runtime dependency. It was declared in
|
|
13
|
+
`[tool.poetry.dependencies]` instead of the dev group, so installing this SDK
|
|
14
|
+
pulled a mutation-testing tool and its whole tree — `libcst`, `textual`,
|
|
15
|
+
`rich`, `setproctitle`, `pyyaml-ft`, `markdown-it-py`, `mdit-py-plugins`,
|
|
16
|
+
`mdurl`, `linkify-it-py`, `sortedcontainers` — into every consumer, including
|
|
17
|
+
production images. Affected 0.2.0 and 0.3.0; nothing in the library imported
|
|
18
|
+
it, so upgrading only removes packages.
|
|
19
|
+
|
|
8
20
|
## [0.3.0] - 2026-09-03
|
|
9
21
|
|
|
10
22
|
### Added
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: keyrunes-python-sdk
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: Python SDK for Keyrunes Authorization System
|
|
5
5
|
License: AGPL
|
|
6
6
|
License-File: LICENSE
|
|
@@ -24,7 +24,6 @@ Classifier: Topic :: Security
|
|
|
24
24
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
25
25
|
Classifier: Topic :: System :: Systems Administration :: Authentication/Directory
|
|
26
26
|
Requires-Dist: httpx (>=0.28.1,<0.29.0)
|
|
27
|
-
Requires-Dist: mutmut (>=3.7.0,<4.0.0)
|
|
28
27
|
Requires-Dist: pydantic[email] (>=2.0.0,<3.0.0)
|
|
29
28
|
Requires-Dist: pyjwt (>=2.9.0,<3.0.0)
|
|
30
29
|
Project-URL: Documentation, https://github.com/jonatasoli/keyrunes-python-sdk#readme
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "keyrunes-python-sdk"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.1"
|
|
4
4
|
description = "Python SDK for Keyrunes Authorization System"
|
|
5
5
|
authors = ["keyrunes <contact@singularjourney.host>"]
|
|
6
6
|
maintainers = ["jonatasoli <contact@jonatasoli.dev>"]
|
|
@@ -35,7 +35,6 @@ python = ">=3.10.1,<4.0"
|
|
|
35
35
|
pydantic = {extras = ["email"], version = "^2.0.0"}
|
|
36
36
|
pyjwt = "^2.9.0"
|
|
37
37
|
httpx = "^0.28.1"
|
|
38
|
-
mutmut = "^3.7.0"
|
|
39
38
|
|
|
40
39
|
[tool.poetry.group.dev.dependencies]
|
|
41
40
|
pytest = "^7.4.0"
|
|
@@ -52,6 +51,7 @@ towncrier = "^25.8.0"
|
|
|
52
51
|
pre-commit = "^4.5.1"
|
|
53
52
|
safety = "^3.7.0"
|
|
54
53
|
hypothesis = "^6.0"
|
|
54
|
+
mutmut = "^3.7.0"
|
|
55
55
|
|
|
56
56
|
[build-system]
|
|
57
57
|
requires = ["poetry-core>=1.0.0"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|