toDus-API 1.3.4__tar.gz → 1.3.5__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 (35) hide show
  1. {todus_api-1.3.4 → todus_api-1.3.5}/CHANGELOG.md +34 -0
  2. {todus_api-1.3.4/toDus_API.egg-info → todus_api-1.3.5}/PKG-INFO +5 -5
  3. {todus_api-1.3.4 → todus_api-1.3.5}/README.md +4 -4
  4. {todus_api-1.3.4 → todus_api-1.3.5/toDus_API.egg-info}/PKG-INFO +5 -5
  5. {todus_api-1.3.4 → todus_api-1.3.5}/todus/__init__.py +1 -1
  6. {todus_api-1.3.4 → todus_api-1.3.5}/LICENSE +0 -0
  7. {todus_api-1.3.4 → todus_api-1.3.5}/MANIFEST.in +0 -0
  8. {todus_api-1.3.4 → todus_api-1.3.5}/pyproject.toml +0 -0
  9. {todus_api-1.3.4 → todus_api-1.3.5}/setup.cfg +0 -0
  10. {todus_api-1.3.4 → todus_api-1.3.5}/tests/test_proxy.py +0 -0
  11. {todus_api-1.3.4 → todus_api-1.3.5}/tests/test_stanzas.py +0 -0
  12. {todus_api-1.3.4 → todus_api-1.3.5}/tests/test_types.py +0 -0
  13. {todus_api-1.3.4 → todus_api-1.3.5}/tests/test_util.py +0 -0
  14. {todus_api-1.3.4 → todus_api-1.3.5}/toDus_API.egg-info/SOURCES.txt +0 -0
  15. {todus_api-1.3.4 → todus_api-1.3.5}/toDus_API.egg-info/dependency_links.txt +0 -0
  16. {todus_api-1.3.4 → todus_api-1.3.5}/toDus_API.egg-info/requires.txt +0 -0
  17. {todus_api-1.3.4 → todus_api-1.3.5}/toDus_API.egg-info/top_level.txt +0 -0
  18. {todus_api-1.3.4 → todus_api-1.3.5}/todus/client/__init__.py +0 -0
  19. {todus_api-1.3.4 → todus_api-1.3.5}/todus/client/auth.py +0 -0
  20. {todus_api-1.3.4 → todus_api-1.3.5}/todus/client/base.py +0 -0
  21. {todus_api-1.3.4 → todus_api-1.3.5}/todus/client/file.py +0 -0
  22. {todus_api-1.3.4 → todus_api-1.3.5}/todus/client/message.py +0 -0
  23. {todus_api-1.3.4 → todus_api-1.3.5}/todus/client/profile.py +0 -0
  24. {todus_api-1.3.4 → todus_api-1.3.5}/todus/constants.py +0 -0
  25. {todus_api-1.3.4 → todus_api-1.3.5}/todus/errors.py +0 -0
  26. {todus_api-1.3.4 → todus_api-1.3.5}/todus/group.py +0 -0
  27. {todus_api-1.3.4 → todus_api-1.3.5}/todus/parser.py +0 -0
  28. {todus_api-1.3.4 → todus_api-1.3.5}/todus/stanza.py +0 -0
  29. {todus_api-1.3.4 → todus_api-1.3.5}/todus/stanzas/__init__.py +0 -0
  30. {todus_api-1.3.4 → todus_api-1.3.5}/todus/stanzas/group.py +0 -0
  31. {todus_api-1.3.4 → todus_api-1.3.5}/todus/stanzas/presence.py +0 -0
  32. {todus_api-1.3.4 → todus_api-1.3.5}/todus/stanzas/private.py +0 -0
  33. {todus_api-1.3.4 → todus_api-1.3.5}/todus/stanzas/utils.py +0 -0
  34. {todus_api-1.3.4 → todus_api-1.3.5}/todus/types.py +0 -0
  35. {todus_api-1.3.4 → todus_api-1.3.5}/todus/util.py +0 -0
@@ -5,6 +5,35 @@ Todos los cambios notables en este proyecto se documentan en este archivo.
5
5
  El formato está basado en [Keep a Changelog](https://keepachangelog.com/es-ES/1.1.0/),
6
6
  y este proyecto sigue [Semantic Versioning](https://semver.org/lang/es/).
7
7
 
8
+ ## [1.3.5] - 2026-06-20
9
+
10
+ ### Fixed
11
+ - Corregidos y optimizados los badges del `README.md` para dar soporte a repositorios privados utilizando badges nativos de GitHub Actions y un badge estático para la licencia.
12
+
13
+ ### Changed
14
+ - Migrado el flujo de publicación de PyPI en GitHub Actions a Trusted Publishing (OIDC) para evitar fallos de autenticación con tokens y simplificar el proceso.
15
+
16
+ ## [1.3.4] - 2026-06-20
17
+
18
+ ### Fixed
19
+ - Asegurado que las operaciones de subida de archivos (`upload_file`) y avatares (`upload_avatar`) utilicen el proxy configurado al direccionarlas a través de la sesión del cliente.
20
+ - Agregados tests unitarios para verificar el comportamiento de proxies en la subida de archivos y avatares.
21
+
22
+ ## [1.3.3] - 2026-06-19
23
+
24
+ ### Changed
25
+ - Renombrado el paquete a `toDus-API`.
26
+
27
+ ## [1.3.2] - 2026-06-19
28
+
29
+ ### Fixed
30
+ - Corregido el flujo de publicación en GitHub Actions para usar `secrets.PYPI_API_TOKEN`.
31
+
32
+ ## [1.3.1] - 2026-06-19
33
+
34
+ ### Added
35
+ - Soporte inicial para proxy HTTP y SOCKS5 en peticiones HTTP y sockets XMPP.
36
+
8
37
  ## [1.3.0] - 2026-06-19
9
38
 
10
39
  ### Added
@@ -55,6 +84,11 @@ y este proyecto sigue [Semantic Versioning](https://semver.org/lang/es/).
55
84
  - Manejo de excepciones personalizadas
56
85
  - Constantes del protocolo ToDus
57
86
 
87
+ [1.3.5]: https://github.com/ElJoker63/toDus-API/compare/v1.3.4...v1.3.5
88
+ [1.3.4]: https://github.com/ElJoker63/toDus-API/compare/v1.3.3...v1.3.4
89
+ [1.3.3]: https://github.com/ElJoker63/toDus-API/compare/v1.3.2...v1.3.3
90
+ [1.3.2]: https://github.com/ElJoker63/toDus-API/compare/v1.3.1...v1.3.2
91
+ [1.3.1]: https://github.com/ElJoker63/toDus-API/compare/v1.3.0...v1.3.1
58
92
  [1.3.0]: https://github.com/ElJoker63/toDus-API/compare/v1.2.0...v1.3.0
59
93
  [1.2.0]: https://github.com/ElJoker63/toDus-API/compare/v1.1.0...v1.2.0
60
94
  [1.1.0]: https://github.com/ElJoker63/toDus-API/compare/v1.0.0...v1.1.0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: toDus-API
3
- Version: 1.3.4
3
+ Version: 1.3.5
4
4
  Summary: Cliente Python para ToDus (mensajería cubana) — chat, grupos, archivos, stickers y más
5
5
  Author: ElJoker63
6
6
  License-Expression: MIT
@@ -34,15 +34,15 @@ Dynamic: license-file
34
34
  <p align="center">
35
35
  <a href="https://pypi.org/project/toDus-API/"><img src="https://img.shields.io/pypi/v/toDus-API" alt="PyPI"></a>
36
36
  <a href="https://pypi.org/project/toDus-API/"><img src="https://img.shields.io/pypi/pyversions/toDus-API" alt="Python"></a>
37
- <a href="https://github.com/ElJoker63/toDus-API/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/ElJoker63/toDus-API/ci.yml?branch=main&label=tests" alt="Tests"></a>
38
- <a href="https://github.com/ElJoker63/toDus-API/actions/workflows/pypi-publish.yml"><img src="https://img.shields.io/github/actions/workflow/status/ElJoker63/toDus-API/pypi-publish.yml?branch=main&label=publish" alt="Publish"></a>
39
- <a href="https://github.com/ElJoker63/toDus-API/blob/main/LICENSE"><img src="https://img.shields.io/github/license/ElJoker63/toDus-API" alt="License"></a>
37
+ <a href="https://github.com/ElJoker63/toDus-API/actions/workflows/ci.yml"><img src="https://github.com/ElJoker63/toDus-API/actions/workflows/ci.yml/badge.svg?branch=main" alt="Tests"></a>
38
+ <a href="https://github.com/ElJoker63/toDus-API/actions/workflows/pypi-publish.yml"><img src="https://github.com/ElJoker63/toDus-API/actions/workflows/pypi-publish.yml/badge.svg?branch=main" alt="Publish"></a>
39
+ <a href="https://github.com/ElJoker63/toDus-API/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue" alt="License"></a>
40
40
  </p>
41
41
 
42
42
  <p><strong>Cliente Python para ToDus</strong> — la plataforma de mensajería instantánea cubana. Soporta chat privado, grupos MUC Light, archivos, imágenes, videos, stickers, botones interactivos y más.</p>
43
43
 
44
44
  <ul>
45
- <li><strong>Versión:</strong> 1.3.3</li>
45
+ <li><strong>Versión:</strong> 1.3.5</li>
46
46
  <li><strong>Python:</strong> >= 3.11</li>
47
47
  <li><strong>Autor:</strong> ElJoker63</li>
48
48
  <li><strong>Licencia:</strong> MIT</li>
@@ -3,15 +3,15 @@
3
3
  <p align="center">
4
4
  <a href="https://pypi.org/project/toDus-API/"><img src="https://img.shields.io/pypi/v/toDus-API" alt="PyPI"></a>
5
5
  <a href="https://pypi.org/project/toDus-API/"><img src="https://img.shields.io/pypi/pyversions/toDus-API" alt="Python"></a>
6
- <a href="https://github.com/ElJoker63/toDus-API/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/ElJoker63/toDus-API/ci.yml?branch=main&label=tests" alt="Tests"></a>
7
- <a href="https://github.com/ElJoker63/toDus-API/actions/workflows/pypi-publish.yml"><img src="https://img.shields.io/github/actions/workflow/status/ElJoker63/toDus-API/pypi-publish.yml?branch=main&label=publish" alt="Publish"></a>
8
- <a href="https://github.com/ElJoker63/toDus-API/blob/main/LICENSE"><img src="https://img.shields.io/github/license/ElJoker63/toDus-API" alt="License"></a>
6
+ <a href="https://github.com/ElJoker63/toDus-API/actions/workflows/ci.yml"><img src="https://github.com/ElJoker63/toDus-API/actions/workflows/ci.yml/badge.svg?branch=main" alt="Tests"></a>
7
+ <a href="https://github.com/ElJoker63/toDus-API/actions/workflows/pypi-publish.yml"><img src="https://github.com/ElJoker63/toDus-API/actions/workflows/pypi-publish.yml/badge.svg?branch=main" alt="Publish"></a>
8
+ <a href="https://github.com/ElJoker63/toDus-API/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue" alt="License"></a>
9
9
  </p>
10
10
 
11
11
  <p><strong>Cliente Python para ToDus</strong> — la plataforma de mensajería instantánea cubana. Soporta chat privado, grupos MUC Light, archivos, imágenes, videos, stickers, botones interactivos y más.</p>
12
12
 
13
13
  <ul>
14
- <li><strong>Versión:</strong> 1.3.3</li>
14
+ <li><strong>Versión:</strong> 1.3.5</li>
15
15
  <li><strong>Python:</strong> >= 3.11</li>
16
16
  <li><strong>Autor:</strong> ElJoker63</li>
17
17
  <li><strong>Licencia:</strong> MIT</li>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: toDus-API
3
- Version: 1.3.4
3
+ Version: 1.3.5
4
4
  Summary: Cliente Python para ToDus (mensajería cubana) — chat, grupos, archivos, stickers y más
5
5
  Author: ElJoker63
6
6
  License-Expression: MIT
@@ -34,15 +34,15 @@ Dynamic: license-file
34
34
  <p align="center">
35
35
  <a href="https://pypi.org/project/toDus-API/"><img src="https://img.shields.io/pypi/v/toDus-API" alt="PyPI"></a>
36
36
  <a href="https://pypi.org/project/toDus-API/"><img src="https://img.shields.io/pypi/pyversions/toDus-API" alt="Python"></a>
37
- <a href="https://github.com/ElJoker63/toDus-API/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/ElJoker63/toDus-API/ci.yml?branch=main&label=tests" alt="Tests"></a>
38
- <a href="https://github.com/ElJoker63/toDus-API/actions/workflows/pypi-publish.yml"><img src="https://img.shields.io/github/actions/workflow/status/ElJoker63/toDus-API/pypi-publish.yml?branch=main&label=publish" alt="Publish"></a>
39
- <a href="https://github.com/ElJoker63/toDus-API/blob/main/LICENSE"><img src="https://img.shields.io/github/license/ElJoker63/toDus-API" alt="License"></a>
37
+ <a href="https://github.com/ElJoker63/toDus-API/actions/workflows/ci.yml"><img src="https://github.com/ElJoker63/toDus-API/actions/workflows/ci.yml/badge.svg?branch=main" alt="Tests"></a>
38
+ <a href="https://github.com/ElJoker63/toDus-API/actions/workflows/pypi-publish.yml"><img src="https://github.com/ElJoker63/toDus-API/actions/workflows/pypi-publish.yml/badge.svg?branch=main" alt="Publish"></a>
39
+ <a href="https://github.com/ElJoker63/toDus-API/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue" alt="License"></a>
40
40
  </p>
41
41
 
42
42
  <p><strong>Cliente Python para ToDus</strong> — la plataforma de mensajería instantánea cubana. Soporta chat privado, grupos MUC Light, archivos, imágenes, videos, stickers, botones interactivos y más.</p>
43
43
 
44
44
  <ul>
45
- <li><strong>Versión:</strong> 1.3.3</li>
45
+ <li><strong>Versión:</strong> 1.3.5</li>
46
46
  <li><strong>Python:</strong> >= 3.11</li>
47
47
  <li><strong>Autor:</strong> ElJoker63</li>
48
48
  <li><strong>Licencia:</strong> MIT</li>
@@ -18,7 +18,7 @@ from .errors import (
18
18
  from .util import normalize_phone, build_jid, generate_token, jwt_decode_payload, timestamp_ms, format_size
19
19
  from .parser import IncrementalParser, parse_tdack
20
20
 
21
- __version__ = "1.3.4"
21
+ __version__ = "1.3.5"
22
22
  __all__ = [
23
23
  "ToDusClient",
24
24
  "ToDusClient2",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes