linzer 0.7.0.beta4 → 0.7.0
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 +4 -4
- data/CHANGELOG.md +23 -0
- data/lib/linzer/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b5767ac6b96b624e2098faa01e7cda512ca5f1530d6331c0a95c8f57a262da3d
|
4
|
+
data.tar.gz: 0ec39dbe4697fd2617770be2937ec062d5a9336ef5365dd3c3b028e541670903
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c471b814bc6310ca41f60947df7a5097c738bb79e89720c3e7da0b7e331949b244bb0e030162363eb00bce411d3b2d6735615f3b529cd7e42815a4cee769b828
|
7
|
+
data.tar.gz: 3beaf6ab15820fb61473811d63da3f0bbd58653d62e58f193dd5709dd8e5e7b54914f420dbec61af557dcb9afd8da571ae0ab007ba39f7b19d48324084f30df7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,28 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.7.0] - 2025-05-17
|
4
|
+
|
5
|
+
(No changes since the last beta release, this new stable release just
|
6
|
+
bundles all the features/changes introduced during 0.7.0 beta releases)
|
7
|
+
|
8
|
+
- Introduce Rack::Auth::Signature middleware.
|
9
|
+
|
10
|
+
- Refactor and improve Rack::Auth::Signature code organization.
|
11
|
+
|
12
|
+
- Do not expose secret material on HMAC SHA-256 key when #inspect method is used.
|
13
|
+
|
14
|
+
- Update Rack::Auth::Signature configuration file options.
|
15
|
+
|
16
|
+
- Validate and test Rack::Auth::Signature with example Rails and Sinatra apps.
|
17
|
+
|
18
|
+
- Refactor to improve Linzer APIs and streamline its usage along with different
|
19
|
+
HTTP libraries. (Issues [#6](https://github.com/nomadium/linzer/issues/6) and
|
20
|
+
[#11](https://github.com/nomadium/linzer/issues/11))
|
21
|
+
|
22
|
+
- Provide integration with http.rb gem to allow signing outgoing HTTP requests.
|
23
|
+
|
24
|
+
- Add simple HTTP client module.
|
25
|
+
|
3
26
|
## [0.7.0.beta4] - 2025-05-17
|
4
27
|
|
5
28
|
- Provide integration with http.rb gem to allow signing outgoing HTTP requests.
|
data/lib/linzer/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: linzer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.0
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miguel Landaeta
|
@@ -239,7 +239,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
239
239
|
- !ruby/object:Gem::Version
|
240
240
|
version: '0'
|
241
241
|
requirements: []
|
242
|
-
rubygems_version: 3.6.
|
242
|
+
rubygems_version: 3.6.7
|
243
243
|
specification_version: 4
|
244
244
|
summary: An implementation of HTTP Messages Signatures (RFC9421)
|
245
245
|
test_files: []
|