forked from alibaba/async_simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
66 lines (62 loc) · 2.82 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
2023-8-17 Release Notes
* 1.2 Released
* Added a version number to libasync_simple.so in CMakeScripts.
* Added sharedMutex
* Added chore(bazel) async_simple_dependencies
* Added `dispatch(Executor*)` helper function to schedule the current
Lazy corotuine to another executor.
* Added a limit that we can only `co_await` a Lazy in a Lazy Function.
* Added an explicit requirement that the alignment of `T` in `Lazy<T>`
can't exceed `alignof(std::max_align_t)` (which 16 generally) due to
a language defect.
* Added lazy_local features so that the users can specify the LazyLocal
data across the Lazy Calling chain.
* Improved experimenting modules support.
* Improved cmake support for msvc
* Introduced xmake support for modules building.
* Optimized FutureAwaiter so that we can reduce the scheduling time when
we `co_await` a `async_simple::Future`. The semantics remains the same.
* Removed SimpleIOExecutor and SimpleExecutor from async_simple since they
are for testing only and we encourage people to use their own executors
for their own situations.
2023-4-23 Release Notes
* 1.1 Released
* SimpleExecutor will execute all the scheduled task before destructing
* `co_await` a lvalue Future is deprected now. We should move the future
explicitly before `co_await`.
* Use std::variant instead of union in Try
* Provided future<void> and promise<void>
* Added `value()` and `index()` interfaces to `CollectAnyResult`
* Added `future::then` interface
* Added `coro::Latch`
* Added `coro::Semaphore`
* Added Generator
* Added start_switch_fiber and finish_switch_fiber for uthread to enable address sanitizer
* Force RescheduleLazy to be allowed in DetachedCoroutine only
* Added C++20 modules support
* Added the second version of uthread::async
* Added Mutex benchmark
* Added SpinLock benchmark
* Added multiple core echo server example
* Added AsioCallbackAwaiter
* Added ppc64_le support for uthread
* Improved bazel support
* Added support for macos
* Added support for windows
* Added ubuntu and centos7 Dockerfile
* Fixed several compile failures
2022-11-11
* SimpleExecutor will execute all the scheduled task before destructing
* `co_await` a lvalue Future is deprected now. We should move the future
explicitly before `co_await`.
2022-10-31 Release Notes
* 1.0 Released
* Add conan support
* Add bazel support
* make uthread portable to linux/PPC, Darwin/X86 and Darwin/Aarch64
* Verified Windows Support
* Add FutureAwaiter
* Add option to disable unstable libaio
* Support dbg scripts for coroutines and document for debugging
* Enable to use coroutine components under std directly
* Add multiple core demo examples