philiprehberger-signed_payload 0.2.2 → 0.2.4

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: 83347ad59792944070ff76edad1ef18f4c2a325ebadd3cd36cbddc5e4457bdf9
4
- data.tar.gz: 723d772812baaee336f41a8602327530ccbcfef09eb84aabee46f2c3639af078
3
+ metadata.gz: '008121040781332a17a0e6da7658b92322f79d8e363c8a6784283fb5d98e699a'
4
+ data.tar.gz: 0ce6e55f118cf811c440d00b69ed0807fc986f5b9bf9f65063260828b3d8fc0a
5
5
  SHA512:
6
- metadata.gz: e999ab32f7d41de62d9364d1fca848787ca44180c8785c8990159cf4593afa50d4c754341a481698f3e9faa789766ddae7d3079a9c68ddfc8083d9f79d782b26
7
- data.tar.gz: 5f3af2e23d2a29a1ea65a28380e15c0612c3b279ba059abf019d8049dbb2d9ad8a49b7853d7546aa784a10021c28bbcb9ff2ce4b4b6627d36a110ea144fccb49
6
+ metadata.gz: a40f8057aee0791d56967300695a83817e3f6817222a5e4c0febe6a1be09dacd465007ace58db78a6eced541176c46d36888583e201442a373a6bb21ff4b6b1f
7
+ data.tar.gz: b5d3e659ab99aa83531728a5720ae0502efdf9399305660cf6ae15e9e9ad043b2e49b4b5418b882e3b570753bba2dbe0faffbd671098a99a4c54b1c593a4fec7
data/CHANGELOG.md CHANGED
@@ -1,14 +1,5 @@
1
1
  # Changelog
2
2
 
3
- ## 0.2.2
4
-
5
- - Fix RuboCop Style/StringLiterals violations in gemspec
6
-
7
- ## 0.2.1
8
-
9
- - Add License badge to README
10
- - Add bug_tracker_uri to gemspec
11
-
12
3
  All notable changes to this gem will be documented in this file.
13
4
 
14
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
@@ -16,6 +7,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16
7
 
17
8
  ## [Unreleased]
18
9
 
10
+ ## [0.2.4] - 2026-03-24
11
+
12
+ ### Fixed
13
+ - Remove inline comments from Development section to match template
14
+
15
+ ## [0.2.3] - 2026-03-22
16
+
17
+ ### Changed
18
+
19
+ - Expand test coverage to 30+ examples with empty/nil/large payloads, tamper detection, key sensitivity, unsupported algorithm, and decode edge cases
20
+
21
+ ## [0.2.3] - 2026-03-21
22
+
23
+ ### Fixed
24
+ - Standardize Installation section in README
25
+
26
+ ## [0.2.2] - 2026-03-18
27
+
28
+ ### Fixed
29
+ - Fix RuboCop Style/StringLiterals violations in gemspec
30
+
31
+ ## [0.2.1] - 2026-03-16
32
+
33
+ ### Added
34
+ - Add License badge to README
35
+ - Add bug_tracker_uri to gemspec
36
+
19
37
  ## [0.2.0] - 2026-03-12
20
38
 
21
39
  ### Added
data/README.md CHANGED
@@ -18,12 +18,6 @@ Add to your Gemfile:
18
18
  gem "philiprehberger-signed_payload"
19
19
  ```
20
20
 
21
- Then run:
22
-
23
- ```bash
24
- bundle install
25
- ```
26
-
27
21
  Or install directly:
28
22
 
29
23
  ```bash
@@ -129,8 +123,8 @@ end
129
123
 
130
124
  ```bash
131
125
  bundle install
132
- bundle exec rspec # Run tests
133
- bundle exec rubocop # Check code style
126
+ bundle exec rspec
127
+ bundle exec rubocop
134
128
  ```
135
129
 
136
130
  ## License
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module SignedPayload
5
- VERSION = "0.2.2"
5
+ VERSION = "0.2.4"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-signed_payload
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Philip Rehberger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-19 00:00:00.000000000 Z
11
+ date: 2026-03-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A zero-dependency Ruby gem for signing and verifying JSON payloads using
14
14
  HMAC-SHA256 with optional expiration and timing-safe comparison.