Skip to content

Releases: northpowered/temporal-boost

v1.2.0

20 Feb 13:17
86c8e66
Compare
Choose a tag to compare

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

17 Feb 15:14
Compare
Choose a tag to compare

What's Changed

Fixed:

#27 - Installation fail on Python3.13
#24 - Troubles with run all CLI method

New Contributors

Full Changelog: v1.0.5...v1.1.0

Fix: imports

12 Feb 09:54
f1d30fc
Compare
Choose a tag to compare
v1.0.5

Bump version

Added py.typed (fx)

31 Jan 14:36
d7353b2
Compare
Choose a tag to compare
  • Added py.typed for next releases

Full Changelog: v1.0.3...v1.0.4

v1.0.3

14 Nov 07:33
338f46c
Compare
Choose a tag to compare

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

02 Sep 07:54
86c0a69
Compare
Choose a tag to compare

v1.0.2

  • Fix ASGI worker startup
  • Rename internal worker to internal_boost

v1.0.1

16 Aug 11:24
0e754fa
Compare
Choose a tag to compare

Fix asyncio executor for Trio

Full Changelog: v1.0.0...v1.0.1

v1.0.0

13 Aug 08:14
14dcbff
Compare
Choose a tag to compare

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

Full Changelog: v0.2.0...v1.0.0

v0.2.0

18 Mar 06:56
2937a1e
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.2...v0.2.0

v0.1.2

26 Feb 17:36
79ff1b1
Compare
Choose a tag to compare

What's Changed