http 5.3.0 → 5.3.1

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: da85aeba1d2d3dce86f59a678ade3f74df35514397cb7488f9aaab9ea5a57220
4
- data.tar.gz: 28e5143890592f55f51fa65874f787f3c3e9eac5f9f6103c589082414eff378e
3
+ metadata.gz: b6053cab7210860d3464e9441746186b46c7ac1dc5716ea59cc69dff0d4ef460
4
+ data.tar.gz: 49f6d6c66a674e792208f1c17fff2c5dd8fdda330c6bdbabbaddec1f69eebac8
5
5
  SHA512:
6
- metadata.gz: 6b14bb800aefa920d2511b962967253fc034847bb07f8d181bb9cec6dba136ca0c51655fd0da716986897be5ef83e6023705578016db7bbd12bbd1f2ed4bbeb4
7
- data.tar.gz: dc996c20d358b382fbb2b1d93af7a706f858167392c8db3d8bf11e114419c0c7ed0a61350753f9c13422ca48b469af0b359f80694fe423066a02439066bfdd07
6
+ metadata.gz: 11585d59c45a6e762e6df8792e30107ec1011440ddc4597ad63f4ab5951f0e5c3fd801153bdb32bf74cae90c8ca716368003b3fb59cd98d8dc28c595899be177
7
+ data.tar.gz: 481d4f96d65e80226f505b93ff0da954ee4d0c3ee443d6dd4b72711cd0b44ae95c150eeb82d24442a34105dbb75013cb689f4b2ee0a2272d8320b473d91fc72d
data/CHANGELOG.md CHANGED
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+
11
+ ## [5.3.1] - 2025-06-09
12
+
13
+ ### Changed
14
+
15
+ - Revert switch to the native llhttp on MRI, as it's not compatible with
16
+ standalone bundles
17
+ ([#802](https://github.com/httprb/http/issues/802))
18
+
19
+
10
20
  ## [5.3.0] - 2025-06-09
11
21
 
12
22
  ### Added
data/http.gemspec CHANGED
@@ -31,12 +31,7 @@ Gem::Specification.new do |gem|
31
31
  gem.add_runtime_dependency "http-cookie", "~> 1.0"
32
32
  gem.add_runtime_dependency "http-form_data", "~> 2.2"
33
33
 
34
- # Use native llhttp for MRI (more performant) and llhttp-ffi for other interpreters (better compatibility)
35
- if RUBY_ENGINE == "ruby"
36
- gem.add_runtime_dependency "llhttp", "~> 0.5.0"
37
- else
38
- gem.add_runtime_dependency "llhttp-ffi", "~> 0.5.0"
39
- end
34
+ gem.add_runtime_dependency "llhttp-ffi", "~> 0.5.0"
40
35
 
41
36
  gem.add_development_dependency "bundler", "~> 2.0"
42
37
 
data/lib/http/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HTTP
4
- VERSION = "5.3.0"
4
+ VERSION = "5.3.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: http
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.3.0
4
+ version: 5.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tony Arcieri
@@ -56,7 +56,7 @@ dependencies:
56
56
  - !ruby/object:Gem::Version
57
57
  version: '2.2'
58
58
  - !ruby/object:Gem::Dependency
59
- name: llhttp
59
+ name: llhttp-ffi
60
60
  requirement: !ruby/object:Gem::Requirement
61
61
  requirements:
62
62
  - - "~>"
@@ -207,7 +207,7 @@ metadata:
207
207
  source_code_uri: https://github.com/httprb/http
208
208
  wiki_uri: https://github.com/httprb/http/wiki
209
209
  bug_tracker_uri: https://github.com/httprb/http/issues
210
- changelog_uri: https://github.com/httprb/http/blob/v5.3.0/CHANGELOG.md
210
+ changelog_uri: https://github.com/httprb/http/blob/v5.3.1/CHANGELOG.md
211
211
  rubygems_mfa_required: 'true'
212
212
  post_install_message:
213
213
  rdoc_options: []