wreq-rb 0.3.1-aarch64-linux → 0.3.3-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2bba6caad3fecc8c7200b1336afb0ae0dd3d7e3c821aaf3a1ed6517ad7cb9105
4
- data.tar.gz: cb36db31201b440b53b84e69e5d7fbc59baf187dfb38b477c3932f1807fc6e29
3
+ metadata.gz: 9dc38afd7ddec90602910b28a103d8e4158e22879ba91059b29127bcaf6d9c64
4
+ data.tar.gz: 988fc239b3a3ec05b9a7701fd1bad834ae4137b638417b480efdddee7e177535
5
5
  SHA512:
6
- metadata.gz: 47352e0f4c8b31780f936c56c5d16bb8aadf6b0b9d7a9f17d7b3857706876d154e5b2845f75b5299a2f43a7f90fb6e1d40da653556e4e0da73ed9896af1db0cd
7
- data.tar.gz: 219538a595e91f17f43ac7b35961a95d35f982f98e7d7f79e13aec7a88a84d3072a44f21bb7345bc74015328eb408529471927fdfeabb19fd9121e5a5949113c
6
+ metadata.gz: 1a81046a9d782ab3f29eabf1b994ff58d21f5b22a3310a99fef68b0d6f829592f87ca1079a7ed1e661364b031bc10c4dfa2f22ceaf9d53801684f54566bccdd6
7
+ data.tar.gz: 41ecd509397253fb3b947d99294948448d1d7c31f304a6f8f4356fb93e0586c001721bff7a4d2973b8dd4213eaee7f46c620e393ca96854f2edcf814acd0c3ac
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 143 is used when no emulation is specified.**
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` .. `chrome_143` |
148
- | Firefox | `firefox_109`, `firefox_146`, `firefox_private_135` |
149
- | Safari | `safari_15_3` .. `safari_26_2`, `safari_ios_26`, `safari_ipad_18` |
150
- | Edge | `edge_101` .. `edge_142` |
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? |
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Wreq
4
- VERSION = "0.3.1"
4
+ VERSION = "0.3.3"
5
5
  end
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wreq-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.3
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Yicheng Zhou
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2026-02-27 00:00:00.000000000 Z
12
+ date: 2026-03-02 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: An ergonomic Ruby HTTP client powered by Rust's wreq library, featuring
15
15
  TLS fingerprint emulation (JA3/JA4), HTTP/2 support, cookie handling, proxy support,