tigrbl-canon 0.4.2.dev4__tar.gz → 0.4.3.dev4__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.
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/PKG-INFO +14 -14
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/README.md +11 -12
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/pyproject.toml +6 -4
- tigrbl_canon-0.4.3.dev4/tigrbl_canon/__init__.py +24 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/column/infer/__init__.py +4 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/column/infer/core.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/column/infer/jsonhints.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/column/infer/planning.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/column/infer/types.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/column/infer/utils.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/__init__.py +4 -4
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/app_mro_collect.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/apply.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/collect.py +6 -1
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/collect_decorated_schemas.py +6 -1
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/column_mro_collect.py +4 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/columns.py +4 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/config_resolver.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/context.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/core_resolver.py +7 -2
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/defaults.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/diagnostics.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/engine_resolver.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/handlers/__init__.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/handlers/builder.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/handlers/ctx.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/handlers/identifiers.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/handlers/namespaces.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/handlers/steps.py +6 -1
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/hook_mro_collect.py +8 -3
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/hooks.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/mapping_resolver.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/model.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/model_helpers.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/model_registry.py +6 -1
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/op_mro_collect.py +7 -2
- tigrbl_canon-0.4.3.dev4/tigrbl_canon/mapping/op_resolver.py +7 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/passes.py +6 -1
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/plan.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/precedence.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/responses_resolver.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/rest/__init__.py +4 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/rest/attach.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/rest/collection.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/rest/common.py +7 -2
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/rest/helpers.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/rest/io.py +7 -2
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/rest/io_headers.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/rest/member.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/rest/router.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/rest/routing.py +6 -1
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/router/common.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/router/include.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/router/resource_proxy.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/router/rpc.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/router_mro_collect.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/rpc.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/schemas/__init__.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/schemas/builder.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/schemas/defaults.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/schemas/utils.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/table.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/table_mro_collect.py +5 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/traversal.py +5 -0
- tigrbl_canon-0.4.2.dev4/tigrbl_canon/__init__.py +0 -14
- tigrbl_canon-0.4.2.dev4/tigrbl_canon/mapping/op_resolver.py +0 -3
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/LICENSE +0 -0
- {tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/NOTICE +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tigrbl-canon
|
|
3
|
-
Version: 0.4.
|
|
4
|
-
Summary: Deprecated compatibility package for Tigrbl canonical mapping, router binding, schema attachment, RPC and REST exposure, and column inference utilities.
|
|
3
|
+
Version: 0.4.3.dev4
|
|
4
|
+
Summary: Deprecated legacy compatibility package for Tigrbl canonical mapping, router binding, schema attachment, RPC and REST exposure, and column inference utilities.
|
|
5
5
|
License: Apache License
|
|
6
6
|
Version 2.0, January 2004
|
|
7
7
|
http://www.apache.org/licenses/
|
|
@@ -233,6 +233,7 @@ Classifier: Typing :: Typed
|
|
|
233
233
|
Requires-Dist: tigrbl
|
|
234
234
|
Requires-Dist: tigrbl-atoms
|
|
235
235
|
Requires-Dist: tigrbl-base
|
|
236
|
+
Requires-Dist: tigrbl-concrete
|
|
236
237
|
Requires-Dist: tigrbl-core
|
|
237
238
|
Requires-Dist: tigrbl-ops-oltp
|
|
238
239
|
Requires-Dist: tigrbl-runtime
|
|
@@ -246,7 +247,7 @@ Description-Content-Type: text/markdown
|
|
|
246
247
|
<div align="center">
|
|
247
248
|
<h1>tigrbl-canon</h1>
|
|
248
249
|
<img src="https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/master/assets/tigrbl_full_logo.png" alt="Tigrbl logo" width="140"/>
|
|
249
|
-
<p><strong>Deprecated compatibility package for Tigrbl canonical mapping, router binding, schema attachment, RPC and REST exposure, and column inference utilities.</strong></p>
|
|
250
|
+
<p><strong>Deprecated legacy compatibility package for Tigrbl canonical mapping, router binding, schema attachment, RPC and REST exposure, and column inference utilities.</strong></p>
|
|
250
251
|
<a href="https://pypi.org/project/tigrbl-canon/"><img src="https://img.shields.io/pypi/v/tigrbl-canon?label=PyPI" alt="PyPI version for tigrbl-canon"/></a>
|
|
251
252
|
<a href="https://pypi.org/project/tigrbl-canon/"><img src="https://static.pepy.tech/badge/tigrbl-canon" alt="Downloads for tigrbl-canon"/></a>
|
|
252
253
|
<a href="https://discord.gg/K4YTAPapjR"><img src="https://img.shields.io/badge/Discord-Join%20chat-5865F2?logo=discord&logoColor=white" alt="Discord community for tigrbl-canon"/></a>
|
|
@@ -258,15 +259,15 @@ Description-Content-Type: text/markdown
|
|
|
258
259
|
|
|
259
260
|
## What is tigrbl-canon?
|
|
260
261
|
|
|
261
|
-
Deprecated compatibility package for Tigrbl canonical mapping, router binding, schema attachment, RPC and REST exposure, and column inference utilities.
|
|
262
|
+
Deprecated legacy compatibility package for Tigrbl canonical mapping, router binding, schema attachment, RPC and REST exposure, and column inference utilities. New code should not add this package; it exists only to carry older `tigrbl_canon` import paths during migrations.
|
|
262
263
|
|
|
263
264
|
## Why use tigrbl-canon?
|
|
264
265
|
|
|
265
|
-
Use it only when maintaining older integrations that still import the historical canonical package boundary.
|
|
266
|
+
Use it only when maintaining older integrations that still import the historical canonical package boundary. Do not use it for new Tigrbl applications or extensions.
|
|
266
267
|
|
|
267
268
|
## When should I install tigrbl-canon?
|
|
268
269
|
|
|
269
|
-
Install it for compatibility migrations
|
|
270
|
+
Install it only for compatibility migrations that still require `tigrbl_canon` imports. Prefer the current split packages for new work.
|
|
270
271
|
|
|
271
272
|
## Who is tigrbl-canon for?
|
|
272
273
|
|
|
@@ -274,15 +275,15 @@ Maintainers carrying legacy Tigrbl integrations forward.
|
|
|
274
275
|
|
|
275
276
|
## Where does tigrbl-canon fit?
|
|
276
277
|
|
|
277
|
-
`tigrbl-canon` lives at `pkgs/deprecated/tigrbl_canon` and serves legacy compatibility while migrating to current split packages.
|
|
278
|
+
`tigrbl-canon` lives at `pkgs/deprecated/tigrbl_canon` and serves legacy compatibility while migrating to current split packages. It is not part of the active facade dependency path.
|
|
278
279
|
|
|
279
280
|
## How does tigrbl-canon work?
|
|
280
281
|
|
|
281
|
-
It depends on current split packages and keeps historical import paths available while newer package boundaries own active behavior.
|
|
282
|
+
It depends on current split packages and keeps historical import paths available while newer package boundaries own active behavior. It must not depend on the `tigrbl` facade package.
|
|
282
283
|
|
|
283
284
|
## Certification Status
|
|
284
285
|
|
|
285
|
-
- Package status:
|
|
286
|
+
- Package status: deprecated, inactive compatibility package in the `tigrbl/tigrbl` workspace.
|
|
286
287
|
- Governance source: [SSOT registry](https://github.com/tigrbl/tigrbl/blob/master/.ssot/registry.json).
|
|
287
288
|
- Release evidence: [publish workflow](https://github.com/tigrbl/tigrbl/actions/workflows/publish.yml) validates package builds, tests, GitHub release assets, and PyPI publication for managed packages.
|
|
288
289
|
- Local certification guard: `pkgs/core/tigrbl_tests/tests/unit/test_package_badges_and_notices.py` verifies every package README keeps the Discord badge, Apache 2.0 badge, explicit Python-version badge, `LICENSE`, and `NOTICE`.
|
|
@@ -313,7 +314,7 @@ pip install tigrbl-canon
|
|
|
313
314
|
|
|
314
315
|
## What It Owns
|
|
315
316
|
|
|
316
|
-
`tigrbl-canon` owns the `deprecated compatibility package` boundary. It should be installed when
|
|
317
|
+
`tigrbl-canon` owns the `deprecated legacy compatibility package` boundary. It should be installed only when an older integration still needs the historical `tigrbl_canon` import root during migration.
|
|
317
318
|
|
|
318
319
|
Implementation orientation:
|
|
319
320
|
- `tigrbl_canon`: column/, mapping/
|
|
@@ -322,7 +323,7 @@ Implementation orientation:
|
|
|
322
323
|
|
|
323
324
|
- Import roots: `tigrbl_canon`.
|
|
324
325
|
- Public symbols: `_DEPRECATION_MESSAGE`.
|
|
325
|
-
- Workspace dependencies: [`tigrbl-ops-oltp`](https://pypi.org/project/tigrbl-ops-oltp/), [`tigrbl-base`](https://pypi.org/project/tigrbl-base/), [`tigrbl-core`](https://pypi.org/project/tigrbl-core/), [`tigrbl-runtime`](https://pypi.org/project/tigrbl-runtime/), [`tigrbl-atoms`](https://pypi.org/project/tigrbl-atoms/)
|
|
326
|
+
- Workspace dependencies: [`tigrbl-ops-oltp`](https://pypi.org/project/tigrbl-ops-oltp/), [`tigrbl-base`](https://pypi.org/project/tigrbl-base/), [`tigrbl-core`](https://pypi.org/project/tigrbl-core/), [`tigrbl-runtime`](https://pypi.org/project/tigrbl-runtime/), [`tigrbl-atoms`](https://pypi.org/project/tigrbl-atoms/).
|
|
326
327
|
- External runtime dependencies: none declared.
|
|
327
328
|
|
|
328
329
|
## Usage Examples
|
|
@@ -348,7 +349,7 @@ print(tigrbl_canon.__name__)
|
|
|
348
349
|
### Prefer current split packages for new code
|
|
349
350
|
|
|
350
351
|
```bash
|
|
351
|
-
uv add tigrbl tigrbl-
|
|
352
|
+
uv add tigrbl-core tigrbl-base tigrbl-runtime
|
|
352
353
|
```
|
|
353
354
|
|
|
354
355
|
### Audit remaining legacy imports
|
|
@@ -359,7 +360,7 @@ rg "tigrbl_canon|tigrbl-canon" .
|
|
|
359
360
|
|
|
360
361
|
## How To Choose This Package
|
|
361
362
|
|
|
362
|
-
Choose `tigrbl-canon` when
|
|
363
|
+
Choose `tigrbl-canon` only when an existing integration still imports `tigrbl_canon` and cannot migrate immediately. Choose lower-level packages such as [`tigrbl-core`](https://pypi.org/project/tigrbl-core/), [`tigrbl-base`](https://pypi.org/project/tigrbl-base/), or [`tigrbl-runtime`](https://pypi.org/project/tigrbl-runtime/) when building framework extensions or testing a specific internal boundary.
|
|
363
364
|
|
|
364
365
|
## Related Packages
|
|
365
366
|
|
|
@@ -368,7 +369,6 @@ Choose `tigrbl-canon` when the quick-answer table matches your use case. Choose
|
|
|
368
369
|
- [`tigrbl-core`](https://pypi.org/project/tigrbl-core/)
|
|
369
370
|
- [`tigrbl-runtime`](https://pypi.org/project/tigrbl-runtime/)
|
|
370
371
|
- [`tigrbl-atoms`](https://pypi.org/project/tigrbl-atoms/)
|
|
371
|
-
- [`tigrbl`](https://pypi.org/project/tigrbl/)
|
|
372
372
|
|
|
373
373
|
## Documentation Links
|
|
374
374
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<h1>tigrbl-canon</h1>
|
|
3
3
|
<img src="https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/master/assets/tigrbl_full_logo.png" alt="Tigrbl logo" width="140"/>
|
|
4
|
-
<p><strong>Deprecated compatibility package for Tigrbl canonical mapping, router binding, schema attachment, RPC and REST exposure, and column inference utilities.</strong></p>
|
|
4
|
+
<p><strong>Deprecated legacy compatibility package for Tigrbl canonical mapping, router binding, schema attachment, RPC and REST exposure, and column inference utilities.</strong></p>
|
|
5
5
|
<a href="https://pypi.org/project/tigrbl-canon/"><img src="https://img.shields.io/pypi/v/tigrbl-canon?label=PyPI" alt="PyPI version for tigrbl-canon"/></a>
|
|
6
6
|
<a href="https://pypi.org/project/tigrbl-canon/"><img src="https://static.pepy.tech/badge/tigrbl-canon" alt="Downloads for tigrbl-canon"/></a>
|
|
7
7
|
<a href="https://discord.gg/K4YTAPapjR"><img src="https://img.shields.io/badge/Discord-Join%20chat-5865F2?logo=discord&logoColor=white" alt="Discord community for tigrbl-canon"/></a>
|
|
@@ -13,15 +13,15 @@
|
|
|
13
13
|
|
|
14
14
|
## What is tigrbl-canon?
|
|
15
15
|
|
|
16
|
-
Deprecated compatibility package for Tigrbl canonical mapping, router binding, schema attachment, RPC and REST exposure, and column inference utilities.
|
|
16
|
+
Deprecated legacy compatibility package for Tigrbl canonical mapping, router binding, schema attachment, RPC and REST exposure, and column inference utilities. New code should not add this package; it exists only to carry older `tigrbl_canon` import paths during migrations.
|
|
17
17
|
|
|
18
18
|
## Why use tigrbl-canon?
|
|
19
19
|
|
|
20
|
-
Use it only when maintaining older integrations that still import the historical canonical package boundary.
|
|
20
|
+
Use it only when maintaining older integrations that still import the historical canonical package boundary. Do not use it for new Tigrbl applications or extensions.
|
|
21
21
|
|
|
22
22
|
## When should I install tigrbl-canon?
|
|
23
23
|
|
|
24
|
-
Install it for compatibility migrations
|
|
24
|
+
Install it only for compatibility migrations that still require `tigrbl_canon` imports. Prefer the current split packages for new work.
|
|
25
25
|
|
|
26
26
|
## Who is tigrbl-canon for?
|
|
27
27
|
|
|
@@ -29,15 +29,15 @@ Maintainers carrying legacy Tigrbl integrations forward.
|
|
|
29
29
|
|
|
30
30
|
## Where does tigrbl-canon fit?
|
|
31
31
|
|
|
32
|
-
`tigrbl-canon` lives at `pkgs/deprecated/tigrbl_canon` and serves legacy compatibility while migrating to current split packages.
|
|
32
|
+
`tigrbl-canon` lives at `pkgs/deprecated/tigrbl_canon` and serves legacy compatibility while migrating to current split packages. It is not part of the active facade dependency path.
|
|
33
33
|
|
|
34
34
|
## How does tigrbl-canon work?
|
|
35
35
|
|
|
36
|
-
It depends on current split packages and keeps historical import paths available while newer package boundaries own active behavior.
|
|
36
|
+
It depends on current split packages and keeps historical import paths available while newer package boundaries own active behavior. It must not depend on the `tigrbl` facade package.
|
|
37
37
|
|
|
38
38
|
## Certification Status
|
|
39
39
|
|
|
40
|
-
- Package status:
|
|
40
|
+
- Package status: deprecated, inactive compatibility package in the `tigrbl/tigrbl` workspace.
|
|
41
41
|
- Governance source: [SSOT registry](https://github.com/tigrbl/tigrbl/blob/master/.ssot/registry.json).
|
|
42
42
|
- Release evidence: [publish workflow](https://github.com/tigrbl/tigrbl/actions/workflows/publish.yml) validates package builds, tests, GitHub release assets, and PyPI publication for managed packages.
|
|
43
43
|
- Local certification guard: `pkgs/core/tigrbl_tests/tests/unit/test_package_badges_and_notices.py` verifies every package README keeps the Discord badge, Apache 2.0 badge, explicit Python-version badge, `LICENSE`, and `NOTICE`.
|
|
@@ -68,7 +68,7 @@ pip install tigrbl-canon
|
|
|
68
68
|
|
|
69
69
|
## What It Owns
|
|
70
70
|
|
|
71
|
-
`tigrbl-canon` owns the `deprecated compatibility package` boundary. It should be installed when
|
|
71
|
+
`tigrbl-canon` owns the `deprecated legacy compatibility package` boundary. It should be installed only when an older integration still needs the historical `tigrbl_canon` import root during migration.
|
|
72
72
|
|
|
73
73
|
Implementation orientation:
|
|
74
74
|
- `tigrbl_canon`: column/, mapping/
|
|
@@ -77,7 +77,7 @@ Implementation orientation:
|
|
|
77
77
|
|
|
78
78
|
- Import roots: `tigrbl_canon`.
|
|
79
79
|
- Public symbols: `_DEPRECATION_MESSAGE`.
|
|
80
|
-
- Workspace dependencies: [`tigrbl-ops-oltp`](https://pypi.org/project/tigrbl-ops-oltp/), [`tigrbl-base`](https://pypi.org/project/tigrbl-base/), [`tigrbl-core`](https://pypi.org/project/tigrbl-core/), [`tigrbl-runtime`](https://pypi.org/project/tigrbl-runtime/), [`tigrbl-atoms`](https://pypi.org/project/tigrbl-atoms/)
|
|
80
|
+
- Workspace dependencies: [`tigrbl-ops-oltp`](https://pypi.org/project/tigrbl-ops-oltp/), [`tigrbl-base`](https://pypi.org/project/tigrbl-base/), [`tigrbl-core`](https://pypi.org/project/tigrbl-core/), [`tigrbl-runtime`](https://pypi.org/project/tigrbl-runtime/), [`tigrbl-atoms`](https://pypi.org/project/tigrbl-atoms/).
|
|
81
81
|
- External runtime dependencies: none declared.
|
|
82
82
|
|
|
83
83
|
## Usage Examples
|
|
@@ -103,7 +103,7 @@ print(tigrbl_canon.__name__)
|
|
|
103
103
|
### Prefer current split packages for new code
|
|
104
104
|
|
|
105
105
|
```bash
|
|
106
|
-
uv add tigrbl tigrbl-
|
|
106
|
+
uv add tigrbl-core tigrbl-base tigrbl-runtime
|
|
107
107
|
```
|
|
108
108
|
|
|
109
109
|
### Audit remaining legacy imports
|
|
@@ -114,7 +114,7 @@ rg "tigrbl_canon|tigrbl-canon" .
|
|
|
114
114
|
|
|
115
115
|
## How To Choose This Package
|
|
116
116
|
|
|
117
|
-
Choose `tigrbl-canon` when
|
|
117
|
+
Choose `tigrbl-canon` only when an existing integration still imports `tigrbl_canon` and cannot migrate immediately. Choose lower-level packages such as [`tigrbl-core`](https://pypi.org/project/tigrbl-core/), [`tigrbl-base`](https://pypi.org/project/tigrbl-base/), or [`tigrbl-runtime`](https://pypi.org/project/tigrbl-runtime/) when building framework extensions or testing a specific internal boundary.
|
|
118
118
|
|
|
119
119
|
## Related Packages
|
|
120
120
|
|
|
@@ -123,7 +123,6 @@ Choose `tigrbl-canon` when the quick-answer table matches your use case. Choose
|
|
|
123
123
|
- [`tigrbl-core`](https://pypi.org/project/tigrbl-core/)
|
|
124
124
|
- [`tigrbl-runtime`](https://pypi.org/project/tigrbl-runtime/)
|
|
125
125
|
- [`tigrbl-atoms`](https://pypi.org/project/tigrbl-atoms/)
|
|
126
|
-
- [`tigrbl`](https://pypi.org/project/tigrbl/)
|
|
127
126
|
|
|
128
127
|
## Documentation Links
|
|
129
128
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "tigrbl-canon"
|
|
3
|
-
version = "0.4.
|
|
4
|
-
description = "Deprecated compatibility package for Tigrbl canonical mapping, router binding, schema attachment, RPC and REST exposure, and column inference utilities."
|
|
3
|
+
version = "0.4.3.dev4"
|
|
4
|
+
description = "Deprecated legacy compatibility package for Tigrbl canonical mapping, router binding, schema attachment, RPC and REST exposure, and column inference utilities."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { file = "LICENSE" }
|
|
7
7
|
keywords = [
|
|
@@ -53,12 +53,13 @@ requires-python = ">=3.10,<3.15"
|
|
|
53
53
|
authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
|
|
54
54
|
|
|
55
55
|
dependencies = [
|
|
56
|
+
"tigrbl",
|
|
57
|
+
"tigrbl-concrete",
|
|
56
58
|
"tigrbl-ops-oltp",
|
|
57
59
|
"tigrbl-base",
|
|
58
60
|
"tigrbl-core",
|
|
59
61
|
"tigrbl-runtime",
|
|
60
62
|
"tigrbl-atoms",
|
|
61
|
-
"tigrbl",
|
|
62
63
|
]
|
|
63
64
|
|
|
64
65
|
|
|
@@ -70,12 +71,13 @@ Repository = "https://github.com/tigrbl/tigrbl/tree/master/pkgs/deprecated/tigrb
|
|
|
70
71
|
Issues = "https://github.com/tigrbl/tigrbl/issues"
|
|
71
72
|
|
|
72
73
|
[tool.uv.sources]
|
|
74
|
+
"tigrbl" = { workspace = true }
|
|
75
|
+
"tigrbl-concrete" = { workspace = true }
|
|
73
76
|
"tigrbl-ops-oltp" = { workspace = true }
|
|
74
77
|
"tigrbl-base" = { workspace = true }
|
|
75
78
|
"tigrbl-core" = { workspace = true }
|
|
76
79
|
"tigrbl-runtime" = { workspace = true }
|
|
77
80
|
"tigrbl-atoms" = { workspace = true }
|
|
78
|
-
"tigrbl" = { workspace = true }
|
|
79
81
|
|
|
80
82
|
[build-system]
|
|
81
83
|
requires = ["poetry-core>=1.0.0"]
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"""Tigrbl canon compatibility package."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import warnings
|
|
6
|
+
|
|
7
|
+
_DEPRECATION_MESSAGE = (
|
|
8
|
+
"tigrbl_canon is deprecated, not supported anymore, and likely to break. "
|
|
9
|
+
"Migrate away from tigrbl_canon imports as soon as possible."
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def _warn_deprecated_import(module_name: str = __name__) -> None:
|
|
14
|
+
message = (
|
|
15
|
+
_DEPRECATION_MESSAGE
|
|
16
|
+
if module_name == __name__
|
|
17
|
+
else f"{module_name} imports from deprecated tigrbl_canon. {_DEPRECATION_MESSAGE}"
|
|
18
|
+
)
|
|
19
|
+
warnings.warn(message, DeprecationWarning, stacklevel=2)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
_warn_deprecated_import()
|
|
23
|
+
|
|
24
|
+
__all__ = ["_DEPRECATION_MESSAGE", "_warn_deprecated_import"]
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
-
from
|
|
4
|
-
|
|
3
|
+
from tigrbl_canon import _warn_deprecated_import
|
|
4
|
+
|
|
5
|
+
_warn_deprecated_import(__name__)
|
|
5
6
|
|
|
6
|
-
from tigrbl_canon import _DEPRECATION_MESSAGE
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
from importlib import import_module
|
|
9
9
|
|
|
10
10
|
__all__ = [
|
|
11
11
|
"bind",
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
+
from tigrbl_canon import _warn_deprecated_import
|
|
4
|
+
|
|
5
|
+
_warn_deprecated_import(__name__)
|
|
6
|
+
|
|
7
|
+
|
|
3
8
|
from dataclasses import replace
|
|
4
9
|
from typing import Any, Dict, Optional, Set
|
|
5
10
|
|
|
6
11
|
from tigrbl_core._spec import OpSpec
|
|
7
|
-
from
|
|
12
|
+
from tigrbl_core._spec.op_spec import resolve as resolve_ops
|
|
8
13
|
from .op_mro_collect import mro_alias_map_for, mro_collect_decorated_ops
|
|
9
14
|
from .context import MappingContext, MappingKey
|
|
10
15
|
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# tigrbl/v3/mapping/collect_decorated_schemas.py
|
|
2
2
|
from __future__ import annotations
|
|
3
3
|
|
|
4
|
+
from tigrbl_canon import _warn_deprecated_import
|
|
5
|
+
|
|
6
|
+
_warn_deprecated_import(__name__)
|
|
7
|
+
|
|
8
|
+
|
|
4
9
|
import inspect
|
|
5
10
|
import logging
|
|
6
11
|
from functools import lru_cache
|
|
@@ -8,7 +13,7 @@ from typing import Dict
|
|
|
8
13
|
|
|
9
14
|
from tigrbl_core.config.constants import TIGRBL_SCHEMA_DECLS_ATTR
|
|
10
15
|
|
|
11
|
-
from
|
|
16
|
+
from tigrbl_concrete._decorators.schema import _SchemaDecl
|
|
12
17
|
from pydantic import BaseModel, create_model
|
|
13
18
|
|
|
14
19
|
logger = logging.getLogger("uvicorn")
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# tigrbl/v3/config/resolver.py
|
|
2
2
|
from __future__ import annotations
|
|
3
3
|
|
|
4
|
+
from tigrbl_canon import _warn_deprecated_import
|
|
5
|
+
|
|
6
|
+
_warn_deprecated_import(__name__)
|
|
7
|
+
|
|
8
|
+
|
|
4
9
|
from dataclasses import asdict, is_dataclass
|
|
5
10
|
from types import MappingProxyType
|
|
6
11
|
from typing import Any, Dict, Iterable, Mapping, Optional
|
|
@@ -2,11 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
+
from tigrbl_canon import _warn_deprecated_import
|
|
6
|
+
|
|
7
|
+
_warn_deprecated_import(__name__)
|
|
8
|
+
|
|
9
|
+
|
|
5
10
|
from typing import Annotated, Any, Iterable, get_args, get_origin
|
|
6
11
|
|
|
7
12
|
from tigrbl_ops_oltp.crud.params import Param
|
|
8
|
-
from
|
|
9
|
-
from
|
|
13
|
+
from tigrbl_typing.status.exceptions import HTTPException
|
|
14
|
+
from tigrbl_typing.status.mappings import status
|
|
10
15
|
from tigrbl_typing.protocols import RequestLike
|
|
11
16
|
|
|
12
17
|
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# tigrbl/v3/mapping/handlers/steps.py
|
|
2
2
|
from __future__ import annotations
|
|
3
3
|
|
|
4
|
+
from tigrbl_canon import _warn_deprecated_import
|
|
5
|
+
|
|
6
|
+
_warn_deprecated_import(__name__)
|
|
7
|
+
|
|
8
|
+
|
|
4
9
|
import inspect
|
|
5
10
|
import logging
|
|
6
11
|
from functools import lru_cache
|
|
@@ -8,7 +13,7 @@ from typing import Any, Callable
|
|
|
8
13
|
|
|
9
14
|
from tigrbl_atoms.atoms import get as _get_atom
|
|
10
15
|
from tigrbl_core._spec import OpSpec
|
|
11
|
-
from tigrbl_runtime.
|
|
16
|
+
from tigrbl_runtime.executors.types import _Ctx
|
|
12
17
|
|
|
13
18
|
from tigrbl_atoms import StepFn
|
|
14
19
|
from .ctx import _ctx_db, _ctx_payload, _ctx_request
|
{tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/hook_mro_collect.py
RENAMED
|
@@ -2,15 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
+
from tigrbl_canon import _warn_deprecated_import
|
|
6
|
+
|
|
7
|
+
_warn_deprecated_import(__name__)
|
|
8
|
+
|
|
9
|
+
|
|
5
10
|
import logging
|
|
6
11
|
from functools import lru_cache
|
|
7
12
|
from typing import Any, Callable, Dict, Iterable, Union
|
|
8
13
|
|
|
9
|
-
from tigrbl_runtime.
|
|
14
|
+
from tigrbl_runtime.executors.types import _Ctx
|
|
10
15
|
from tigrbl_concrete._concrete._op import Op as OpSpec
|
|
11
16
|
from .op_mro_collect import mro_alias_map_for
|
|
12
|
-
from
|
|
13
|
-
from
|
|
17
|
+
from tigrbl_concrete._decorators.op import _maybe_await, _unwrap
|
|
18
|
+
from tigrbl_concrete._decorators.hook import HOOK_DECLS_ATTR
|
|
14
19
|
from tigrbl_concrete._concrete import Hook
|
|
15
20
|
|
|
16
21
|
logger = logging.getLogger("uvicorn")
|
|
@@ -3,11 +3,16 @@
|
|
|
3
3
|
|
|
4
4
|
from __future__ import annotations
|
|
5
5
|
|
|
6
|
+
from tigrbl_canon import _warn_deprecated_import
|
|
7
|
+
|
|
8
|
+
_warn_deprecated_import(__name__)
|
|
9
|
+
|
|
10
|
+
|
|
6
11
|
import logging
|
|
7
12
|
from typing import Set
|
|
8
13
|
|
|
9
14
|
from tigrbl_core.config.constants import TIGRBL_REGISTRY_LISTENER_ATTR
|
|
10
|
-
from
|
|
15
|
+
from tigrbl_concrete._concrete._op_registry import OpspecRegistry, get_registry
|
|
11
16
|
|
|
12
17
|
from .model_helpers import _Key
|
|
13
18
|
|
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
+
from tigrbl_canon import _warn_deprecated_import
|
|
4
|
+
|
|
5
|
+
_warn_deprecated_import(__name__)
|
|
6
|
+
|
|
7
|
+
|
|
3
8
|
import logging
|
|
4
9
|
import inspect
|
|
5
10
|
from functools import lru_cache
|
|
6
11
|
from typing import Any, Callable, Dict
|
|
7
12
|
|
|
8
13
|
from tigrbl_concrete._concrete._op import Op as OpSpec
|
|
9
|
-
from
|
|
10
|
-
from tigrbl_runtime.
|
|
14
|
+
from tigrbl_concrete._decorators.op import _maybe_await, _normalize_persist, _unwrap
|
|
15
|
+
from tigrbl_runtime.executors.types import _Ctx
|
|
11
16
|
|
|
12
17
|
logger = logging.getLogger("uvicorn")
|
|
13
18
|
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
+
from tigrbl_canon import _warn_deprecated_import
|
|
4
|
+
|
|
5
|
+
_warn_deprecated_import(__name__)
|
|
6
|
+
|
|
7
|
+
|
|
3
8
|
from typing import Any, Callable, Iterable, List
|
|
4
9
|
|
|
5
10
|
from .hook_mro_collect import mro_collect_decorated_hooks
|
|
6
|
-
from
|
|
11
|
+
from tigrbl_core._spec.op_spec import resolve as resolve_ops
|
|
7
12
|
from tigrbl_atoms import VALID_HOOK_PHASES
|
|
8
13
|
from tigrbl_core._spec.monotone import stable_keyed_overlay
|
|
9
14
|
from .context import MappingContext
|
|
@@ -6,6 +6,11 @@ import surface stable while easing maintenance.
|
|
|
6
6
|
|
|
7
7
|
from __future__ import annotations
|
|
8
8
|
|
|
9
|
+
from tigrbl_canon import _warn_deprecated_import
|
|
10
|
+
|
|
11
|
+
_warn_deprecated_import(__name__)
|
|
12
|
+
|
|
13
|
+
|
|
9
14
|
import logging
|
|
10
15
|
from typing import Any
|
|
11
16
|
|
|
@@ -53,8 +58,8 @@ from tigrbl_ops_oltp.crud.params import Body, Path
|
|
|
53
58
|
from tigrbl_core._spec import OpSpec
|
|
54
59
|
from tigrbl.op.types import CANON
|
|
55
60
|
from tigrbl.rest import _nested_prefix
|
|
56
|
-
from
|
|
57
|
-
from
|
|
61
|
+
from tigrbl_typing.status.exceptions import HTTPException
|
|
62
|
+
from tigrbl_typing.status.mappings import status as _status
|
|
58
63
|
from tigrbl.schema.builder import _strip_parent_fields
|
|
59
64
|
from tigrbl_concrete._concrete.dependencies import Depends
|
|
60
65
|
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from tigrbl_canon import _warn_deprecated_import
|
|
4
|
+
|
|
5
|
+
_warn_deprecated_import(__name__)
|
|
6
|
+
|
|
2
7
|
import logging
|
|
3
8
|
|
|
4
9
|
import inspect
|
|
@@ -10,8 +15,8 @@ import typing as _typing
|
|
|
10
15
|
from pydantic import BaseModel, Field, create_model
|
|
11
16
|
|
|
12
17
|
from tigrbl_ops_oltp.crud.params import Query
|
|
13
|
-
from
|
|
14
|
-
from
|
|
18
|
+
from tigrbl_typing.status.exceptions import HTTPException
|
|
19
|
+
from tigrbl_typing.status.mappings import status as _status
|
|
15
20
|
from tigrbl_concrete._concrete._request import Request
|
|
16
21
|
from .helpers import _ensure_jsonable
|
|
17
22
|
from tigrbl_core._spec import OpSpec
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from tigrbl_canon import _warn_deprecated_import
|
|
4
|
+
|
|
5
|
+
_warn_deprecated_import(__name__)
|
|
6
|
+
|
|
2
7
|
import logging
|
|
3
8
|
|
|
4
9
|
from types import SimpleNamespace
|
|
5
10
|
from typing import Any, Dict, Optional, Sequence, Tuple
|
|
6
11
|
|
|
7
12
|
|
|
8
|
-
from
|
|
13
|
+
from tigrbl_typing.status.mappings import status as _status
|
|
9
14
|
from tigrbl_concrete._concrete.dependencies import Depends
|
|
10
15
|
from tigrbl_core._spec import OpSpec
|
|
11
16
|
from tigrbl_core.config.constants import CANON
|
{tigrbl_canon-0.4.2.dev4 → tigrbl_canon-0.4.3.dev4}/tigrbl_canon/mapping/router_mro_collect.py
RENAMED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# tigrbl/v3/router/mro_collect.py
|
|
2
2
|
from __future__ import annotations
|
|
3
3
|
|
|
4
|
+
from tigrbl_canon import _warn_deprecated_import
|
|
5
|
+
|
|
6
|
+
_warn_deprecated_import(__name__)
|
|
7
|
+
|
|
8
|
+
|
|
4
9
|
import logging
|
|
5
10
|
from functools import lru_cache
|
|
6
11
|
from typing import Any, Callable, Dict, Iterable, Mapping
|
|
@@ -7,6 +7,11 @@ engine/app/table modules.
|
|
|
7
7
|
|
|
8
8
|
from __future__ import annotations
|
|
9
9
|
|
|
10
|
+
from tigrbl_canon import _warn_deprecated_import
|
|
11
|
+
|
|
12
|
+
_warn_deprecated_import(__name__)
|
|
13
|
+
|
|
14
|
+
|
|
10
15
|
import logging
|
|
11
16
|
from types import SimpleNamespace
|
|
12
17
|
from typing import Any, Callable, Iterable, Mapping
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"""Tigrbl canon compatibility package."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
|
|
5
|
-
import warnings
|
|
6
|
-
|
|
7
|
-
_DEPRECATION_MESSAGE = (
|
|
8
|
-
"tigrbl_canon is deprecated, not supported anymore, and likely to break. "
|
|
9
|
-
"Migrate away from tigrbl_canon imports as soon as possible."
|
|
10
|
-
)
|
|
11
|
-
|
|
12
|
-
warnings.warn(_DEPRECATION_MESSAGE, DeprecationWarning, stacklevel=2)
|
|
13
|
-
|
|
14
|
-
__all__ = ["_DEPRECATION_MESSAGE"]
|
|
File without changes
|
|
File without changes
|