httpx 0.10.2 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -5
  3. data/doc/release_notes/0_11_0.md +76 -0
  4. data/doc/release_notes/0_11_1.md +5 -0
  5. data/doc/release_notes/0_11_2.md +5 -0
  6. data/doc/release_notes/0_11_3.md +5 -0
  7. data/doc/release_notes/0_12_0.md +55 -0
  8. data/lib/httpx.rb +2 -1
  9. data/lib/httpx/adapters/datadog.rb +205 -0
  10. data/lib/httpx/adapters/faraday.rb +4 -8
  11. data/lib/httpx/adapters/webmock.rb +123 -0
  12. data/lib/httpx/altsvc.rb +1 -0
  13. data/lib/httpx/chainable.rb +1 -1
  14. data/lib/httpx/connection.rb +63 -15
  15. data/lib/httpx/connection/http1.rb +16 -5
  16. data/lib/httpx/connection/http2.rb +36 -29
  17. data/lib/httpx/domain_name.rb +1 -3
  18. data/lib/httpx/errors.rb +2 -0
  19. data/lib/httpx/headers.rb +1 -0
  20. data/lib/httpx/io.rb +16 -3
  21. data/lib/httpx/io/ssl.rb +7 -13
  22. data/lib/httpx/io/tcp.rb +9 -8
  23. data/lib/httpx/io/tls.rb +218 -0
  24. data/lib/httpx/io/tls/box.rb +365 -0
  25. data/lib/httpx/io/tls/context.rb +199 -0
  26. data/lib/httpx/io/tls/ffi.rb +390 -0
  27. data/lib/httpx/io/udp.rb +4 -3
  28. data/lib/httpx/parser/http1.rb +4 -4
  29. data/lib/httpx/plugins/aws_sdk_authentication.rb +81 -0
  30. data/lib/httpx/plugins/aws_sigv4.rb +218 -0
  31. data/lib/httpx/plugins/compression.rb +1 -1
  32. data/lib/httpx/plugins/compression/deflate.rb +2 -5
  33. data/lib/httpx/plugins/cookies/set_cookie_parser.rb +1 -1
  34. data/lib/httpx/plugins/expect.rb +33 -8
  35. data/lib/httpx/plugins/internal_telemetry.rb +93 -0
  36. data/lib/httpx/plugins/multipart.rb +42 -35
  37. data/lib/httpx/plugins/multipart/encoder.rb +110 -0
  38. data/lib/httpx/plugins/multipart/mime_type_detector.rb +64 -0
  39. data/lib/httpx/plugins/multipart/part.rb +34 -0
  40. data/lib/httpx/plugins/proxy.rb +1 -1
  41. data/lib/httpx/plugins/proxy/http.rb +1 -1
  42. data/lib/httpx/plugins/proxy/socks4.rb +8 -0
  43. data/lib/httpx/plugins/proxy/socks5.rb +11 -2
  44. data/lib/httpx/plugins/push_promise.rb +5 -4
  45. data/lib/httpx/plugins/retries.rb +1 -1
  46. data/lib/httpx/plugins/stream.rb +3 -5
  47. data/lib/httpx/pool.rb +0 -1
  48. data/lib/httpx/registry.rb +1 -7
  49. data/lib/httpx/request.rb +32 -12
  50. data/lib/httpx/resolver.rb +7 -4
  51. data/lib/httpx/resolver/https.rb +7 -13
  52. data/lib/httpx/resolver/native.rb +10 -6
  53. data/lib/httpx/resolver/system.rb +1 -1
  54. data/lib/httpx/response.rb +9 -2
  55. data/lib/httpx/selector.rb +6 -0
  56. data/lib/httpx/session.rb +40 -20
  57. data/lib/httpx/transcoder.rb +6 -4
  58. data/lib/httpx/transcoder/body.rb +3 -5
  59. data/lib/httpx/version.rb +1 -1
  60. data/sig/connection/http1.rbs +2 -2
  61. data/sig/connection/http2.rbs +8 -7
  62. data/sig/headers.rbs +3 -0
  63. data/sig/plugins/aws_sdk_authentication.rbs +17 -0
  64. data/sig/plugins/aws_sigv4.rbs +65 -0
  65. data/sig/plugins/multipart.rbs +27 -4
  66. data/sig/plugins/push_promise.rbs +1 -1
  67. data/sig/request.rbs +1 -1
  68. data/sig/resolver/https.rbs +2 -0
  69. data/sig/response.rbs +1 -1
  70. data/sig/session.rbs +1 -1
  71. data/sig/transcoder.rbs +2 -2
  72. data/sig/transcoder/body.rbs +2 -0
  73. data/sig/transcoder/form.rbs +7 -1
  74. data/sig/transcoder/json.rbs +3 -1
  75. metadata +50 -47
  76. data/sig/missing.rbs +0 -12
@@ -44,11 +44,9 @@ module HTTPX::Transcoder
44
44
  end
45
45
 
46
46
  def method_missing(meth, *args, &block)
47
- if @raw.respond_to?(meth)
48
- @raw.__send__(meth, *args, &block)
49
- else
50
- super
51
- end
47
+ return super unless @raw.respond_to?(meth)
48
+
49
+ @raw.__send__(meth, *args, &block)
52
50
  end
53
51
  end
54
52
 
data/lib/httpx/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HTTPX
4
- VERSION = "0.10.2"
4
+ VERSION = "0.12.0"
5
5
  end
@@ -31,7 +31,7 @@ module HTTPX
31
31
 
32
32
  def on_headers: (Hash[String, Array[String]] headers) -> void
33
33
 
34
- def on_trailers: (Array[String, String] headers) -> void
34
+ def on_trailers: (Hash[String, Array[String]] headers) -> void
35
35
 
36
36
  def on_data: (string chunk) -> void
37
37
 
@@ -51,7 +51,7 @@ module HTTPX
51
51
 
52
52
  def disable_pipelining: () -> void
53
53
 
54
- def set_request_headers: (Request) -> void
54
+ def set_protocol_headers: (Request) -> void
55
55
 
56
56
  def headline_uri: (Request) -> String
57
57
 
@@ -3,7 +3,7 @@ module HTTPX
3
3
  include Callbacks
4
4
  include Loggable
5
5
 
6
- attr_reader streams: Hash[HTTP2Next::Stream, Response]
6
+ attr_reader streams: Hash[Request, HTTP2Next::Stream]
7
7
  attr_reader pending: Array[Request]
8
8
 
9
9
  @options: Options
@@ -13,7 +13,7 @@ module HTTPX
13
13
  @pings: Array[String]
14
14
  @buffer: Buffer
15
15
 
16
- def interests: () -> io_interests
16
+ def interests: () -> io_interests?
17
17
 
18
18
  def close: () -> void
19
19
 
@@ -23,6 +23,8 @@ module HTTPX
23
23
 
24
24
  def <<: (String) -> void
25
25
 
26
+ def can_buffer_more_requests: () -> bool
27
+
26
28
  def send: (Request) -> void
27
29
 
28
30
  def consume: () -> void
@@ -41,7 +43,7 @@ module HTTPX
41
43
 
42
44
  def headline_uri: (Request) -> String
43
45
 
44
- def set_request_headers: (Request) -> void
46
+ def set_protocol_headers: (Request) -> void
45
47
 
46
48
  def handle: (Request request, HTTP2Next::Stream stream) -> void
47
49
 
@@ -53,12 +55,11 @@ module HTTPX
53
55
 
54
56
  def join_body: (HTTP2Next::Stream stream, Request request) -> void
55
57
 
58
+ def on_stream_headers: (HTTP2Next::Stream stream, Request request, Array[[String, String]] headers) -> void
56
59
 
57
- # def on_stream_headers: (HTTP2Next::Stream stream, Request request, Array[String, String] headers) -> void
58
-
59
- # def on_stream_data: (HTTP2Next::Stream stream, Request request, string data) -> void
60
+ def on_stream_data: (HTTP2Next::Stream stream, Request request, string data) -> void
60
61
 
61
- # def on_stream_close: (HTTP2Next::Stream stream, Request request, Symbol? error) -> void
62
+ def on_stream_close: (HTTP2Next::Stream stream, Request request, Symbol? error) -> void
62
63
 
63
64
  def on_frame: (string bytes) -> void
64
65
 
data/sig/headers.rbs CHANGED
@@ -25,6 +25,9 @@ module HTTPX
25
25
  def same_headers?: (untyped headers) -> bool
26
26
 
27
27
  def to_a: () -> Array[[headers_key, String]]
28
+ def to_hash: () -> Hash[headers_key, String]
29
+ alias to_h to_hash
30
+
28
31
  def inspect: () -> String
29
32
 
30
33
  private
@@ -0,0 +1,17 @@
1
+ module HTTPX
2
+ module Plugins
3
+ module AwsSdkAuthentication
4
+ class Credentials
5
+ include _SigV4Credentials
6
+ end
7
+
8
+ def self.load_dependencies: (singleton(Session)) -> void
9
+
10
+ def self.extra_options: (Options) -> (Options)
11
+
12
+ module InstanceMethods
13
+ def aws_sdk_authentication: (**untyped) -> instance
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,65 @@
1
+ module HTTPX
2
+ module Plugins
3
+
4
+ interface _SigV4Credentials
5
+ def username: () -> String
6
+ def password: () -> String
7
+ def security_token: () -> String?
8
+ end
9
+
10
+ module AWSSigV4
11
+
12
+ Credentials: _SigV4Credentials
13
+
14
+
15
+ class Signer
16
+
17
+ def sign!: (Request) -> void
18
+
19
+ private
20
+
21
+ def initialize: (
22
+ service: String,
23
+ region: String,
24
+ ?credentials: _SigV4Credentials,
25
+ ?username: String,
26
+ ?password: String,
27
+ ?security_token: String,
28
+ ?provider_prefix: String,
29
+ ?header_provider_field: String,
30
+ ?unsigned_headers: Array[String],
31
+ ?apply_checksum_header: bool,
32
+ ?algorithm: String
33
+ ) -> untyped
34
+
35
+
36
+ def sha256_hexdigest: (bodyIO value) -> String
37
+
38
+ def hmac: (String key, String value) -> String
39
+ def hexhmac: (String key, String value) -> String
40
+ end
41
+
42
+
43
+ interface _SigV4Options
44
+ def sigv4_signer: () -> Signer?
45
+ def sigv4_signer=: (Signer) -> Signer
46
+ def with_sigv4_signer: (Signer) -> instance
47
+ end
48
+
49
+ def self.extra_options: (Options) -> (Options & _SigV4Options)
50
+ def self.load_dependencies: (singleton(Session)) -> void
51
+
52
+ module InstanceMethods
53
+ def aws_sigv4_authentication: (**untyped) -> instance
54
+ end
55
+
56
+ module RequestMethods
57
+ def canonical_path: () -> String
58
+
59
+ def canonical_query: () -> String
60
+ end
61
+ end
62
+
63
+ type awsSigV4Session = Session & Plugins::AWSSigV4::InstanceMethods
64
+ end
65
+ end
@@ -3,18 +3,41 @@ module HTTPX
3
3
  module Multipart
4
4
  def self.load_dependencies: (singleton(Session)) -> void
5
5
  def self.configure: (*untyped) -> void
6
- def self?.encode: (untyped) -> Encoder
6
+ def self?.encode: (untyped) -> (Encoder | Transcoder::Form::Encoder)
7
+
8
+ type multipart_value = string | Pathname | File | _Reader
9
+
10
+ type record_multipart_value = multipart_value |
11
+ { content_type: String, filename: String, body: multipart_value } |
12
+ { content_type: String, body: multipart_value }
13
+
14
+ type multipart_nested_value = multipart_value | _ToAry[multipart_value] | _ToHash[string, multipart_value]
15
+
16
+ type multipart_input = Enumerable[[string, multipart_value], untyped]
7
17
 
8
18
  class Encoder
9
19
  include Transcoder::_Encoder
10
- include _ToS
11
20
  include _Reader
12
21
 
22
+ def content_type: () -> String
23
+
13
24
  private
14
25
 
15
- def initialize: (Hash[Symbol | string, HTTP::FormData::Part | string] multipart_data) -> untyped
26
+ def initialize: (Hash[Symbol | string, multipart_nested_value] multipart_data) -> untyped
27
+
28
+ def header_part: (string key, String content_type, String? filename) -> StringIO
29
+
30
+ def read_chunks: (String buffer, Integer? length) -> void
31
+
32
+ def read_from_part: (Integer? max_length) -> void
33
+ end
34
+
35
+ module Part
36
+ def self?.call: (multipart_nested_value) -> ([_Reader, String, String?] | [_Reader, String])
37
+ end
16
38
 
17
- def multipart?: (top) -> bool
39
+ module MimeTypeDetector
40
+ def self?.call: (IO file, ?String filename) -> String?
18
41
  end
19
42
  end
20
43
  end
@@ -11,7 +11,7 @@ module HTTPX
11
11
  module InstanceMethods
12
12
  private
13
13
 
14
- def promise_headers: () -> Hash[HTTP2Next::Stream, Request]
14
+ def promise_headers: () -> Hash[HTTP2Next::Stream, Request]
15
15
  def __on_promise_request: (Connection::HTTP2, HTTP2Next::Stream, headers_input) -> void
16
16
  def __on_promise_response: (Connection::HTTP2, HTTP2Next::Stream, headers_input) -> void
17
17
  end
data/sig/request.rbs CHANGED
@@ -37,7 +37,7 @@ module HTTPX
37
37
 
38
38
  def transition: (Symbol) -> void
39
39
 
40
- def expects?: () -> bool
40
+ def expects?: () -> boolish
41
41
 
42
42
  class Body
43
43
  def initialize: (Headers, Options) -> untyped
@@ -39,6 +39,8 @@ module HTTPX
39
39
  | (Connection) -> void
40
40
  | () -> void
41
41
 
42
+ def on_response: (Request, response) -> void
43
+
42
44
  def response: (Response) -> void
43
45
 
44
46
  def build_request: (String hostname, "A" | "AAAA") -> Request
data/sig/response.rbs CHANGED
@@ -27,7 +27,7 @@ module HTTPX
27
27
 
28
28
  private
29
29
 
30
- def initialize: (Request, _ToS, String, headers) -> untyped
30
+ def initialize: (Request, _ToS, String, headers?) -> untyped
31
31
  def no_data?: () -> bool
32
32
 
33
33
  class Body
data/sig/session.rbs CHANGED
@@ -29,7 +29,7 @@ module HTTPX
29
29
  | (?options?) -> untyped
30
30
 
31
31
  def pool: -> Pool
32
- # def on_response: (Request, response) -> void
32
+ def on_response: (Request, response) -> void
33
33
  def on_promise: (untyped, untyped) -> void
34
34
  def fetch_response: (Request, *untyped) -> response?
35
35
  def set_connection_callbacks: (Connection, Array[Connection], Options) -> void
data/sig/transcoder.rbs CHANGED
@@ -4,8 +4,8 @@ module HTTPX
4
4
  module Transcoder
5
5
  extend HTTPX::Registry[String, Class]
6
6
 
7
- def self.normalize_keys: (string | Symbol, top) { (string, top) -> void } -> void
8
- | (string | Symbol, top) { (string) -> void } -> void
7
+ def self.normalize_keys: (string | Symbol, top, ?Proc?) { (string, top) -> void } -> void
8
+ | (string | Symbol, top, ?Proc?) { (string) -> void } -> void
9
9
 
10
10
  interface _Encoder
11
11
  def bytesize: () -> Numeric
@@ -7,6 +7,8 @@ module HTTPX
7
7
 
8
8
  @raw: bodyIO
9
9
 
10
+ def content_type: () -> String
11
+
10
12
  private
11
13
 
12
14
  def initialize: (untyped body ) -> untyped
@@ -1,5 +1,9 @@
1
1
  module HTTPX::Transcoder
2
- type urlencoded_input = Enumerable[[string, string], untyped]
2
+ type form_value = string
3
+
4
+ type form_nested_value = form_value | _ToAry[form_value] | _ToHash[string, form_value]
5
+
6
+ type urlencoded_input = Enumerable[[string, form_nested_value], untyped]
3
7
 
4
8
  module Form
5
9
  def self?.encode: (urlencoded_input form) -> Encoder
@@ -8,6 +12,8 @@ module HTTPX::Transcoder
8
12
  include _Encoder
9
13
  include _ToS
10
14
 
15
+ def content_type: () -> String
16
+
11
17
  private
12
18
 
13
19
  def initialize: (urlencoded_input form) -> untyped
@@ -6,9 +6,11 @@ module HTTPX::Transcoder
6
6
  include _Encoder
7
7
  include _ToS
8
8
 
9
+ def content_type: () -> String
10
+
9
11
  private
10
12
 
11
- def initalize: (_ToJson json) -> untyped
13
+ def initialize: (_ToJson json) -> untyped
12
14
  end
13
15
  end
14
16
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: httpx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.2
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tiago Cardoso
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-12-10 00:00:00.000000000 Z
11
+ date: 2021-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http-2-next
@@ -38,26 +38,6 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- - !ruby/object:Gem::Dependency
42
- name: http-form_data
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - ">="
46
- - !ruby/object:Gem::Version
47
- version: 2.0.0
48
- - - "<"
49
- - !ruby/object:Gem::Version
50
- version: '3'
51
- type: :development
52
- prerelease: false
53
- version_requirements: !ruby/object:Gem::Requirement
54
- requirements:
55
- - - ">="
56
- - !ruby/object:Gem::Version
57
- version: 2.0.0
58
- - - "<"
59
- - !ruby/object:Gem::Version
60
- version: '3'
61
41
  description: A client library for making HTTP requests from Ruby.
62
42
  email:
63
43
  - cardoso_tiago@hotmail.com
@@ -67,35 +47,40 @@ extra_rdoc_files:
67
47
  - LICENSE.txt
68
48
  - README.md
69
49
  - doc/release_notes/0_0_1.md
70
- - doc/release_notes/0_1_0.md
71
- - doc/release_notes/0_0_5.md
50
+ - doc/release_notes/0_0_2.md
51
+ - doc/release_notes/0_0_3.md
72
52
  - doc/release_notes/0_0_4.md
73
- - doc/release_notes/0_6_5.md
74
- - doc/release_notes/0_6_1.md
75
- - doc/release_notes/0_7_0.md
76
- - doc/release_notes/0_6_0.md
77
- - doc/release_notes/0_10_2.md
78
- - doc/release_notes/0_8_2.md
79
- - doc/release_notes/0_6_4.md
80
- - doc/release_notes/0_9_0.md
81
- - doc/release_notes/0_6_3.md
53
+ - doc/release_notes/0_0_5.md
54
+ - doc/release_notes/0_10_0.md
82
55
  - doc/release_notes/0_10_1.md
83
- - doc/release_notes/0_8_1.md
84
- - doc/release_notes/0_5_0.md
85
- - doc/release_notes/0_6_7.md
56
+ - doc/release_notes/0_10_2.md
57
+ - doc/release_notes/0_11_0.md
58
+ - doc/release_notes/0_11_1.md
59
+ - doc/release_notes/0_11_2.md
60
+ - doc/release_notes/0_11_3.md
61
+ - doc/release_notes/0_12_0.md
62
+ - doc/release_notes/0_1_0.md
63
+ - doc/release_notes/0_2_0.md
64
+ - doc/release_notes/0_2_1.md
65
+ - doc/release_notes/0_3_0.md
66
+ - doc/release_notes/0_3_1.md
67
+ - doc/release_notes/0_4_0.md
86
68
  - doc/release_notes/0_4_1.md
69
+ - doc/release_notes/0_5_0.md
87
70
  - doc/release_notes/0_5_1.md
88
- - doc/release_notes/0_6_6.md
89
- - doc/release_notes/0_4_0.md
71
+ - doc/release_notes/0_6_0.md
72
+ - doc/release_notes/0_6_1.md
90
73
  - doc/release_notes/0_6_2.md
91
- - doc/release_notes/0_10_0.md
74
+ - doc/release_notes/0_6_3.md
75
+ - doc/release_notes/0_6_4.md
76
+ - doc/release_notes/0_6_5.md
77
+ - doc/release_notes/0_6_6.md
78
+ - doc/release_notes/0_6_7.md
79
+ - doc/release_notes/0_7_0.md
92
80
  - doc/release_notes/0_8_0.md
93
- - doc/release_notes/0_3_0.md
94
- - doc/release_notes/0_2_1.md
95
- - doc/release_notes/0_0_3.md
96
- - doc/release_notes/0_0_2.md
97
- - doc/release_notes/0_3_1.md
98
- - doc/release_notes/0_2_0.md
81
+ - doc/release_notes/0_8_1.md
82
+ - doc/release_notes/0_8_2.md
83
+ - doc/release_notes/0_9_0.md
99
84
  files:
100
85
  - LICENSE.txt
101
86
  - README.md
@@ -107,6 +92,11 @@ files:
107
92
  - doc/release_notes/0_10_0.md
108
93
  - doc/release_notes/0_10_1.md
109
94
  - doc/release_notes/0_10_2.md
95
+ - doc/release_notes/0_11_0.md
96
+ - doc/release_notes/0_11_1.md
97
+ - doc/release_notes/0_11_2.md
98
+ - doc/release_notes/0_11_3.md
99
+ - doc/release_notes/0_12_0.md
110
100
  - doc/release_notes/0_1_0.md
111
101
  - doc/release_notes/0_2_0.md
112
102
  - doc/release_notes/0_2_1.md
@@ -130,7 +120,9 @@ files:
130
120
  - doc/release_notes/0_8_2.md
131
121
  - doc/release_notes/0_9_0.md
132
122
  - lib/httpx.rb
123
+ - lib/httpx/adapters/datadog.rb
133
124
  - lib/httpx/adapters/faraday.rb
125
+ - lib/httpx/adapters/webmock.rb
134
126
  - lib/httpx/altsvc.rb
135
127
  - lib/httpx/buffer.rb
136
128
  - lib/httpx/callbacks.rb
@@ -145,12 +137,18 @@ files:
145
137
  - lib/httpx/io.rb
146
138
  - lib/httpx/io/ssl.rb
147
139
  - lib/httpx/io/tcp.rb
140
+ - lib/httpx/io/tls.rb
141
+ - lib/httpx/io/tls/box.rb
142
+ - lib/httpx/io/tls/context.rb
143
+ - lib/httpx/io/tls/ffi.rb
148
144
  - lib/httpx/io/udp.rb
149
145
  - lib/httpx/io/unix.rb
150
146
  - lib/httpx/loggable.rb
151
147
  - lib/httpx/options.rb
152
148
  - lib/httpx/parser/http1.rb
153
149
  - lib/httpx/plugins/authentication.rb
150
+ - lib/httpx/plugins/aws_sdk_authentication.rb
151
+ - lib/httpx/plugins/aws_sigv4.rb
154
152
  - lib/httpx/plugins/basic_authentication.rb
155
153
  - lib/httpx/plugins/compression.rb
156
154
  - lib/httpx/plugins/compression/brotli.rb
@@ -164,7 +162,11 @@ files:
164
162
  - lib/httpx/plugins/expect.rb
165
163
  - lib/httpx/plugins/follow_redirects.rb
166
164
  - lib/httpx/plugins/h2c.rb
165
+ - lib/httpx/plugins/internal_telemetry.rb
167
166
  - lib/httpx/plugins/multipart.rb
167
+ - lib/httpx/plugins/multipart/encoder.rb
168
+ - lib/httpx/plugins/multipart/mime_type_detector.rb
169
+ - lib/httpx/plugins/multipart/part.rb
168
170
  - lib/httpx/plugins/persistent.rb
169
171
  - lib/httpx/plugins/proxy.rb
170
172
  - lib/httpx/plugins/proxy/http.rb
@@ -205,10 +207,11 @@ files:
205
207
  - sig/headers.rbs
206
208
  - sig/httpx.rbs
207
209
  - sig/loggable.rbs
208
- - sig/missing.rbs
209
210
  - sig/options.rbs
210
211
  - sig/parser/http1.rbs
211
212
  - sig/plugins/authentication.rbs
213
+ - sig/plugins/aws_sdk_authentication.rbs
214
+ - sig/plugins/aws_sigv4.rbs
212
215
  - sig/plugins/basic_authentication.rbs
213
216
  - sig/plugins/compression.rbs
214
217
  - sig/plugins/compression/brotli.rbs
@@ -272,7 +275,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
272
275
  - !ruby/object:Gem::Version
273
276
  version: '0'
274
277
  requirements: []
275
- rubygems_version: 3.1.4
278
+ rubygems_version: 3.2.3
276
279
  signing_key:
277
280
  specification_version: 4
278
281
  summary: HTTPX, to the future, and beyond