concurrent-ruby-ext 1.1.5-x64-mingw32 → 1.1.9-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: afbedb848466bfe0c361fbe814c37599f69dba2c6f86fd774bd8eca8d913951a
4
- data.tar.gz: ce88b948ae523f46c361d0ea072d594a592b9d8748910da4e6b76ba52548baf2
3
+ metadata.gz: b2b6bae57a277838a5e78d8f61e9906112364c786f308b37226fee30ddd419ab
4
+ data.tar.gz: 764bcb106702406e38c7883618eeeb75ec68f65a4cc693455963d0ba6f0fc256
5
5
  SHA512:
6
- metadata.gz: 4bcdd2e360926ad29f55819f54a5991484e20954e193c1c8f697f5b8c66be0b2d9d592a40e8d08f868641e0057d186660c975c591da42aae202bb9219b3b51c1
7
- data.tar.gz: 58b6aef455deab70f3ccf6b5115b7e66b9287befa6e0081f35fcadc33da717735cf4232aa73f6663b7587ceb93532be72675b5425c92d19d110ad9682838efb8
6
+ metadata.gz: 1aa0a31d90de2cebd13be0b7ca4cb1a91808c5c7ace138abff4b8fcbfe0b68f4dbb22131961ff8246958af45858b23a19a958a7a871b60e04779b75b762bd9a4
7
+ data.tar.gz: e39d359b044a87d706ee2f333d6c34084172d2b46483394540521c2fadcaad348f4f275d5f9abbc78f514dfe71bbf21802bd3ed1097ac0599669f37e22d34289
data/CHANGELOG.md CHANGED
@@ -1,6 +1,56 @@
1
1
  ## Current
2
2
 
3
- ## Release v1.1.5, edge v0.5.0 (10 mar 2019)
3
+ ## Release v1.1.9 (5 Jun 2021)
4
+
5
+ concurrent-ruby:
6
+
7
+ * (#866) Child promise state not set to :pending immediately after #execute when parent has completed
8
+ * (#905, #872) Fix RubyNonConcurrentPriorityQueue#delete method
9
+ * (2df0337d) Make sure locks are not shared on shared when objects are dup/cloned
10
+ * (#900, #906, #796, #847, #911) Fix Concurrent::Set tread-safety issues on CRuby
11
+ * (#907) Add new ConcurrentMap backend for TruffleRuby
12
+
13
+ ## Release v1.1.8 (20 January 2021)
14
+
15
+ concurrent-ruby:
16
+
17
+ * (#885) Fix race condition in TVar for stale reads
18
+ * (#884) RubyThreadLocalVar: Do not iterate over hash which might conflict with new pair addition
19
+
20
+ ## Release v1.1.7 (6 August 2020)
21
+
22
+ concurrent-ruby:
23
+
24
+ * (#879) Consider falsy value on `Concurrent::Map#compute_if_absent` for fast non-blocking path
25
+ * (#876) Reset Async queue on forking, makes Async fork-safe
26
+ * (#856) Avoid running problematic code in RubyThreadLocalVar on MRI that occasionally results in segfault
27
+ * (#853) Introduce ThreadPoolExecutor without a Queue
28
+
29
+ ## Release v1.1.6, edge v0.6.0 (10 Feb 2020)
30
+
31
+ concurrent-ruby:
32
+
33
+ * (#841) Concurrent.disable_at_exit_handlers! is no longer needed and was deprecated.
34
+ * (#841) AbstractExecutorService#auto_terminate= was deprecated and has no effect.
35
+ Set :auto_terminate option instead when executor is initialized.
36
+
37
+ ## Release v1.1.6.pre1, edge v0.6.0.pre1 (26 Jan 2020)
38
+
39
+ concurrent-ruby:
40
+
41
+ * (#828) Allow to name executors, the name is also used to name their threads
42
+ * (#838) Implement #dup and #clone for structs
43
+ * (#821) Safer finalizers for thread local variables
44
+ * Documentation fixes
45
+ * (#814) Use Ruby's Etc.nprocessors if available
46
+ * (#812) Fix directory structure not to mess with packaging tools
47
+ * (#840) Fix termination of pools on JRuby
48
+
49
+ concurrent-ruby-edge:
50
+
51
+ * Add WrappingExecutor (#830)
52
+
53
+ ## Release v1.1.5, edge v0.5.0 (10 Mar 2019)
4
54
 
5
55
  concurrent-ruby:
6
56
 
@@ -1,23 +1,21 @@
1
- ```
2
1
  Copyright (c) Jerry D'Antonio -- released under the MIT license.
3
2
 
4
- http://www.opensource.org/licenses/mit-license.php
3
+ http://www.opensource.org/licenses/mit-license.php
5
4
 
6
- Permission is hereby granted, free of charge, to any person obtaining a copy
7
- of this software and associated documentation files (the "Software"), to deal
8
- in the Software without restriction, including without limitation the rights
9
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- copies of the Software, and to permit persons to whom the Software is
11
- furnished to do so, subject to the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be included in
14
- all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
- THE SOFTWARE.
23
- ```
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -105,9 +105,9 @@ We also have a [IRC (gitter)](https://gitter.im/ruby-concurrency/concurrent-ruby
105
105
  Collection classes that were originally part of the (deprecated) `thread_safe` gem:
106
106
 
107
107
  * [Array](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/Array.html) A thread-safe
108
- subclass of Ruby's standard [Array](http://ruby-doc.org/core-2.2.0/Array.html).
108
+ subclass of Ruby's standard [Array](http://ruby-doc.org/core/Array.html).
109
109
  * [Hash](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/Hash.html) A thread-safe
110
- subclass of Ruby's standard [Hash](http://ruby-doc.org/core-2.2.0/Hash.html).
110
+ subclass of Ruby's standard [Hash](http://ruby-doc.org/core/Hash.html).
111
111
  * [Set](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/Set.html) A thread-safe
112
112
  subclass of Ruby's standard [Set](http://ruby-doc.org/stdlib-2.4.0/libdoc/set/rdoc/Set.html).
113
113
  * [Map](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/Map.html) A hash-like object
@@ -122,7 +122,7 @@ Value objects inspired by other languages:
122
122
  immutable object representing an optional value, based on
123
123
  [Haskell Data.Maybe](https://hackage.haskell.org/package/base-4.2.0.1/docs/Data-Maybe.html).
124
124
 
125
- Structure classes derived from Ruby's [Struct](http://ruby-doc.org/core-2.2.0/Struct.html):
125
+ Structure classes derived from Ruby's [Struct](http://ruby-doc.org/core/Struct.html):
126
126
 
127
127
  * [ImmutableStruct](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/ImmutableStruct.html)
128
128
  Immutable struct where values are set at construction and cannot be changed later.
@@ -253,6 +253,9 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
253
253
  * [ErlangActor](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/ErlangActor.html)
254
254
  Actor implementation which precisely matches Erlang actor behaviour.
255
255
  Requires at least Ruby 2.1 otherwise it's not loaded.
256
+ * [WrappingExecutor](http://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent/WrappingExecutor.html)
257
+ A delegating executor which modifies each task before the task is given to
258
+ the target executor it delegates to.
256
259
 
257
260
  ## Supported Ruby versions
258
261
 
@@ -350,19 +353,43 @@ and load the appropriate C extensions.
350
353
  No gems should depend on `concurrent-ruby-ext`. Doing so will force C extensions on your users. The
351
354
  best practice is to depend on `concurrent-ruby` and let users to decide if they want C extensions.
352
355
 
356
+ ## Building the gem
357
+
358
+ ### Requirements
359
+
360
+ * Recent CRuby
361
+ * JRuby, `rbenv install jruby-9.2.17.0`
362
+ * Set env variable `CONCURRENT_JRUBY_HOME` to point to it, e.g. `/usr/local/opt/rbenv/versions/jruby-9.2.17.0`
363
+ * Install Docker, required for Windows builds
364
+
365
+ ### Publishing the Gem
366
+
367
+ * Update`version.rb`
368
+ * Update the CHANGELOG
369
+ * Update the Yard documentation
370
+ - Add the new version to `docs-source/signpost.md`. Needs to be done only if there are visible changes in the
371
+ documentation.
372
+ - Run `bundle exec rake yard` to update the master documentation and signpost.
373
+ - Run `bundle exec rake yard:<new-version>` to add or update the documentation of the new version.
374
+ * Commit (and push) the changes.
375
+ * Use `be rake release` to release the gem. It consists
376
+ of `['release:checks', 'release:build', 'release:test', 'release:publish']` steps. It will ask at the end before
377
+ publishing anything. Steps can also be executed individually.
378
+
353
379
  ## Maintainers
354
380
 
355
- * [Petr Chalupa](https://github.com/pitr-ch) (lead maintainer, point-of-contact)
356
- * [Jerry D'Antonio](https://github.com/jdantonio) (creator)
357
- * [Chris Seaton](https://github.com/chrisseaton)
381
+ * [Petr Chalupa](https://github.com/pitr-ch) Lead maintainer, point-of-contact.
382
+ * [Chris Seaton](https://github.com/chrisseaton)
383
+ If Petr is not available Chris can help or poke Petr to pay attention where it is needed.
358
384
 
359
385
  ### Special Thanks to
360
386
 
387
+ * [Jerry D'Antonio](https://github.com/jdantonio) for creating the gem
361
388
  * [Brian Durand](https://github.com/bdurand) for the `ref` gem
362
389
  * [Charles Oliver Nutter](https://github.com/headius) for the `atomic` and `thread_safe` gems
363
390
  * [thedarkone](https://github.com/thedarkone) for the `thread_safe` gem
364
391
 
365
- and to the past maintainers
392
+ to the past maintainers
366
393
 
367
394
  * [Michele Della Torre](https://github.com/mighe)
368
395
  * [Paweł Obrok](https://github.com/obrok)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: concurrent-ruby-ext
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.5
4
+ version: 1.1.9
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Jerry D'Antonio
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-03-11 00:00:00.000000000 Z
12
+ date: 2021-06-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: concurrent-ruby
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - '='
19
19
  - !ruby/object:Gem::Version
20
- version: 1.1.5
20
+ version: 1.1.9
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - '='
26
26
  - !ruby/object:Gem::Version
27
- version: 1.1.5
27
+ version: 1.1.9
28
28
  description: |2
29
29
  C extensions to optimize the concurrent-ruby gem when running under MRI.
30
30
  Please see http://concurrent-ruby.com for more information.
@@ -33,11 +33,11 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files:
35
35
  - README.md
36
- - LICENSE.md
36
+ - LICENSE.txt
37
37
  - CHANGELOG.md
38
38
  files:
39
39
  - CHANGELOG.md
40
- - LICENSE.md
40
+ - LICENSE.txt
41
41
  - README.md
42
42
  - ext/concurrent-ruby-ext/atomic_boolean.c
43
43
  - ext/concurrent-ruby-ext/atomic_boolean.h
@@ -48,11 +48,12 @@ files:
48
48
  - ext/concurrent-ruby-ext/extconf.rb
49
49
  - ext/concurrent-ruby-ext/rb_concurrent.c
50
50
  - ext/concurrent-ruby-ext/ruby_193_compatible.h
51
- - lib/concurrent/2.2/concurrent_ruby_ext.so
52
- - lib/concurrent/2.3/concurrent_ruby_ext.so
53
- - lib/concurrent/2.4/concurrent_ruby_ext.so
54
- - lib/concurrent/2.5/concurrent_ruby_ext.so
55
- - lib/concurrent/2.6/concurrent_ruby_ext.so
51
+ - lib/concurrent-ruby/concurrent/2.3/concurrent_ruby_ext.so
52
+ - lib/concurrent-ruby/concurrent/2.4/concurrent_ruby_ext.so
53
+ - lib/concurrent-ruby/concurrent/2.5/concurrent_ruby_ext.so
54
+ - lib/concurrent-ruby/concurrent/2.6/concurrent_ruby_ext.so
55
+ - lib/concurrent-ruby/concurrent/2.7/concurrent_ruby_ext.so
56
+ - lib/concurrent-ruby/concurrent/3.0/concurrent_ruby_ext.so
56
57
  homepage: http://www.concurrent-ruby.com
57
58
  licenses:
58
59
  - MIT
@@ -65,18 +66,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
65
66
  requirements:
66
67
  - - ">="
67
68
  - !ruby/object:Gem::Version
68
- version: '2.2'
69
+ version: '2.3'
69
70
  - - "<"
70
71
  - !ruby/object:Gem::Version
71
- version: 2.7.dev
72
+ version: 3.1.dev
72
73
  required_rubygems_version: !ruby/object:Gem::Requirement
73
74
  requirements:
74
75
  - - ">="
75
76
  - !ruby/object:Gem::Version
76
77
  version: '0'
77
78
  requirements: []
78
- rubyforge_project:
79
- rubygems_version: 2.7.8
79
+ rubygems_version: 3.2.3
80
80
  signing_key:
81
81
  specification_version: 4
82
82
  summary: C extensions to optimize concurrent-ruby under MRI.