Releases: northpowered/temporal-boost
Releases · northpowered/temporal-boost
v1.2.0
What's Changed
- Update pydantic converter by @northpowered in #31
Updated pydantic converter for pydantic V2, like SDK v.1.10.0 for backward compability for SDK < v.1.10.0
Support of Pydantic v1 dropped
Full Changelog: v1.1.0...v1.2.0
v1.1.0
What's Changed
- Removed robyn dependencyby @northpowered in #28
- Add Windows run all by @pylavaigun in #26
- Some improvements by @dmastapkovich in #29
- Security updates
Fixed:
#27 - Installation fail on Python3.13
#24 - Troubles with run all
CLI method
New Contributors
- @pylavaigun made their first contribution in #26
- @dmastapkovich made their first contribution in #29
Full Changelog: v1.0.5...v1.1.0
Fix: imports
v1.0.5 Bump version
Added py.typed (fx)
- Added py.typed for next releases
Full Changelog: v1.0.3...v1.0.4
v1.0.3
Added add_async_runtime
method for appending corutines, wrapped in asyncio.run()
Example:
class TestAsyncRuntime:
"""
Class must implement `run` method
"""
async def _test_async_runtime(self):
while True:
print(random.random())
await asyncio.sleep(1)
def run(self):
asyncio.run(self._test_async_runtime())
app.add_async_runtime("test_async", runtime=TestAsyncRuntime())
v1.0.2
v1.0.2
- Fix ASGI worker startup
- Rename
internal
worker tointernal_boost
v1.0.1
Fix asyncio executor for Trio
Full Changelog: v1.0.0...v1.0.1
v1.0.0
v1.0.0 Major release
Documentation
https://northpowered.github.io/temporal-boost/
Breaking changes
- Worker name
internal
is now prohibited and uses for system purposes
What's Changed
- Temporal auto documentation with internal worker by @northpowered in #20
- Trio migration by @northpowered in #22
- Documentation on gh pages by @northpowered in #23
- Temporal SDK dependency fix by @northpowered
- Repository refactoring by @northpowered
- App examples by @northpowered
Full Changelog: v0.2.0...v1.0.0
v0.2.0
v0.1.2
What's Changed
- Aiohttp integration by @northpowered in #16
- Bump Temporal SDK up to 1.4.0 by @northpowered in #17
- ASGI workers by @northpowered in #18