logister-ruby 0.4.0 → 0.4.1
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 +5 -0
- data/README.md +19 -0
- data/lib/logister/version.rb +1 -1
- data/logister-ruby.gemspec +2 -0
- metadata +22 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6b8f77ab291c0d9132dc6ea5d6f1711644d73a7892e9b7dbc4f5bb3cf418fd8f
|
|
4
|
+
data.tar.gz: 83af842795eebffcbfe29135091e89243dcd34f0e61968e8887dc75a027947f5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64bdd3ca1271f84c6495883ad5dac8ca829e29ef07a5dc79391848fa344fbcf39ac757650be7356611d16b285bc45ffa561ecbc804ca0c426a887ce6593f4f57
|
|
7
|
+
data.tar.gz: 464876a85252f86ec25e507fde1a38ace3c152596756da77c682ea81a5f872d0a69b86db38404a911c42a331d932506c4162a18df60c118b10dae940542f7d19
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.4.1 - 2026-09-11
|
|
4
|
+
|
|
5
|
+
- Constrained JSON to the compatible 2.x line while supported ActiveSupport 8 releases use positional JSON.parse options; verified real Rails request decoding.
|
|
6
|
+
- Restored explicit publication dispatch and immutable-tag recovery after successful current-main CI. Weekly dependency checks cannot publish releases.
|
|
7
|
+
|
|
3
8
|
## v0.4.0 - 2026-08-08
|
|
4
9
|
|
|
5
10
|
- Added stable UUID assignment before synchronous or asynchronous delivery so retries preserve one logical event identity.
|
data/README.md
CHANGED
|
@@ -427,3 +427,22 @@ Verify both release surfaces before calling a release complete:
|
|
|
427
427
|
curl -fsSL https://rubygems.org/api/v2/rubygems/logister-ruby/versions/X.Y.Z.json | jq '{number,ruby_version,sha}'
|
|
428
428
|
gh release view vX.Y.Z
|
|
429
429
|
```
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
### Coordinated release preparation
|
|
433
|
+
|
|
434
|
+
For a coordinated ecosystem release, keep the version-changing PR unmerged until
|
|
435
|
+
the final agreed Rails PR has been published and its deployment verified. Recheck
|
|
436
|
+
the upstream contract/workflow pin against that final backend commit before merge.
|
|
437
|
+
Successful source CI, a tag, or a release-impact dispatch alone is not backend readiness.
|
|
438
|
+
After independent review, merging the new version runs CI, creates an immutable tag,
|
|
439
|
+
and explicitly dispatches publication. A tag without a package remains incomplete.
|
|
440
|
+
|
|
441
|
+
To recover an existing reviewed tag, dispatch the publisher workflow from `main`
|
|
442
|
+
with `-f tag=vX.Y.Z` (Python uses `publish.yml`; other SDKs use `release.yml`). The
|
|
443
|
+
workflow checks out that exact tag, proves it belongs to main, and verifies public
|
|
444
|
+
package identity before creating the GitHub Release. Never move a consumed tag.
|
|
445
|
+
|
|
446
|
+
Weekly CI audits/tests current dependencies and cannot trigger automatic publication.
|
|
447
|
+
Dependabot groups compatible minor/patch updates; major toolchain migrations keep
|
|
448
|
+
separate PRs. Pin Actions to full commits and retain supported runtime floors.
|
data/lib/logister/version.rb
CHANGED
data/logister-ruby.gemspec
CHANGED
|
@@ -25,6 +25,8 @@ Gem::Specification.new do |spec|
|
|
|
25
25
|
spec.require_paths = ['lib']
|
|
26
26
|
|
|
27
27
|
spec.add_dependency 'activesupport', '>= 8.0.5', '< 9'
|
|
28
|
+
# ActiveSupport 8 passes JSON.parse options positionally; JSON 3 removed that API.
|
|
29
|
+
spec.add_dependency 'json', '>= 2', '< 3'
|
|
28
30
|
spec.add_development_dependency 'actionpack', '>= 8.0.5', '< 9'
|
|
29
31
|
spec.add_development_dependency 'rake', '>= 13.0'
|
|
30
32
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logister-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Logister
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 2026-09-11 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: activesupport
|
|
@@ -29,6 +29,26 @@ dependencies:
|
|
|
29
29
|
- - "<"
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
31
|
version: '9'
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: json
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - ">="
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '2'
|
|
39
|
+
- - "<"
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: '3'
|
|
42
|
+
type: :runtime
|
|
43
|
+
prerelease: false
|
|
44
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
45
|
+
requirements:
|
|
46
|
+
- - ">="
|
|
47
|
+
- !ruby/object:Gem::Version
|
|
48
|
+
version: '2'
|
|
49
|
+
- - "<"
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: '3'
|
|
32
52
|
- !ruby/object:Gem::Dependency
|
|
33
53
|
name: actionpack
|
|
34
54
|
requirement: !ruby/object:Gem::Requirement
|