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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/ext/extconf.rb +1 -1
- data/ext/io/event/selector/epoll.c +1 -1
- data/ext/io/event/selector/kqueue.c +1 -1
- data/ext/io/event/selector/uring.c +1 -1
- data/lib/io/event/version.rb +1 -1
- data/license.md +1 -0
- data/readme.md +21 -4
- data/releases.md +4 -0
- data.tar.gz.sig +0 -0
- metadata +3 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f6141a80c8923fb24a4073f61f45a2e2f8065e4f2b415108caa39229efe37d0b
|
|
4
|
+
data.tar.gz: 298a552f835530283020945d5005912263d0dc3042271fbc5eeb84d3f00b8bda
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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-
|
|
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.
|
data/lib/io/event/version.rb
CHANGED
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
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
|
+
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.
|
|
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
|