curl_impersonate 0.1.1-x86_64-linux-gnu → 0.1.2-x86_64-linux-gnu

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: 6febfd1e0a8669f78cd31a9a0b198a331c0afc55c9cab8a26251e26420e6da07
4
- data.tar.gz: 4b56a58989196518da27a9b621e4cd80fd366063ac693c2aa47e5f0167391c36
3
+ metadata.gz: bf0176aec48e53927ef616589f935878ad523f39eac88a774f75cca62d10d422
4
+ data.tar.gz: c6d07a7f2d3d3f3f750bfdbdb35d4a99e3d919ebfd874c9d0a801b46eda966e8
5
5
  SHA512:
6
- metadata.gz: dc5220e8a427e79601f8cf4c6fcc19c60bec03e37e8bbaebb837a0b5314941dd9e177dc5fe1f9e3d47b2c91babafa8aaa81e471bed6d670acecb727fa2fa7326
7
- data.tar.gz: 3469d1dc71a6ec83d01e7a4130af485a1dd1aa9a39fca1f7204ab6e0782c9c907a65a6568bddc2fa13795eda0a31260a1fe6073ed2d6c2076774ece8a54eac09
6
+ metadata.gz: bf397703be790d0af2f772355a5012fe8efe50f220ef3d761d5b033bbdd4331124781942092284d9f94430f070ade8bf019334979c433bb8dfe11c4a338b3f09
7
+ data.tar.gz: 349bb47cc57fa64897e3ba7d0f485c7a457b380d31074285f71d27c807c5f6bb2a602e9e28ed39f9ea9978c7fab62cd906e7527f49ca127b48c1209ea8592ad4
data/CHANGELOG.md ADDED
@@ -0,0 +1,44 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project are documented here.
4
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
5
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [0.1.2] - 2026-06-02
8
+
9
+ ### Changed
10
+ - Bump vendored `libcurl-impersonate` from **1.5.1 → 1.5.2** (lexiforest fork),
11
+ re-vendored for all four supported platforms (`arm64-darwin`, `x86_64-darwin`,
12
+ `aarch64-linux-gnu`, `x86_64-linux-gnu`).
13
+
14
+ ### Fixed
15
+ - Because `curl_cffi` 0.15.0 bundles the same curl-impersonate **1.5.2**, the
16
+ gem now produces a **byte-identical TLS ClientHello** to it for any given
17
+ host, matching real Chrome and `curl_cffi` exactly.
18
+
19
+ ### Compatibility
20
+ - Backwards compatible. Existing profiles (`chrome131`, `chrome124`, `safari*`,
21
+ `edge*`) keep their cipher/sigalg JA4 components, and the public Ruby API is
22
+ unchanged. JA3 hashes vary per request due to TLS extension permutation,
23
+ which is expected real-Chrome behavior.
24
+
25
+ ## [0.1.1] - 2026-05-27
26
+
27
+ ### Fixed
28
+ - macOS: produce a relocatable `.bundle` by dropping the absolute `libruby`
29
+ link, so the precompiled gem loads against the consuming Ruby's runtime.
30
+
31
+ ## [0.1.0] - 2026-05-27
32
+
33
+ ### Added
34
+ - Initial release. Ruby bindings for `libcurl-impersonate` (BoringSSL-backed)
35
+ exposing browser-identical TLS/JA3/JA4 fingerprints from Ruby.
36
+ - `CurlImpersonate.do_request` with impersonate target selection, custom
37
+ headers, POST body, redirects, timeout, and proxy (with auth) support.
38
+ - Cookie extraction helper and `Response` struct (status, body, headers).
39
+ - Precompiled native gems for `arm64-darwin` and `x86_64-linux-gnu`, plus a
40
+ source gem.
41
+
42
+ [0.1.2]: https://github.com/TeamMilestone/ruby-curl-impersonate/compare/v0.1.1...v0.1.2
43
+ [0.1.1]: https://github.com/TeamMilestone/ruby-curl-impersonate/compare/v0.1.0...v0.1.1
44
+ [0.1.0]: https://github.com/TeamMilestone/ruby-curl-impersonate/releases/tag/v0.1.0
@@ -1,3 +1,3 @@
1
1
  module CurlImpersonate
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: curl_impersonate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: x86_64-linux-gnu
6
6
  authors:
7
7
  - TeamMilestone
@@ -17,6 +17,7 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
+ - CHANGELOG.md
20
21
  - LICENSE
21
22
  - README.md
22
23
  - ext/curl_impersonate/curl_impersonate.c