curl_impersonate 0.1.1 → 0.1.2

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: 94cdd8bf828ebec2bc00821f780c5d63d189b64d0cbc0512a8658290504d9223
4
- data.tar.gz: 0bf9e8780a0483145d8b92f3ae1d42cd03d48ce5ea7daa20da623e186ab595cb
3
+ metadata.gz: 07fc6e29980ccde873bf96ff3046dae24787be6fbfdd4d74d1e5f0727597d5b2
4
+ data.tar.gz: 606c09f72934cb5c63b438adf5105d4bdf72776ea8051fb2b9a8f0f36178e13b
5
5
  SHA512:
6
- metadata.gz: 9530d6d3c3dbdaa79f4be3b2659b9a7da0820006796e08c95802f74cf46f24347afe5b9bef2341633b8434a8c7e3ba8bdf3f3accbda61a18f62695a003323e3e
7
- data.tar.gz: 9cbf63f95038c728012f54ab3830c5740a702122b6601737eb147a0284b73d7e1bcde2df4636d272b49fe70aeb3ed7219a2fb20e379e588e96f4eb25311a0264
6
+ metadata.gz: 7206c36efadd799086c19eda4d82a138e154b3a796bb4bd845567f8c0e8c12005abeee0a0cd8ac40bed003e9af49ccab5f932a55b4ebc219d1cefb9c81de0e3b
7
+ data.tar.gz: aa380901343f78c8c7cfc5336f4675daf3dfcad48c0aebe9bc80fcecc3022427ff5e2333d3500618fc5577594eeeab5c274c3a7a65dd43ef8c82d6916da4639d
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,14 +1,14 @@
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: ruby
6
6
  authors:
7
7
  - TeamMilestone
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-05-27 00:00:00.000000000 Z
11
+ date: 2026-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -75,6 +75,7 @@ extensions:
75
75
  - ext/curl_impersonate/extconf.rb
76
76
  extra_rdoc_files: []
77
77
  files:
78
+ - CHANGELOG.md
78
79
  - LICENSE
79
80
  - README.md
80
81
  - ext/curl_impersonate/curl_impersonate.c