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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +23 -0
  3. data/lib/linzer/version.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5cfa8303792377ef25d8a81300b1e22c2e6593237436e152ec04e99176eea1f7
4
- data.tar.gz: e2f89b7b4d771a9912000961862bf77cda5ccf2caf40a3906394afa1b1595adc
3
+ metadata.gz: b5767ac6b96b624e2098faa01e7cda512ca5f1530d6331c0a95c8f57a262da3d
4
+ data.tar.gz: 0ec39dbe4697fd2617770be2937ec062d5a9336ef5365dd3c3b028e541670903
5
5
  SHA512:
6
- metadata.gz: 3881ae41ea932485f39838bba647f60fce089f740dabe7db7e01d34c368ebaf85ec71788d997d64d9cc662811dd703babd62300f7d02c6a21072c1dafbb45ee5
7
- data.tar.gz: 7a9589f81440612f7e3bc959973aa947614c132f67db247e043f911d1653c7621c376ade8005181fa6fc4814e542ec82556bf79ec5f2b0d3ede739d48d4ffeb0
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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Linzer
4
- VERSION = "0.7.0.beta4"
4
+ VERSION = "0.7.0"
5
5
  end
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.beta4
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.8
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: []