plain.api 0.26.2__tar.gz → 0.26.3__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.
- {plain_api-0.26.2 → plain_api-0.26.3}/PKG-INFO +1 -1
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/CHANGELOG.md +10 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/pyproject.toml +4 -8
- {plain_api-0.26.2 → plain_api-0.26.3}/.gitignore +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/LICENSE +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/README.md +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/README.md +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/__init__.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/admin.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/cli.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/config.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/default_settings.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/migrations/0001_initial.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/migrations/__init__.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/models.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/openapi/__init__.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/openapi/decorators.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/openapi/generator.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/openapi/utils.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/schemas.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/versioning.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/plain/api/views.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/tests/app/settings.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/tests/app/urls.py +0 -0
- {plain_api-0.26.2 → plain_api-0.26.3}/tests/test_api.py +0 -0
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# plain-api changelog
|
|
2
2
|
|
|
3
|
+
## [0.26.3](https://github.com/dropseed/plain/releases/plain-api@0.26.3) (2026-02-26)
|
|
4
|
+
|
|
5
|
+
### What's changed
|
|
6
|
+
|
|
7
|
+
- Auto-formatted config files with updated linter configuration ([028bb95c3ae3](https://github.com/dropseed/plain/commit/028bb95c3ae3))
|
|
8
|
+
|
|
9
|
+
### Upgrade instructions
|
|
10
|
+
|
|
11
|
+
- No changes required.
|
|
12
|
+
|
|
3
13
|
## [0.26.2](https://github.com/dropseed/plain/releases/plain-api@0.26.2) (2026-02-04)
|
|
4
14
|
|
|
5
15
|
### What's changed
|
|
@@ -1,19 +1,15 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "plain.api"
|
|
3
|
-
version = "0.26.
|
|
3
|
+
version = "0.26.3"
|
|
4
4
|
description = "Build APIs using class-based views."
|
|
5
|
-
authors = [{name = "Dave Gaeddert", email = "dave.gaeddert@dropseed.dev"}]
|
|
5
|
+
authors = [{ name = "Dave Gaeddert", email = "dave.gaeddert@dropseed.dev" }]
|
|
6
6
|
readme = "README.md"
|
|
7
7
|
license = "BSD-3-Clause"
|
|
8
8
|
requires-python = ">=3.13"
|
|
9
|
-
dependencies = [
|
|
10
|
-
"plain<1.0.0",
|
|
11
|
-
]
|
|
9
|
+
dependencies = ["plain<1.0.0"]
|
|
12
10
|
|
|
13
11
|
[dependency-groups]
|
|
14
|
-
dev = [
|
|
15
|
-
"plain.pytest<1.0.0",
|
|
16
|
-
]
|
|
12
|
+
dev = ["plain.pytest<1.0.0"]
|
|
17
13
|
|
|
18
14
|
[tool.hatch.build.targets.wheel]
|
|
19
15
|
packages = ["plain"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|