jararaca 0.2.37a0__py3-none-any.whl → 0.2.37a1__py3-none-any.whl

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.

Potentially problematic release.


This version of jararaca might be problematic. Click here for more details.

jararaca/__init__.py CHANGED
@@ -321,12 +321,12 @@ _dynamic_imports: "dict[str, tuple[str, str, str | None]]" = {
321
321
  "use_publisher": (__SPEC_PARENT__, "messagebus.publisher", None),
322
322
  "AIOPikaConnectionFactory": (
323
323
  __SPEC_PARENT__,
324
- "messagebus.interceptors.publisher_interceptor",
324
+ "messagebus.interceptors.aiopika_publisher_interceptor",
325
325
  None,
326
326
  ),
327
327
  "MessageBusPublisherInterceptor": (
328
328
  __SPEC_PARENT__,
329
- "messagebus.interceptors.publisher_interceptor",
329
+ "messagebus.interceptors.aiopika_publisher_interceptor",
330
330
  None,
331
331
  ),
332
332
  "RedisWebSocketConnectionBackend": (
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: jararaca
3
- Version: 0.2.37a0
3
+ Version: 0.2.37a1
4
4
  Summary: A simple and fast API framework for Python
5
5
  Home-page: https://github.com/LuscasLeo/jararaca
6
6
  Author: Lucas S
@@ -1,7 +1,7 @@
1
1
  LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
2
2
  README.md,sha256=mte30I-ZEJJp-Oax-OganNgl6G9GaCZPL6JVFAvZGz4,7034
3
- pyproject.toml,sha256=eCYmaQ1KvrC-AjVxBZKuaneOlX0K4k8xixQojXEJt2Q,1839
4
- jararaca/__init__.py,sha256=1Tv-cJ5C_4VL73ceISjoqZQe7DBAPN2G14VWnzlDxuY,14842
3
+ pyproject.toml,sha256=j64tNUjmWIMUvZ-I50Ys9c4rP5fT5Kj79zX4u14ZXaY,1839
4
+ jararaca/__init__.py,sha256=fFxUTZpaYonRdcwq-9MEZC9hmW6dg_A2aQnceZjFB-w,14858
5
5
  jararaca/__main__.py,sha256=-O3vsB5lHdqNFjUtoELDF81IYFtR-DSiiFMzRaiSsv4,67
6
6
  jararaca/cli.py,sha256=JKk4xrRbtX2fM8yYw794lbxvJFH73bWw3GGIvrpAkeE,5706
7
7
  jararaca/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -59,8 +59,8 @@ jararaca/tools/app_config/decorators.py,sha256=-ckkMZ1dswOmECdo1rFrZ15UAku--txaN
59
59
  jararaca/tools/app_config/interceptor.py,sha256=nfFZiS80hrbnL7-XEYrwmp2rwaVYBqxvqu3Y-6o_ov4,2575
60
60
  jararaca/tools/metadata.py,sha256=7nlCDYgItNybentPSSCc2MLqN7IpBd0VyQzfjfQycVI,1402
61
61
  jararaca/tools/typescript/interface_parser.py,sha256=l-QyPVntATcbL4JYm48xq2gNWfV1y2iArvOuIueFi8w,28829
62
- jararaca-0.2.37a0.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
63
- jararaca-0.2.37a0.dist-info/METADATA,sha256=LOL1VDz7acD53uTKUnVmodyCSKxiaZs_IBvCaUFJhDA,8554
64
- jararaca-0.2.37a0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
65
- jararaca-0.2.37a0.dist-info/entry_points.txt,sha256=WIh3aIvz8LwUJZIDfs4EeH3VoFyCGEk7cWJurW38q0I,45
66
- jararaca-0.2.37a0.dist-info/RECORD,,
62
+ jararaca-0.2.37a1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
63
+ jararaca-0.2.37a1.dist-info/METADATA,sha256=SdpFumrdny4QjcbsXIljEmnmGDe9y9t3RAfDKYluQ2g,8554
64
+ jararaca-0.2.37a1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
65
+ jararaca-0.2.37a1.dist-info/entry_points.txt,sha256=WIh3aIvz8LwUJZIDfs4EeH3VoFyCGEk7cWJurW38q0I,45
66
+ jararaca-0.2.37a1.dist-info/RECORD,,
pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "jararaca"
3
- version = "0.2.37a0"
3
+ version = "0.2.37a1"
4
4
  description = "A simple and fast API framework for Python"
5
5
  authors = ["Lucas S <me@luscasleo.dev>"]
6
6
  readme = "README.md"