wreq-rb 0.3.0-aarch64-linux → 0.3.2-aarch64-linux
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/README.md +6 -6
- data/lib/wreq-rb/version.rb +1 -1
- data/lib/wreq_rb/2.7/wreq_rb.so +0 -0
- data/lib/wreq_rb/3.3/wreq_rb.so +0 -0
- data/lib/wreq_rb/3.4/wreq_rb.so +0 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8779baaef4ce3c9c654e0fc6a8147469aec9d6ca5cec2e605c6ef3405b9aa55e
|
|
4
|
+
data.tar.gz: c7dcc1baa866f78022622ddb3899c464120c55273d1954cf75fad1977d6aeb42
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a3062c10d2ae22013c5cba96fa05c073f7783f147840de73235ab158088af611d9686d4aef2c01f650422e5fc8632ff43d46ca13c2c0490c601f430633a2cd21
|
|
7
|
+
data.tar.gz: 24c82f2c1fdf4958fe7504f8a02e89c223fa2075436c44915608e5a71455a3e2975902505d47a78a5b62b20df65b8150c88234e80cee39b74830024671d48e69
|
data/README.md
CHANGED
|
@@ -119,10 +119,9 @@ Pass an options hash as the second argument to any HTTP method:
|
|
|
119
119
|
|
|
120
120
|
## Browser Emulation
|
|
121
121
|
|
|
122
|
-
wreq-rb emulates real browser TLS fingerprints, HTTP/2 settings, and headers by default. **Chrome
|
|
122
|
+
wreq-rb emulates real browser TLS fingerprints, HTTP/2 settings, and headers by default. **The lastest supported Chrome is used when no emulation is specified.**
|
|
123
123
|
|
|
124
124
|
```ruby
|
|
125
|
-
# Default: Chrome 143 emulation (automatic)
|
|
126
125
|
resp = Wreq.get("https://tls.peet.ws/api/all")
|
|
127
126
|
|
|
128
127
|
# Explicit browser emulation
|
|
@@ -144,10 +143,10 @@ resp = client.get("https://example.com", emulation: "safari_26_2")
|
|
|
144
143
|
|
|
145
144
|
| Browser | Example values |
|
|
146
145
|
|---------|---------------|
|
|
147
|
-
| Chrome | `chrome_100` .. `
|
|
148
|
-
| Firefox | `firefox_109
|
|
149
|
-
| Safari | `
|
|
150
|
-
| Edge | `edge_101` .. `
|
|
146
|
+
| Chrome | `chrome_100` .. `chrome_145` |
|
|
147
|
+
| Firefox | `firefox_109` .. `firefox_147`, `firefox_private_135` |
|
|
148
|
+
| Safari | `safari_15.3` .. `safari_26.2`, `safari_ios_26`, `safari_ipad_18` |
|
|
149
|
+
| Edge | `edge_101` .. `edge_145` |
|
|
151
150
|
| Opera | `opera_116` .. `opera_119` |
|
|
152
151
|
| OkHttp | `okhttp_3_9` .. `okhttp_5` |
|
|
153
152
|
|
|
@@ -165,6 +164,7 @@ The `Wreq::Response` object provides:
|
|
|
165
164
|
| `url` | String | Final URL (after redirects) |
|
|
166
165
|
| `version` | String | HTTP version |
|
|
167
166
|
| `content_length` | Integer/nil | Content length if known |
|
|
167
|
+
| `transfer_size` | Integer/nil | Bytes transferred over the wire |
|
|
168
168
|
| `success?` | Boolean | Status 2xx? |
|
|
169
169
|
| `redirect?` | Boolean | Status 3xx? |
|
|
170
170
|
| `client_error?` | Boolean | Status 4xx? |
|
data/lib/wreq-rb/version.rb
CHANGED
data/lib/wreq_rb/2.7/wreq_rb.so
CHANGED
|
Binary file
|
data/lib/wreq_rb/3.3/wreq_rb.so
CHANGED
|
Binary file
|
data/lib/wreq_rb/3.4/wreq_rb.so
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wreq-rb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: aarch64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- Yicheng Zhou
|
|
8
|
+
- Illia Zub
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date: 2026-02
|
|
12
|
+
date: 2026-03-02 00:00:00.000000000 Z
|
|
12
13
|
dependencies: []
|
|
13
14
|
description: An ergonomic Ruby HTTP client powered by Rust's wreq library, featuring
|
|
14
15
|
TLS fingerprint emulation (JA3/JA4), HTTP/2 support, cookie handling, proxy support,
|
|
@@ -27,7 +28,7 @@ files:
|
|
|
27
28
|
- patches/0001-add-transfer-size-tracking.patch
|
|
28
29
|
- vendor/wreq/LICENSE
|
|
29
30
|
- vendor/wreq/README.md
|
|
30
|
-
homepage: https://github.com/
|
|
31
|
+
homepage: https://github.com/serpapi/wreq-rb
|
|
31
32
|
licenses:
|
|
32
33
|
- MIT
|
|
33
34
|
metadata: {}
|