Skip to content

Commit 0afeb69

Browse files
authored
Upgrade uWebSockets to v20.75.0 (#653)
Signed-off-by: Juan Cruz Viotti <jv@jviotti.com>
1 parent 61ce0ba commit 0afeb69

File tree

7 files changed

+53
-19
lines changed

7 files changed

+53
-19
lines changed

DEPENDENCIES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
vendorpull https://github.com/sourcemeta/vendorpull 1dcbac42809cf87cb5b045106b863e17ad84ba02
2-
uwebsockets https://github.com/uNetworking/uWebSockets v20.74.0
2+
uwebsockets https://github.com/uNetworking/uWebSockets v20.75.0
33
core https://github.com/sourcemeta/core 2a909fc97fae254a7eabc44a2ad20dc864491d92
44
blaze https://github.com/sourcemeta/blaze 61f8cf9cd33e8e300942bbcecff8e8a5d3eb259d
55
jsonbinpack https://github.com/sourcemeta/jsonbinpack c9038f1ca016890cf0dc6929e668b77784f91332

test/cli/index/common/duplicate-id.sh

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,21 @@ EOF
4242
"$1" "$TMP/one.json" "$TMP/output" 2> "$TMP/output.txt" && CODE="$?" || CODE="$?"
4343
test "$CODE" = "1" || exit 1
4444

45-
cat << EOF > "$TMP/expected.txt"
45+
cat << EOF > "$TMP/expected_ab.txt"
4646
Writing output to: $(realpath "$TMP")/output
4747
Using configuration: $(realpath "$TMP")/one.json
4848
Detecting: $(realpath "$TMP")/schemas/a.json (#1)
4949
Detecting: $(realpath "$TMP")/schemas/b.json (#2)
5050
unexpected error: Cannot register the same identifier twice
5151
EOF
5252

53-
diff "$TMP/output.txt" "$TMP/expected.txt"
53+
cat << EOF > "$TMP/expected_ba.txt"
54+
Writing output to: $(realpath "$TMP")/output
55+
Using configuration: $(realpath "$TMP")/one.json
56+
Detecting: $(realpath "$TMP")/schemas/b.json (#1)
57+
Detecting: $(realpath "$TMP")/schemas/a.json (#2)
58+
unexpected error: Cannot register the same identifier twice
59+
EOF
60+
61+
diff "$TMP/output.txt" "$TMP/expected_ab.txt" || \
62+
diff "$TMP/output.txt" "$TMP/expected_ba.txt"

vendor/uwebsockets/src/ChunkedEncoding.h

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/uwebsockets/src/HttpContext.h

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/uwebsockets/src/HttpResponse.h

Lines changed: 6 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/uwebsockets/src/PerMessageDeflate.h

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/uwebsockets/src/WebSocketProtocol.h

Lines changed: 25 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)