philiprehberger-signed_payload 0.2.2 → 0.2.3

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: 2e9360543cec6e94a07941794b97a8ab95c3ffe3b85ad59beaf1cbbf5d1cc18d
4
+ data.tar.gz: 8a858d93dec91d3684ca864697db2fcb04dab2322a44691a36b5332337dfda05
5
5
  SHA512:
6
- metadata.gz: e999ab32f7d41de62d9364d1fca848787ca44180c8785c8990159cf4593afa50d4c754341a481698f3e9faa789766ddae7d3079a9c68ddfc8083d9f79d782b26
7
- data.tar.gz: 5f3af2e23d2a29a1ea65a28380e15c0612c3b279ba059abf019d8049dbb2d9ad8a49b7853d7546aa784a10021c28bbcb9ff2ce4b4b6627d36a110ea144fccb49
6
+ metadata.gz: 2f895c0dd2e2019a51858a619ed389b0e53b2e5b9f7a266f0a502eedcb5d9c0e610736e4cecab4c18cf23e515b113e4dd92cb4798add9a69a8e39171ad48f016
7
+ data.tar.gz: 3ffe31f86cd3623d47c1b8ff5c7d40a6eb8e5afe582aeff5bdf574d509e99fd225cb9ab74e9fb4bb8c4a87f61cb2de082eff317cc86b3f7500948d1c7dd460ce
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,28 @@ 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-22
11
+
12
+ ### Changed
13
+
14
+ - Expand test coverage to 30+ examples with empty/nil/large payloads, tamper detection, key sensitivity, unsupported algorithm, and decode edge cases
15
+
16
+ ## [0.2.3] - 2026-03-21
17
+
18
+ ### Fixed
19
+ - Standardize Installation section in README
20
+
21
+ ## [0.2.2] - 2026-03-18
22
+
23
+ ### Fixed
24
+ - Fix RuboCop Style/StringLiterals violations in gemspec
25
+
26
+ ## [0.2.1] - 2026-03-16
27
+
28
+ ### Added
29
+ - Add License badge to README
30
+ - Add bug_tracker_uri to gemspec
31
+
19
32
  ## [0.2.0] - 2026-03-12
20
33
 
21
34
  ### 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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module SignedPayload
5
- VERSION = "0.2.2"
5
+ VERSION = "0.2.3"
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.3
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-23 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.