io-event 1.14.4 → 1.14.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e9427c8ecb6a9bd50366bb9e83324a7777421b00e7e286d58579850d19c8cb70
4
- data.tar.gz: a22a8091b388a3f737501f7048d743d898cd4e271c0cfef79e7d4003ebff38bb
3
+ metadata.gz: f6141a80c8923fb24a4073f61f45a2e2f8065e4f2b415108caa39229efe37d0b
4
+ data.tar.gz: 298a552f835530283020945d5005912263d0dc3042271fbc5eeb84d3f00b8bda
5
5
  SHA512:
6
- metadata.gz: a929a416fd1ae9f790102275d571e637543cf3dd5f1520cb92032d2b7c0974774d557890a13631eac2f40d8257a5b75f5da0fd4bcce0ac96197ad824669ef941
7
- data.tar.gz: 4d9ff031fb26b596a3e654b7525c9f6bf302006cb424c904dcf2045f4861bcd7158cebb3096b2739a76d5dd4ec2a4466dbe0b2f395aa675ef8c165aad3896f8a
6
+ metadata.gz: 64566ccf2e42e38dde477984ae4c511d2c673b1869e266f49ecda467ddcccef28167a345dcca11126e05e0345ebe58b550981e1c135ca982a8ad7b56d5748418
7
+ data.tar.gz: c56c85168138319c4c527843484bfbbd7a3b685e72bf546aa32e6c01d6476ccc32e3f073aa1062d8699e916eba1d78de7fe263caff00db376c522c220ddc1aa1
checksums.yaml.gz.sig CHANGED
Binary file
data/ext/extconf.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  # Released under the MIT License.
5
- # Copyright, 2021-2025, by Samuel Williams.
5
+ # Copyright, 2021-2026, by Samuel Williams.
6
6
  # Copyright, 2023, by Math Ieu.
7
7
  # Copyright, 2025, by Stanislav (Stas) Katkov.
8
8
  # Copyright, 2026, by Stan Hu.
@@ -147,7 +147,7 @@ void IO_Event_Selector_EPoll_Type_free(void *_selector)
147
147
 
148
148
  IO_Event_Array_free(&selector->descriptors);
149
149
 
150
- free(selector);
150
+ xfree(selector);
151
151
  }
152
152
 
153
153
  static
@@ -146,7 +146,7 @@ void IO_Event_Selector_KQueue_Type_free(void *_selector)
146
146
 
147
147
  IO_Event_Array_free(&selector->descriptors);
148
148
 
149
- free(selector);
149
+ xfree(selector);
150
150
  }
151
151
 
152
152
  static
@@ -116,7 +116,7 @@ void IO_Event_Selector_URing_Type_free(void *_selector)
116
116
 
117
117
  IO_Event_Array_free(&selector->completions);
118
118
 
119
- free(selector);
119
+ xfree(selector);
120
120
  }
121
121
 
122
122
  static
@@ -7,6 +7,6 @@
7
7
  class IO
8
8
  # @namespace
9
9
  module Event
10
- VERSION = "1.14.4"
10
+ VERSION = "1.14.5"
11
11
  end
12
12
  end
data/license.md CHANGED
@@ -15,6 +15,7 @@ Copyright, 2025, by Stanislav (Stas) Katkov.
15
15
  Copyright, 2025, by Luke Gruber.
16
16
  Copyright, 2026, by William T. Nelson.
17
17
  Copyright, 2026, by Stan Hu.
18
+ Copyright, 2026, by John Hawthorn.
18
19
 
19
20
  Permission is hereby granted, free of charge, to any person obtaining a copy
20
21
  of this software and associated documentation files (the "Software"), to deal
data/readme.md CHANGED
@@ -18,6 +18,10 @@ Please see the [project documentation](https://socketry.github.io/io-event/) for
18
18
 
19
19
  Please see the [project releases](https://socketry.github.io/io-event/releases/index) for all releases.
20
20
 
21
+ ### v1.14.4
22
+
23
+ - Allow `epoll_pwait2` to be disabled via `--disable-epoll_pwait2`.
24
+
21
25
  ### v1.14.3
22
26
 
23
27
  - Fix several implementation bugs that could cause deadlocks on blocking writes.
@@ -55,10 +59,6 @@ Please see the [project releases](https://socketry.github.io/io-event/releases/i
55
59
 
56
60
  - Detecting fibers that are stalling the event loop.
57
61
 
58
- ### v1.7.5
59
-
60
- - Fix `process_wait` race condition on EPoll that could cause a hang.
61
-
62
62
  ## Contributing
63
63
 
64
64
  We welcome contributions to this project.
@@ -69,6 +69,23 @@ We welcome contributions to this project.
69
69
  4. Push to the branch (`git push origin my-new-feature`).
70
70
  5. Create new Pull Request.
71
71
 
72
+ ### Running Tests
73
+
74
+ To run the test suite:
75
+
76
+ ``` shell
77
+ bundle exec bake build
78
+ bundle exec sus
79
+ ```
80
+
81
+ ### Making Releases
82
+
83
+ To make a new release:
84
+
85
+ ``` shell
86
+ bundle exec bake gem:release:patch # or minor or major
87
+ ```
88
+
72
89
  ### Developer Certificate of Origin
73
90
 
74
91
  In order to protect users of this project, we require all contributors to comply with the [Developer Certificate of Origin](https://developercertificate.org/). This ensures that all contributions are properly licensed and attributed.
data/releases.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Releases
2
2
 
3
+ ## v1.14.4
4
+
5
+ - Allow `epoll_pwait2` to be disabled via `--disable-epoll_pwait2`.
6
+
3
7
  ## v1.14.3
4
8
 
5
9
  - Fix several implementation bugs that could cause deadlocks on blocking writes.
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: io-event
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.4
4
+ version: 1.14.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
@@ -14,6 +14,7 @@ authors:
14
14
  - Alex Matchneer
15
15
  - Anthony Ross
16
16
  - Delton Ding
17
+ - John Hawthorn
17
18
  - Luke Gruber
18
19
  - Pavel Rosický
19
20
  - Stan Hu
@@ -119,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
119
120
  - !ruby/object:Gem::Version
120
121
  version: '0'
121
122
  requirements: []
122
- rubygems_version: 4.0.3
123
+ rubygems_version: 4.0.6
123
124
  specification_version: 4
124
125
  summary: An event loop.
125
126
  test_files: []
metadata.gz.sig CHANGED
Binary file