custodian-core 0.1.0 → 0.1.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 +18 -0
- data/README.md +5 -6
- data/custodian-core.gemspec +1 -1
- data/lib/custodian/core/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: 71316efbb9b0ae0177deed2ebef9e748f2b3a60b9d0094fe4ecd3014b0613b3e
|
|
4
|
+
data.tar.gz: f9b4561451dee601718a5c4a630769833184385b6d938c700813b2e44aadb953
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2584e0341431d11a50a9b8d0b60a318ece85e5ea18bcbf52adf0394a4cb4cc7b01ad84e516ae16bfa8de39ae5711ad36897b5a4f21f0e29a9b931f9f2d2c4515
|
|
7
|
+
data.tar.gz: 8192415af6f9bd5ccbe607e748fa26f624eceb3bea99c8c872b1a145ab8221704e90a758becae6f433e9675218df01eedc0c12ef0126f9840122c9ca2ae2bcf7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [0.1.1] - 2026-08-19
|
|
4
|
+
|
|
5
|
+
### Security and release hardening
|
|
6
|
+
|
|
3
7
|
- Require Ruby 3.2+, support Rails 7.x/8.x and ancestry 4.x/5.x explicitly.
|
|
4
8
|
- Reject negative demands and non-finite, negative, or over-remaining numeric
|
|
5
9
|
action outcomes.
|
|
@@ -7,6 +11,20 @@
|
|
|
7
11
|
traverse deep trees iteratively.
|
|
8
12
|
- Limit the built gem to consumer-facing code, migrations, signatures, and
|
|
9
13
|
top-level release documentation.
|
|
14
|
+
- Add repository-wide CODEOWNERS coverage.
|
|
15
|
+
- Default GitHub Actions permissions to read-only and restrict `id-token: write`
|
|
16
|
+
to the publication job.
|
|
17
|
+
- Pin GitHub Actions to full commit SHAs and configure Dependabot updates for
|
|
18
|
+
GitHub Actions.
|
|
19
|
+
- Strengthen protection of the `main` and `dev` branches.
|
|
20
|
+
- Publish through GitHub Actions Trusted Publishing and RubyGems OIDC.
|
|
21
|
+
|
|
22
|
+
### Release pipeline fixes
|
|
23
|
+
|
|
24
|
+
- Correct release-tag ancestry validation by fetching the complete history and
|
|
25
|
+
checking that the tagged commit belongs to `main`.
|
|
26
|
+
- Use Ruby 3.4 for releases to avoid the publication conflict observed with
|
|
27
|
+
Ruby 3.2.
|
|
10
28
|
|
|
11
29
|
## [0.1.0] - 2026-07-07
|
|
12
30
|
|
data/README.md
CHANGED
|
@@ -165,17 +165,16 @@ Planned extensions that do not exist in this gem yet:
|
|
|
165
165
|
`ancestry` 4.x and 5.x. The lower Ruby bound keeps the supported runtime
|
|
166
166
|
aligned with the CI matrix and with the currently supported Rails majors.
|
|
167
167
|
|
|
168
|
-
|
|
169
|
-
add it to your host Rails application's Gemfile via git:
|
|
168
|
+
Add the gem to your host Rails application's Gemfile:
|
|
170
169
|
|
|
171
170
|
```ruby
|
|
172
|
-
gem "custodian-core",
|
|
171
|
+
gem "custodian-core", "~> 0.1.1"
|
|
173
172
|
```
|
|
174
173
|
|
|
175
|
-
|
|
174
|
+
Then install it:
|
|
176
175
|
|
|
177
|
-
```
|
|
178
|
-
|
|
176
|
+
```sh
|
|
177
|
+
bundle install
|
|
179
178
|
```
|
|
180
179
|
|
|
181
180
|
Then install the engine's migrations:
|
data/custodian-core.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ require_relative "lib/custodian/core/version"
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "custodian-core"
|
|
7
7
|
spec.version = Custodian::Core::VERSION
|
|
8
|
-
spec.authors = ["Lucas
|
|
8
|
+
spec.authors = ["Lucas Nunes de Sousa"]
|
|
9
9
|
spec.email = ["lucas.ns.software.engineer@gmail.com"]
|
|
10
10
|
spec.homepage = "https://github.com/lucasnssoftwareengineer-alt/custodian-core"
|
|
11
11
|
spec.metadata["source_code_uri"] = "https://github.com/lucasnssoftwareengineer-alt/custodian-core"
|
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: custodian-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Lucas
|
|
7
|
+
- Lucas Nunes de Sousa
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|