firm-stack 0.1.0__tar.gz → 1.1.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.
- firm_stack-1.1.0/CHANGELOG.md +42 -0
- {firm_stack-0.1.0 → firm_stack-1.1.0}/PKG-INFO +19 -18
- {firm_stack-0.1.0 → firm_stack-1.1.0}/pyproject.toml +19 -18
- {firm_stack-0.1.0 → firm_stack-1.1.0}/.gitignore +0 -0
- {firm_stack-0.1.0 → firm_stack-1.1.0}/LICENSE +0 -0
- {firm_stack-0.1.0 → firm_stack-1.1.0}/NOTICE +0 -0
- {firm_stack-0.1.0 → firm_stack-1.1.0}/README.md +0 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Changelog — firm-stack
|
|
2
|
+
|
|
3
|
+
All notable changes to `firm-stack` are documented here.
|
|
4
|
+
Format: [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); this project adheres to
|
|
5
|
+
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [1.1.0] - 2026-07-28
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- `firm-stack[cache]`, `[encryption]`, `[msgpack]` and `[all]` now require **`firm-cache~=1.1`**,
|
|
14
|
+
so they deliver the `MsgpackCoder` that `firm-stack[msgpack]` advertises. Raising the floor is
|
|
15
|
+
what makes `pip install -U firm-stack` actually move an installed `firm-cache` along: pip
|
|
16
|
+
upgrades a dependency only when the new release requires it.
|
|
17
|
+
- Every other pin is widened from `~=1.0.0` to `~=1.0`. The old form (`==1.0.*`) made this package
|
|
18
|
+
and a module's next minor uninstallable together — a resolver conflict rather than a missed
|
|
19
|
+
upgrade. See `docs/testing-and-contributing.md` § Cross-package pins.
|
|
20
|
+
|
|
21
|
+
## [1.0.0] - 2026-07-23
|
|
22
|
+
|
|
23
|
+
First stable release: the PyPI classifier moves to **Production/Stable** and the
|
|
24
|
+
inter-package pins to `~=1.0.0`.
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- Extras now pin the firm modules at `~=1.0.0` for the coordinated 1.0 release. No functional
|
|
29
|
+
changes to the meta-package itself.
|
|
30
|
+
|
|
31
|
+
## [0.1.0] - 2026-07-07
|
|
32
|
+
|
|
33
|
+
### Added
|
|
34
|
+
|
|
35
|
+
- Initial release: interim meta-package that installs the firm modules you pick via extras —
|
|
36
|
+
`firm-stack[queue]`, `[cache]`, `[channel]`, `[audit]`, `[ui]`, or `[all]`. Stands in for the
|
|
37
|
+
`firm` meta-package while its PyPI name transfer is pending, and stays as a compatible alias
|
|
38
|
+
afterwards.
|
|
39
|
+
|
|
40
|
+
[Unreleased]: https://github.com/h11t-labs/firm/compare/firm-stack-v1.0.0...HEAD
|
|
41
|
+
[1.0.0]: https://github.com/h11t-labs/firm/compare/firm-stack-v0.1.0...firm-stack-v1.0.0
|
|
42
|
+
[0.1.0]: https://github.com/h11t-labs/firm/releases/tag/firm-stack-v0.1.0
|
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: firm-stack
|
|
3
|
-
Version:
|
|
3
|
+
Version: 1.1.0
|
|
4
4
|
Summary: Pure-Python ports of the Rails Solid stack: database-backed background jobs (queue), caching (cache), pub/sub (channel), and an append-only audit log. No Redis required. This is a meta-package: pick modules via extras — firm-stack[queue], firm-stack[cache], firm-stack[channel], firm-stack[audit], or firm-stack[all].
|
|
5
5
|
Project-URL: Homepage, https://github.com/h11t-labs/firm
|
|
6
|
-
Project-URL: Documentation, https://
|
|
6
|
+
Project-URL: Documentation, https://h11t-labs.github.io/firm/
|
|
7
7
|
Project-URL: Repository, https://github.com/h11t-labs/firm
|
|
8
8
|
Project-URL: Issues, https://github.com/h11t-labs/firm/issues
|
|
9
|
+
Project-URL: Changelog, https://github.com/h11t-labs/firm/blob/main/packages/firm-stack/CHANGELOG.md
|
|
9
10
|
Author: firm contributors
|
|
10
11
|
License-Expression: MIT
|
|
11
12
|
License-File: LICENSE
|
|
12
13
|
License-File: NOTICE
|
|
13
14
|
Keywords: audit,background,cache,channel,jobs,mysql,postgresql,queue,solid_cable,solid_cache,solid_queue,sqlite,tasks
|
|
14
|
-
Classifier: Development Status ::
|
|
15
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
15
16
|
Classifier: Intended Audience :: Developers
|
|
16
17
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
17
18
|
Classifier: Topic :: Database
|
|
@@ -19,32 +20,32 @@ Classifier: Topic :: System :: Distributed Computing
|
|
|
19
20
|
Classifier: Typing :: Typed
|
|
20
21
|
Requires-Python: >=3.11
|
|
21
22
|
Provides-Extra: all
|
|
22
|
-
Requires-Dist: firm-cache[encryption,msgpack]~=
|
|
23
|
-
Requires-Dist: firm-core[mysql,postgres]~=
|
|
24
|
-
Requires-Dist: firm-queue[fastapi,flask]~=
|
|
25
|
-
Requires-Dist: firm-ui~=
|
|
23
|
+
Requires-Dist: firm-cache[encryption,msgpack]~=1.1; extra == 'all'
|
|
24
|
+
Requires-Dist: firm-core[mysql,postgres]~=1.0; extra == 'all'
|
|
25
|
+
Requires-Dist: firm-queue[fastapi,flask]~=1.0; extra == 'all'
|
|
26
|
+
Requires-Dist: firm-ui~=1.0; extra == 'all'
|
|
26
27
|
Provides-Extra: audit
|
|
27
|
-
Requires-Dist: firm-audit~=
|
|
28
|
+
Requires-Dist: firm-audit~=1.0; extra == 'audit'
|
|
28
29
|
Provides-Extra: cache
|
|
29
|
-
Requires-Dist: firm-cache~=
|
|
30
|
+
Requires-Dist: firm-cache~=1.1; extra == 'cache'
|
|
30
31
|
Provides-Extra: channel
|
|
31
|
-
Requires-Dist: firm-channel~=
|
|
32
|
+
Requires-Dist: firm-channel~=1.0; extra == 'channel'
|
|
32
33
|
Provides-Extra: encryption
|
|
33
|
-
Requires-Dist: firm-cache[encryption]~=
|
|
34
|
+
Requires-Dist: firm-cache[encryption]~=1.1; extra == 'encryption'
|
|
34
35
|
Provides-Extra: fastapi
|
|
35
|
-
Requires-Dist: firm-queue[fastapi]~=
|
|
36
|
+
Requires-Dist: firm-queue[fastapi]~=1.0; extra == 'fastapi'
|
|
36
37
|
Provides-Extra: flask
|
|
37
|
-
Requires-Dist: firm-queue[flask]~=
|
|
38
|
+
Requires-Dist: firm-queue[flask]~=1.0; extra == 'flask'
|
|
38
39
|
Provides-Extra: msgpack
|
|
39
|
-
Requires-Dist: firm-cache[msgpack]~=
|
|
40
|
+
Requires-Dist: firm-cache[msgpack]~=1.1; extra == 'msgpack'
|
|
40
41
|
Provides-Extra: mysql
|
|
41
|
-
Requires-Dist: firm-core[mysql]~=
|
|
42
|
+
Requires-Dist: firm-core[mysql]~=1.0; extra == 'mysql'
|
|
42
43
|
Provides-Extra: postgres
|
|
43
|
-
Requires-Dist: firm-core[postgres]~=
|
|
44
|
+
Requires-Dist: firm-core[postgres]~=1.0; extra == 'postgres'
|
|
44
45
|
Provides-Extra: queue
|
|
45
|
-
Requires-Dist: firm-queue~=
|
|
46
|
+
Requires-Dist: firm-queue~=1.0; extra == 'queue'
|
|
46
47
|
Provides-Extra: ui
|
|
47
|
-
Requires-Dist: firm-ui~=
|
|
48
|
+
Requires-Dist: firm-ui~=1.0; extra == 'ui'
|
|
48
49
|
Description-Content-Type: text/markdown
|
|
49
50
|
|
|
50
51
|
# firm-stack
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "firm-stack"
|
|
3
|
-
version = "
|
|
3
|
+
version = "1.1.0"
|
|
4
4
|
description = "Pure-Python ports of the Rails Solid stack: database-backed background jobs (queue), caching (cache), pub/sub (channel), and an append-only audit log. No Redis required. This is a meta-package: pick modules via extras — firm-stack[queue], firm-stack[cache], firm-stack[channel], firm-stack[audit], or firm-stack[all]."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.11"
|
|
@@ -12,7 +12,7 @@ keywords = [
|
|
|
12
12
|
"sqlite", "postgresql", "mysql", "solid_queue", "solid_cache", "solid_cable",
|
|
13
13
|
]
|
|
14
14
|
classifiers = [
|
|
15
|
-
"Development Status ::
|
|
15
|
+
"Development Status :: 5 - Production/Stable",
|
|
16
16
|
"Intended Audience :: Developers",
|
|
17
17
|
"Programming Language :: Python :: 3 :: Only",
|
|
18
18
|
"Topic :: Database",
|
|
@@ -29,29 +29,30 @@ classifiers = [
|
|
|
29
29
|
dependencies = []
|
|
30
30
|
|
|
31
31
|
[project.optional-dependencies]
|
|
32
|
-
queue = ["firm-queue~=
|
|
33
|
-
cache = ["firm-cache~=
|
|
34
|
-
channel = ["firm-channel~=
|
|
35
|
-
audit = ["firm-audit~=
|
|
36
|
-
ui = ["firm-ui~=
|
|
37
|
-
flask = ["firm-queue[flask]~=
|
|
38
|
-
fastapi = ["firm-queue[fastapi]~=
|
|
39
|
-
postgres = ["firm-core[postgres]~=
|
|
40
|
-
mysql = ["firm-core[mysql]~=
|
|
41
|
-
encryption = ["firm-cache[encryption]~=
|
|
42
|
-
msgpack = ["firm-cache[msgpack]~=
|
|
32
|
+
queue = ["firm-queue~=1.0"] # background jobs
|
|
33
|
+
cache = ["firm-cache~=1.1"] # cache store
|
|
34
|
+
channel = ["firm-channel~=1.0"] # pub/sub
|
|
35
|
+
audit = ["firm-audit~=1.0"] # append-only audit log
|
|
36
|
+
ui = ["firm-ui~=1.0"] # web dashboard (pulls all four modules)
|
|
37
|
+
flask = ["firm-queue[flask]~=1.0"] # Flask integration (contrib)
|
|
38
|
+
fastapi = ["firm-queue[fastapi]~=1.0"] # FastAPI integration (contrib)
|
|
39
|
+
postgres = ["firm-core[postgres]~=1.0"] # PostgreSQL driver
|
|
40
|
+
mysql = ["firm-core[mysql]~=1.0"] # MySQL / MariaDB driver
|
|
41
|
+
encryption = ["firm-cache[encryption]~=1.1"] # cache at-rest encryption
|
|
42
|
+
msgpack = ["firm-cache[msgpack]~=1.1"] # cache msgpack coder
|
|
43
43
|
all = [
|
|
44
|
-
"firm-ui~=
|
|
45
|
-
"firm-queue[flask,fastapi]~=
|
|
46
|
-
"firm-core[postgres,mysql]~=
|
|
47
|
-
"firm-cache[encryption,msgpack]~=
|
|
44
|
+
"firm-ui~=1.0",
|
|
45
|
+
"firm-queue[flask,fastapi]~=1.0",
|
|
46
|
+
"firm-core[postgres,mysql]~=1.0",
|
|
47
|
+
"firm-cache[encryption,msgpack]~=1.1",
|
|
48
48
|
]
|
|
49
49
|
|
|
50
50
|
[project.urls]
|
|
51
51
|
Homepage = "https://github.com/h11t-labs/firm"
|
|
52
|
-
Documentation = "https://
|
|
52
|
+
Documentation = "https://h11t-labs.github.io/firm/"
|
|
53
53
|
Repository = "https://github.com/h11t-labs/firm"
|
|
54
54
|
Issues = "https://github.com/h11t-labs/firm/issues"
|
|
55
|
+
Changelog = "https://github.com/h11t-labs/firm/blob/main/packages/firm-stack/CHANGELOG.md"
|
|
55
56
|
|
|
56
57
|
# Metadata-only distribution (no importable module of its own — `import firm` is provided by
|
|
57
58
|
# the namespace sub-packages). hatchling builds a module-less wheel cleanly.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|