tigrbl-ops-oltp 0.4.4.dev1__tar.gz → 0.4.4.dev7__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 (18) hide show
  1. {tigrbl_ops_oltp-0.4.4.dev1 → tigrbl_ops_oltp-0.4.4.dev7}/PKG-INFO +2 -3
  2. {tigrbl_ops_oltp-0.4.4.dev1 → tigrbl_ops_oltp-0.4.4.dev7}/README.md +1 -2
  3. {tigrbl_ops_oltp-0.4.4.dev1 → tigrbl_ops_oltp-0.4.4.dev7}/pyproject.toml +1 -1
  4. {tigrbl_ops_oltp-0.4.4.dev1 → tigrbl_ops_oltp-0.4.4.dev7}/tigrbl_ops_oltp/__init__.py +0 -5
  5. tigrbl_ops_oltp-0.4.4.dev1/tigrbl_ops_oltp/fallback.py +0 -12
  6. tigrbl_ops_oltp-0.4.4.dev1/tigrbl_ops_oltp/rust_handlers.py +0 -15
  7. {tigrbl_ops_oltp-0.4.4.dev1 → tigrbl_ops_oltp-0.4.4.dev7}/LICENSE +0 -0
  8. {tigrbl_ops_oltp-0.4.4.dev1 → tigrbl_ops_oltp-0.4.4.dev7}/NOTICE +0 -0
  9. {tigrbl_ops_oltp-0.4.4.dev1 → tigrbl_ops_oltp-0.4.4.dev7}/tigrbl_ops_oltp/crud/__init__.py +0 -0
  10. {tigrbl_ops_oltp-0.4.4.dev1 → tigrbl_ops_oltp-0.4.4.dev7}/tigrbl_ops_oltp/crud/bulk.py +0 -0
  11. {tigrbl_ops_oltp-0.4.4.dev1 → tigrbl_ops_oltp-0.4.4.dev7}/tigrbl_ops_oltp/crud/helpers/__init__.py +0 -0
  12. {tigrbl_ops_oltp-0.4.4.dev1 → tigrbl_ops_oltp-0.4.4.dev7}/tigrbl_ops_oltp/crud/helpers/db.py +0 -0
  13. {tigrbl_ops_oltp-0.4.4.dev1 → tigrbl_ops_oltp-0.4.4.dev7}/tigrbl_ops_oltp/crud/helpers/enum.py +0 -0
  14. {tigrbl_ops_oltp-0.4.4.dev1 → tigrbl_ops_oltp-0.4.4.dev7}/tigrbl_ops_oltp/crud/helpers/filters.py +0 -0
  15. {tigrbl_ops_oltp-0.4.4.dev1 → tigrbl_ops_oltp-0.4.4.dev7}/tigrbl_ops_oltp/crud/helpers/model.py +0 -0
  16. {tigrbl_ops_oltp-0.4.4.dev1 → tigrbl_ops_oltp-0.4.4.dev7}/tigrbl_ops_oltp/crud/helpers/normalize.py +0 -0
  17. {tigrbl_ops_oltp-0.4.4.dev1 → tigrbl_ops_oltp-0.4.4.dev7}/tigrbl_ops_oltp/crud/ops.py +0 -0
  18. {tigrbl_ops_oltp-0.4.4.dev1 → tigrbl_ops_oltp-0.4.4.dev7}/tigrbl_ops_oltp/crud/params.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tigrbl-ops-oltp
3
- Version: 0.4.4.dev1
3
+ Version: 0.4.4.dev7
4
4
  Summary: Transactional OLTP operation handlers for Tigrbl CRUD, bulk, REST, JSON-RPC, and database-backed workloads.
5
5
  License: Apache License
6
6
  Version 2.0, January 2004
@@ -308,8 +308,7 @@ pip install tigrbl-ops-oltp
308
308
  `tigrbl-ops-oltp` owns the `operation-family package` boundary. It should be installed when you need this package's focused responsibility without assuming every other Tigrbl workspace package is present.
309
309
 
310
310
  Implementation orientation:
311
- - `tigrbl_ops_oltp`: crud/, fallback
312
- - `tigrbl_ops_oltp.rust_handlers` is a deprecated compatibility shim; handlers are Python-only.
311
+ - `tigrbl_ops_oltp`: crud/
313
312
 
314
313
  ## Public API and Import Surface
315
314
 
@@ -71,8 +71,7 @@ pip install tigrbl-ops-oltp
71
71
  `tigrbl-ops-oltp` owns the `operation-family package` boundary. It should be installed when you need this package's focused responsibility without assuming every other Tigrbl workspace package is present.
72
72
 
73
73
  Implementation orientation:
74
- - `tigrbl_ops_oltp`: crud/, fallback
75
- - `tigrbl_ops_oltp.rust_handlers` is a deprecated compatibility shim; handlers are Python-only.
74
+ - `tigrbl_ops_oltp`: crud/
76
75
 
77
76
  ## Public API and Import Surface
78
77
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "tigrbl-ops-oltp"
3
- version = "0.4.4.dev1"
3
+ version = "0.4.4.dev7"
4
4
  description = "Transactional OLTP operation handlers for Tigrbl CRUD, bulk, REST, JSON-RPC, and database-backed workloads."
5
5
  readme = "README.md"
6
6
  license = { file = "LICENSE" }
@@ -5,9 +5,6 @@ from __future__ import annotations
5
5
  from importlib import import_module
6
6
  from typing import Any
7
7
 
8
- from .fallback import rust_handlers_enabled
9
- from .rust_handlers import register_rust_handler
10
-
11
8
  _LAZY_EXPORTS = {
12
9
  "Body": "crud",
13
10
  "Header": "crud",
@@ -49,9 +46,7 @@ __all__ = [
49
46
  "exists",
50
47
  "list",
51
48
  "merge",
52
- "rust_handlers_enabled",
53
49
  "read",
54
- "register_rust_handler",
55
50
  "replace",
56
51
  "update",
57
52
  ]
@@ -1,12 +0,0 @@
1
- from __future__ import annotations
2
-
3
- import warnings
4
-
5
-
6
- def rust_handlers_enabled() -> bool:
7
- warnings.warn(
8
- "tigrbl_ops_oltp Rust handler registration is deprecated; handlers are Python-only.",
9
- DeprecationWarning,
10
- stacklevel=2,
11
- )
12
- return False
@@ -1,15 +0,0 @@
1
- from __future__ import annotations
2
-
3
- from collections.abc import Callable
4
- from typing import Any
5
- import warnings
6
-
7
-
8
- def register_rust_handler(name: str, callback: Callable[..., Any]) -> str:
9
- del callback
10
- warnings.warn(
11
- "tigrbl_ops_oltp Rust handler registration is deprecated; handlers are Python-only.",
12
- DeprecationWarning,
13
- stacklevel=2,
14
- )
15
- raise RuntimeError(f"register_rust_handler({name!r}) is unavailable.")