./devel/ruby-concurrent-ruby, Modern concurrency tools for Ruby

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 1.3.4, Package name: ruby32-concurrent-ruby-1.3.4, Maintainer: pkgsrc-users

Modern concurrency tools including agents, futures, promises, thread pools,
actors, supervisors, and more.

Inspired by Erlang, Clojure, Go, JavaScript, actors, and classic concurrency
patterns.

The design goals of this gem are:

* Be an 'unopinionated' toolbox that provides useful utilities without
debating which is better or why
* Remain free of external gem dependencies
* Stay true to the spirit of the languages providing inspiration
* But implement in a way that makes sense for Ruby
* Keep the semantics as idiomatic Ruby as possible
* Support features that make sense in Ruby
* Exclude features that don't make sense in Ruby
* Be small, lean, and loosely coupled


Required to run:
[lang/ruby26-base]

Required to build:
[pkgtools/cwrappers]

Master sites:

Filesize: 341.5 KB

Version history: (Expand)


CVS history: (Expand)


   2024-12-08 17:36:53 by Takahiro Kambe | Files touched by this commit (3) | Package updated
Log message:
devel/ruby-concurrent-ruby: update to 1.3.4

1.2.3 (2024-01-16)

What's Changed
* Fix TimerTask :execution_interval docs by @freemanoid in #994
* Fix TimerTask docs to not refer to #execute as "blocking" by @bensheldon
  in #996
* Fix TimerTask example output by @bensheldon in #1003
* Fix broken CI due to rake-compiler error on Ruby < 2.6 by @mattbrictson in
  #1007
* Fix doc typo: yeild → yield by @mattbrictson in #1006
* Fix DaemonThreadFactory - reuse single Java thread factory by @obulkin in
  #1009
* Fix sporadic failures testing with JRuby by @headius in #1012
* Allow TimerSet to safely handle an executor raising RejectedExecutionError
  by @bensheldon in #999
* Use executor from arg in then_on/rescue_on/chain_on for Promises by
  @tgwizard in #1005
* Allow TimerTask to be initialized with a specified Executor by @bensheldon
  in #1000
* Create method ThreadPoolExecutor#active_count to expose the number of
  threads that are actively executing tasks by @bensheldon in #1002
* Drop dependency on mutex_m by @casperisfine in #1013
* Fix compile error on FreeBSD 14 by @janbiedermann in #1014
* Fix spurious return in Promises#wait_until_resolved by @eregon in #1016
* Remove AtomicReferenceMapBackend and CheapLockable by @eregon in #1018
* Add Ruby 3.3 in CI by @eregon in #1021
* docs: fix typo in throttle docs by @G-Rath in #1024
* docs: update promises grammar by @G-Rath in #1026
* Add TimerTask#interval_type option to configure interval calculation by
  @bensheldon in #997

New Contributors
* @freemanoid made their first contribution in #994
* @bensheldon made their first contribution in #996
* @mattbrictson made their first contribution in #1007
* @obulkin made their first contribution in #1009
* @headius made their first contribution in #1012
* @tgwizard made their first contribution in #1005
* @janbiedermann made their first contribution in #1014
* @G-Rath made their first contribution in #1024

1.3.0 (2024-05-30)

There was a packaging issue that resulted in a broken v1.3.0 gem having been
pushed to RubyGems.  The code corresponding to this tag is fine to use, but
there is no corresponding v1.3.0 gem as we had to yank it.  Please use
v1.3.1 instead, which is nothing more than v1.3.0 packaged correctly.

What's Changed
* Add Concurrent.usable_processor_count that is cgroups aware by
  @casperisfine in #1038
* Align Java Executor Service behavior for shuttingdown?, shutdown? by
  @bensheldon in #1042

New Contributors
* @dependabot made their first contribution in #1028
* @kkohrt made their first contribution in #1037

1.3.1 (2024-11-30)

This release is essentially v1.3.0, but with a properly packaged gem.  There
was an issue publishing v1.3.0 and that gem needed to be yanked to avoid
breaking downstream projects.  The v1.3.0 changelog is reproduced below.

1.3.2 (2024-06-07)

What's Changed
* Fix method name in CHANGELOG.md by @nertzy in #1049
* Remove dependency on win32ole by @Earlopain in #1051

New Contributors
* @nertzy made their first contribution in #1049
* @Earlopain made their first contribution in #1051

1.3.3 (2024-06-09)

What's Changed
* Improve speed for windows Get-CimInstance by @Earlopain in #1053

1.3.4 (2024-08-10)

What's Changed
* Update comment for JRuby variant of processor_count to reality by
  @meineerde in #1054
* Add Concurrent.cpu_requests that is cgroups aware. by @heka1024 in #1058
* Fix the doc of Concurrent.available_processor_count by @y-yagi in #1059
* Fix the return value of Concurrent.available_processor_count when
  cpu.cfs_quota_us is -1 by @y-yagi in #1060

New Contributors
* @heka1024 made their first contribution in #1058
* @y-yagi made their first contribution in #1059
   2023-02-11 10:37:45 by Takahiro Kambe | Files touched by this commit (3)
Log message:
devel/ruby-concurrent-ruby: downgrade to 1.1.10

Since ruby-concurrent-ruby11 dose not work well for providing
concurrent-rubyy 1.1.x gem for puppet, downgrade this package to 1.1.10.
   2023-01-25 14:38:40 by Takahiro Kambe | Files touched by this commit (3) | Package updated
Log message:
devel/ruby-concurrent-ruby: update to 1.2.0

1.2.0 (2023-01-23)

* (#975) Set the Ruby compatibility version at 2.3
* (#962) Fix ReentrantReadWriteLock to use the same granularity for locals
  as for Mutex it uses.
* (#983) Add FiberLocalVar
* (#934) concurrent-ruby now supports requiring individual classes (public
  classes listed in the docs), e.g., require 'concurrent/map'
* (#976) Let Promises.any_fulfilled_future take an Event
* Improve documentation of various classes
* (#972) Remove Rubinius-related code
   2022-08-11 14:51:13 by Takahiro Kambe | Files touched by this commit (2) | Package updated
Log message:
devel/ruby-concurrent-ruby: update to 1.1.10

pkgsrc change: remove one pkglint warning.

1.1.10 (2022-03-22)

* (#951) Set the Ruby compatibility version at 2.2

* (#939, #933) The caller_runs fallback policy no longer blocks reads from
  the job queue by worker threads

* (#938, #761, #652) You can now explicitly prune_pool a thread pool
  (Sylvain Joyeux)

* (#937, #757, #670) We switched the Yahoo stock API for demos to Alpha
  Vantage (Gustavo Caso)

* (#932, #931) We changed how SafeTaskExecutor handles local jump errors
  (Aaron Jensen)

* (#927) You can use keyword arguments in your initialize when using Async
  (Matt Larraz)

* (#926, #639) We removed timeout from TimerTask because it wasn't sound,
  and now it's a no-op with a warning (Jacob Atzen)

* (#919) If you double-lock a re-entrant read-write lock, we promote to
  locked for writing (zp yuan)

* (#915) monotonic_time now accepts an optional unit parameter, as Ruby's
  clock_gettime (Jean Boussier)
   2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016)
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes

Could not be committed due to merge conflict:
devel/py-traitlets/distinfo

The following distfiles were unfetchable (note: some may be only fetched
conditionally):

./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
   2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017)
Log message:
devel: Remove SHA1 hashes for distfiles
   2021-06-14 17:09:55 by Takahiro Kambe | Files touched by this commit (3) | Package updated
Log message:
devel/ruby-concurrent-ruby: update to 1.1.9

1.1.9 (2021-06-05)

* (#866) Child promise state not set to :pending immediately after #execute
  when parent has completed
* (#905, #872) Fix RubyNonConcurrentPriorityQueue#delete method
* (2df0337d) Make sure locks are not shared on shared when objects are
  dup/cloned
* (#900, #906, #796, #847, #911) Fix Concurrent::Set tread-safety issues on
  CRuby
* (#907) Add new ConcurrentMap backend for TruffleRuby
   2021-01-26 15:53:06 by Takahiro Kambe | Files touched by this commit (2) | Package updated
Log message:
devel/ruby-concurrent-ruby: update to 1.1.8

Release v1.1.8 (20 January 2021)

* (#885) Fix race condition in TVar for stale reads
* (#884) RubyThreadLocalVar: Do not iterate over hash which might conflict
  with new pair addition