isomorfeus-iodine 0.8.1 → 0.8.2
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
- data/CHANGELOG.md +20 -0
- data/README.md +782 -782
- data/examples/config.ru +3 -0
- data/examples/rack3.ru +12 -0
- data/ext/iodine_ext/extconf.rb +1 -0
- data/ext/iodine_ext/fio.c +5 -3
- data/ext/iodine_ext/http1_parser.h +1065 -103
- data/ext/iodine_ext/iodine_connection.c +10 -6
- data/ext/iodine_ext/iodine_http.c +23 -11
- data/ext/iodine_ext/websocket_parser.h +1 -0
- data/ext/iodine_ext/websockets.c +28 -11
- data/lib/iodine/version.rb +1 -1
- data/lib/rack/handler/iodine.rb +1 -1
- metadata +4 -4
- data/.travis.yml +0 -32
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 683a66bea1f56c95ab81d32adb645dc911901e69b585f5d66fb9019249c1e092
|
|
4
|
+
data.tar.gz: 9e95640a95119b87a40b79e690aea3c872b3512a5b6651cf0e09fef8e205d96a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 40ba64a06d69af1a851182fe60fbe0c2fdc9a2479d048855ee5bf174ac6cb36e4cdd72ab7d98e9a7367a02c4b527ab2ab86ab93e78fb1fc900b9a297336615cd
|
|
7
|
+
data.tar.gz: 54f6f64ecb733a2e4e75025097bbac77b0b20ba3d39684c0b487e87e7d42100814c6e4007e8703a50eda6429bacd53880028f8b34b82cb0029791a666acbfb60
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,26 @@ Please notice that this change log contains changes for upcoming releases as wel
|
|
|
6
6
|
|
|
7
7
|
## Changes:
|
|
8
8
|
|
|
9
|
+
#### Change log v.0.7.51 (2022-12-03)
|
|
10
|
+
|
|
11
|
+
**Fix**: Fixes CPU spin error caused by an uncaught integer overflow. Credit to Alexander Pavlenko (@AlexanderPavlenko) for opening issue #132.
|
|
12
|
+
|
|
13
|
+
#### Change log v.0.7.50 (2022-10-29)
|
|
14
|
+
|
|
15
|
+
**Fix**: Fixes some compatibility issues with Rack 3.0. Credit to @taku0 for opening issue #131.
|
|
16
|
+
|
|
17
|
+
**Fix**: Fixes compilation on Ruby 3.x - deprecation of `rc_cData`. Credit to Mohammad A. Ali (@oldmoe) for opening issue #128.
|
|
18
|
+
|
|
19
|
+
#### Change log v.0.7.49
|
|
20
|
+
|
|
21
|
+
**Fix**: Fixes an issue where named arguments for `subscribe` might not be properly recognized.
|
|
22
|
+
|
|
23
|
+
**Security**: Fixes an issue where a malformed WebSocket continuation frame might crash a worker process. Credit to @fabio for exposing this issue and opening issue #127.
|
|
24
|
+
|
|
25
|
+
#### Change log v.0.7.48 (2022-06-28)
|
|
26
|
+
|
|
27
|
+
**Fix**: Fixes an issue with `pong` WebSocket frames when a client sends a WebSocket `ping`. Credit to Lucas Kuan (@lucaskuan) for finding this issue and for PR #124.
|
|
28
|
+
|
|
9
29
|
#### Change log v.0.7.47 (2022-05-11)
|
|
10
30
|
|
|
11
31
|
**Fix**: Fixes an issue that causes `Rack::Lint` to complain about `SERVER_PORT` being an empty string. Credit to @adam12 (Adam Daniels) for PR #108 and issue #107.
|