Skip to content

Commit e9a4d1b

Browse files
committed
Start work to HTTP 2.0 (using aws-crt as primary internals)
1 parent 704d073 commit e9a4d1b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+4319
-12858
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@ jobs:
3232
- windows-latest
3333
arch:
3434
- default
35-
include:
36-
- os: windows-latest
37-
version: '1'
38-
arch: x86
3935
exclude:
4036
- os: macOS-latest
4137
version: 'min' # no apple silicon support for Julia 1.6

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
<!-- ## [Unreleased] -->
99

10+
## [v2.0.0] - 2025-02-01
11+
### Changed
12+
13+
1014
## [v1.10.1] - 2023-11-28
1115
### Changed
1216
- Server errors are no longer serialized back to the client since this might leak sensitive

Project.toml

Lines changed: 13 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,36 @@
11
name = "HTTP"
22
uuid = "cd3eb016-35fb-5094-929b-558a96fad6f3"
33
authors = ["Jacob Quinn", "contributors: https://github.com/JuliaWeb/HTTP.jl/graphs/contributors"]
4-
version = "1.10.15"
4+
version = "2.0.0"
55

66
[deps]
77
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
88
CodecZlib = "944b1d66-785c-5afd-91f1-9de20f533193"
9-
ConcurrentUtilities = "f0e56b4a-5159-44fe-b623-3e5288b988bb"
109
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
11-
ExceptionUnwrapping = "460bff9d-24e4-43bc-9d9f-a8973cb893f4"
10+
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
11+
LibAwsCommon = "c6e421ba-b5f8-4792-a1c4-42948de3ed9d"
12+
LibAwsHTTPFork = "d3f1d20b-921e-4930-8491-471e0be3121a"
13+
LibAwsIO = "a5388770-19df-4151-b103-3d71de896ddf"
1214
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
13-
LoggingExtras = "e6f89c97-d47a-5376-807f-9c37f3926c36"
14-
MbedTLS = "739be429-bea8-5141-9913-cc70e7f3736d"
15-
NetworkOptions = "ca575930-c2e3-43a9-ace4-1e988b2c1908"
16-
OpenSSL = "4d8831e6-92b7-49fb-bdf8-b643e874388c"
15+
Mmap = "a63ad114-7e13-5084-954f-fe012c677804"
1716
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
1817
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
19-
SimpleBufferStream = "777ac1f9-54b0-4bf8-805c-2214025038e7"
2018
Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
2119
URIs = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4"
22-
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
2320

2421
[compat]
2522
CodecZlib = "0.7"
26-
ConcurrentUtilities = "2.4"
27-
ExceptionUnwrapping = "0.1"
28-
LoggingExtras = "0.4.9,1"
29-
MbedTLS = "0.6.8, 0.7, 1"
30-
OpenSSL = "1.3"
23+
JSON = "0.21.4, 1"
24+
LibAwsCommon = "1.3"
25+
LibAwsHTTPFork = "1.0.2"
26+
LibAwsIO = "1.2.0"
3127
PrecompileTools = "1.2.1"
32-
SimpleBufferStream = "1.1"
33-
URIs = "1.3"
34-
julia = "1.6"
28+
URIs = "1"
29+
julia = "1.10"
3530

3631
[extras]
37-
BufferedStreams = "e1450e63-4bb3-523b-b2a4-4ffa8c0fd77d"
38-
Deno_jll = "04572ae6-984a-583e-9378-9577a1c2574d"
39-
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
40-
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
4132
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
42-
NetworkOptions = "ca575930-c2e3-43a9-ace4-1e988b2c1908"
4333
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
44-
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
4534

4635
[targets]
47-
test = ["BufferedStreams", "Deno_jll", "Distributed", "InteractiveUtils", "JSON", "Test", "Unitful", "NetworkOptions"]
36+
test = ["JSON", "Test"]

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
66
URIs = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4"
77

88
[compat]
9-
Documenter = "0.27"
9+
Documenter = "1"

docs/examples/cors_server.jl

Lines changed: 0 additions & 152 deletions
This file was deleted.

docs/examples/readme_examples.jl

Lines changed: 0 additions & 72 deletions
This file was deleted.

0 commit comments

Comments
 (0)