http-cookie 1.1.3 → 1.1.5

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: cc645f84489b2b016326900a0bbd0a4919711c16f09cae5f3baf5ac7fdf7f366
4
- data.tar.gz: 327b8e0a7857967ab65808f1d7b5931f826e7c88729918ee5937b7d88a810240
3
+ metadata.gz: cee8102244e13cc21f70ae293cd86a7041b4f9d80f1938af1b75e43c132529ef
4
+ data.tar.gz: '018cea8d124fc781651229000a955f43d78cfb5022d843d5f4a09dd6c9bae2d0'
5
5
  SHA512:
6
- metadata.gz: d698ae1112415747aa49468ec67ca02abd745596335f6036bdf58b4c344f8b65df712d1543ff194dfbaff6149dec7e6535ee518390613f9ed3820993babfb9cc
7
- data.tar.gz: ac12354ef53ee60e69b035bedf196fa05c5901a8a361a9746654577eab93879e317826ac75ce85cb48ca5992dda6482f6deef2ea19d0497fd19496d326a0c794
6
+ metadata.gz: e74a4eab20889a2f52cc19348ac9e4cfeb62e31b9987ef4c469835654184d000ebfe9550308162ddd97d389420597471bf57a6b9d313f93b521f9ffb86fcae26
7
+ data.tar.gz: c0fa2fe8224c168ffedb940baa6f83b8f7f15585d80bd84ef64b1f4a5f14d311b86ea72b1b1e2c93d9d444ad8499a4cb2def2de7c10cba77f54cbd4701591a91
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## 1.1.5 (2026-04-19)
2
+
3
+ - Fix `NameError: uninitialized constant HTTP::Cookie::MAX_COOKIES_TOTAL` when `http/cookie_jar` is required without `http/cookie`, as done by the `http` gem. (#62)
4
+
5
+
6
+ ## 1.1.4 (2026-04-07)
7
+
8
+ - Fix `require "http/cookie_jar"` raising `NameError: uninitialized constant HTTP`. (#61)
9
+
10
+
1
11
  ## 1.1.3 (2026-04-06)
2
12
 
3
13
  - Restore compatibility with Ruby 2.6.
@@ -1,5 +1,5 @@
1
1
  module HTTP
2
2
  class Cookie
3
- VERSION = "1.1.3"
3
+ VERSION = "1.1.5"
4
4
  end
5
5
  end
@@ -1,5 +1,7 @@
1
1
  # :markup: markdown
2
2
 
3
+ require "http/cookie"
4
+
3
5
  ##
4
6
  # This class is used to manage the Cookies that have been returned from
5
7
  # any particular website.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: http-cookie
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Akinori MUSHA
@@ -160,7 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
160
160
  - !ruby/object:Gem::Version
161
161
  version: '0'
162
162
  requirements: []
163
- rubygems_version: 4.0.9
163
+ rubygems_version: 4.0.6
164
164
  specification_version: 4
165
165
  summary: A Ruby library to handle HTTP Cookies based on RFC 6265
166
166
  test_files: []