2024-04-07 16:39:34 by Takahiro Kambe | Files touched by this commit (2) | |
Log message:
devel/ruby-async: update to 2.10.1
2.10.0 (2024-03-27)
* Introduce Async::Task#defer_stop by @ioquatix in #310
2.10.1 (2024-03-27)
* Raise stop directly in #defer_stop. by @ioquatix in #311
|
2024-03-05 14:21:30 by Takahiro Kambe | Files touched by this commit (3) | |
Log message:
devel/ruby-async: update to 2.9.0
2.9.0 (2024-03-05)
What's Changed
* Introduce Scheduler#load and Async::Idler for load shedding and
saturation. (#309)
|
2024-02-24 15:10:46 by Takahiro Kambe | Files touched by this commit (2) | |
Log message:
devel/ruby-async: update to 2.8.2
2.8.2 (2024-02-24)
What's Changed
* Fix compatibility with quoting change. by @ioquatix in #307
* Better handling of interrupts during stop/terminate. by @ioquatix in #308
|
2024-02-03 16:07:58 by Takahiro Kambe | Files touched by this commit (3) | |
Log message:
devel/ruby-async: update to 2.8.1
2.7.0 (2024-01-02)
What's Changed
* Try testing on Ruby 3.3. by @ioquatix in #294
* Add support for IO#timeout in io_read, io_write and io_wait. by @ioquatix
in #296
2.8.0 (2024-01-03)
What's Changed
* Allow Interrupt to retry the run loop after issuing #stop. by @ioquatix in
#297
* Add write timeout test. by @ioquatix in #298
2.8.1 (2024-02-01)
What's Changed
* Don't enable io_write hook on Ruby < 3.3.1 as it's buggy. by @ioquatix in
#303
|
2024-01-03 16:55:57 by Takahiro Kambe | Files touched by this commit (1) |
Log message:
devel/ruby-async: remove extra RUBY_VERSIONS_ACCEPTED
|
2023-11-11 10:57:32 by Takahiro Kambe | Files touched by this commit (2) | |
Log message:
devel/ruby-async: update to 2.6.5
2.6.5 (2023-10-29)
* Guide: ensure url exists in block (#278)
* Improved documentation.
* Remove duplicate attr :annotation.
|
2023-08-26 15:20:08 by Takahiro Kambe | Files touched by this commit (2) | |
Log message:
devel/ruby-async: update to 2.6.4
2.6.4 (2023-08-25)
* If a task returns an exception value, do not raise it in #wait. (#270)
* Minor improvement to test performance.
* Test multiple process waits. (#273)
* Failing timeout while getting from stdin. (#266)
* Fix handling of TimeoutError in io_wait. (#274)
* Add test for blocking IO#gets in task. (#267)
|
2023-07-30 05:51:32 by Takahiro Kambe | Files touched by this commit (3) | |
Log message:
devel/ruby-async: update to 2.6.3
2.6.3 (2023-07-28)
* Documentation improvements. (#248)
* Modernize gem. (#249)
* Extended documentation. (#250)
- Consistent usage of reactor/event loop terminology.
- Show how to use `ensure` with barrier.
- Expanded documentation / questions / answers.
- Add best practices.
* Improve readme.
* Add code of conduct.
* Replace 3.times do with 1.upto(3) do.
* Fix guide lines, fixes #251.
* Fix Markdown syntax highlighting marker (#252)
* Guide: ensure barrier is in scope (#253)
- This change avoids a NoMethodError on the barrier local variable. And
also a LoadError, with the Async::Barrier constant.
* Follow-up barrier in scope docs fix (#254)
- This makes the same change as #253 but in this file.
* Don't run scheduler when there is a pending exception. (#262)
* Ensure the scheduler is cleaned up on exit.
* Better handling of interrupted flag. (#264)
|
2023-06-17 15:27:33 by Takahiro Kambe | Files touched by this commit (2) | |
Log message:
devel/ruby-async: update to 2.6.2
2.6.2 (2023-06-13)
What's Changed
* Don't allow event loop to be interrupted at any time. by @ioquatix in #223
|
2023-06-09 15:43:54 by Takahiro Kambe | Files touched by this commit (2) | |
Log message:
devel/ruby-async: update to 2.6.1
2.6.0 (2023-06-07)
What's Changed
* Fix trasient typo; make general syntax and punctuation edits to readme by
@ColinDKelley in #235
* Better error handling when scheduler is closed. by @ioquatix in #240
* Delegate to Fiber#annotate where possible. by @ioquatix in #241
* Fix handling of stop stopping the stopping task. by @ioquatix in #242
* Strip device suffix before resolving hostname. by @ioquatix in #243
New Contributors
* @ColinDKelley made their first contribution in #235
2.6.1 (2023-06-09)
What's Changed
* Ensure transient tasks are correctly terminated. by @ioquatix in #245
|