firm-stack 0.1.0__tar.gz → 1.0.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.
@@ -0,0 +1,30 @@
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.0.0] - 2026-07-23
10
+
11
+ First stable release: the PyPI classifier moves to **Production/Stable** and the
12
+ inter-package pins to `~=1.0.0`.
13
+
14
+ ### Changed
15
+
16
+ - Extras now pin the firm modules at `~=1.0.0` for the coordinated 1.0 release. No functional
17
+ changes to the meta-package itself.
18
+
19
+ ## [0.1.0] - 2026-07-07
20
+
21
+ ### Added
22
+
23
+ - Initial release: interim meta-package that installs the firm modules you pick via extras —
24
+ `firm-stack[queue]`, `[cache]`, `[channel]`, `[audit]`, `[ui]`, or `[all]`. Stands in for the
25
+ `firm` meta-package while its PyPI name transfer is pending, and stays as a compatible alias
26
+ afterwards.
27
+
28
+ [Unreleased]: https://github.com/h11t-labs/firm/compare/firm-stack-v1.0.0...HEAD
29
+ [1.0.0]: https://github.com/h11t-labs/firm/compare/firm-stack-v0.1.0...firm-stack-v1.0.0
30
+ [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: 0.1.0
3
+ Version: 1.0.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://github.com/h11t-labs/firm/tree/main/docs
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 :: 4 - Beta
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]~=0.1.0; extra == 'all'
23
- Requires-Dist: firm-core[mysql,postgres]~=0.1.0; extra == 'all'
24
- Requires-Dist: firm-queue[fastapi,flask]~=0.1.0; extra == 'all'
25
- Requires-Dist: firm-ui~=0.1.0; extra == 'all'
23
+ Requires-Dist: firm-cache[encryption,msgpack]~=1.0.0; extra == 'all'
24
+ Requires-Dist: firm-core[mysql,postgres]~=1.0.0; extra == 'all'
25
+ Requires-Dist: firm-queue[fastapi,flask]~=1.0.0; extra == 'all'
26
+ Requires-Dist: firm-ui~=1.0.0; extra == 'all'
26
27
  Provides-Extra: audit
27
- Requires-Dist: firm-audit~=0.1.0; extra == 'audit'
28
+ Requires-Dist: firm-audit~=1.0.0; extra == 'audit'
28
29
  Provides-Extra: cache
29
- Requires-Dist: firm-cache~=0.1.0; extra == 'cache'
30
+ Requires-Dist: firm-cache~=1.0.0; extra == 'cache'
30
31
  Provides-Extra: channel
31
- Requires-Dist: firm-channel~=0.1.0; extra == 'channel'
32
+ Requires-Dist: firm-channel~=1.0.0; extra == 'channel'
32
33
  Provides-Extra: encryption
33
- Requires-Dist: firm-cache[encryption]~=0.1.0; extra == 'encryption'
34
+ Requires-Dist: firm-cache[encryption]~=1.0.0; extra == 'encryption'
34
35
  Provides-Extra: fastapi
35
- Requires-Dist: firm-queue[fastapi]~=0.1.0; extra == 'fastapi'
36
+ Requires-Dist: firm-queue[fastapi]~=1.0.0; extra == 'fastapi'
36
37
  Provides-Extra: flask
37
- Requires-Dist: firm-queue[flask]~=0.1.0; extra == 'flask'
38
+ Requires-Dist: firm-queue[flask]~=1.0.0; extra == 'flask'
38
39
  Provides-Extra: msgpack
39
- Requires-Dist: firm-cache[msgpack]~=0.1.0; extra == 'msgpack'
40
+ Requires-Dist: firm-cache[msgpack]~=1.0.0; extra == 'msgpack'
40
41
  Provides-Extra: mysql
41
- Requires-Dist: firm-core[mysql]~=0.1.0; extra == 'mysql'
42
+ Requires-Dist: firm-core[mysql]~=1.0.0; extra == 'mysql'
42
43
  Provides-Extra: postgres
43
- Requires-Dist: firm-core[postgres]~=0.1.0; extra == 'postgres'
44
+ Requires-Dist: firm-core[postgres]~=1.0.0; extra == 'postgres'
44
45
  Provides-Extra: queue
45
- Requires-Dist: firm-queue~=0.1.0; extra == 'queue'
46
+ Requires-Dist: firm-queue~=1.0.0; extra == 'queue'
46
47
  Provides-Extra: ui
47
- Requires-Dist: firm-ui~=0.1.0; extra == 'ui'
48
+ Requires-Dist: firm-ui~=1.0.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 = "0.1.0"
3
+ version = "1.0.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 :: 4 - Beta",
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~=0.1.0"] # background jobs
33
- cache = ["firm-cache~=0.1.0"] # cache store
34
- channel = ["firm-channel~=0.1.0"] # pub/sub
35
- audit = ["firm-audit~=0.1.0"] # append-only audit log
36
- ui = ["firm-ui~=0.1.0"] # web dashboard (pulls all four modules)
37
- flask = ["firm-queue[flask]~=0.1.0"] # Flask integration (contrib)
38
- fastapi = ["firm-queue[fastapi]~=0.1.0"] # FastAPI integration (contrib)
39
- postgres = ["firm-core[postgres]~=0.1.0"] # PostgreSQL driver
40
- mysql = ["firm-core[mysql]~=0.1.0"] # MySQL / MariaDB driver
41
- encryption = ["firm-cache[encryption]~=0.1.0"] # cache at-rest encryption
42
- msgpack = ["firm-cache[msgpack]~=0.1.0"] # cache msgpack coder
32
+ queue = ["firm-queue~=1.0.0"] # background jobs
33
+ cache = ["firm-cache~=1.0.0"] # cache store
34
+ channel = ["firm-channel~=1.0.0"] # pub/sub
35
+ audit = ["firm-audit~=1.0.0"] # append-only audit log
36
+ ui = ["firm-ui~=1.0.0"] # web dashboard (pulls all four modules)
37
+ flask = ["firm-queue[flask]~=1.0.0"] # Flask integration (contrib)
38
+ fastapi = ["firm-queue[fastapi]~=1.0.0"] # FastAPI integration (contrib)
39
+ postgres = ["firm-core[postgres]~=1.0.0"] # PostgreSQL driver
40
+ mysql = ["firm-core[mysql]~=1.0.0"] # MySQL / MariaDB driver
41
+ encryption = ["firm-cache[encryption]~=1.0.0"] # cache at-rest encryption
42
+ msgpack = ["firm-cache[msgpack]~=1.0.0"] # cache msgpack coder
43
43
  all = [
44
- "firm-ui~=0.1.0",
45
- "firm-queue[flask,fastapi]~=0.1.0",
46
- "firm-core[postgres,mysql]~=0.1.0",
47
- "firm-cache[encryption,msgpack]~=0.1.0",
44
+ "firm-ui~=1.0.0",
45
+ "firm-queue[flask,fastapi]~=1.0.0",
46
+ "firm-core[postgres,mysql]~=1.0.0",
47
+ "firm-cache[encryption,msgpack]~=1.0.0",
48
48
  ]
49
49
 
50
50
  [project.urls]
51
51
  Homepage = "https://github.com/h11t-labs/firm"
52
- Documentation = "https://github.com/h11t-labs/firm/tree/main/docs"
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