rails_nexus 2.1.3 → 2.1.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/README.md +12 -9
- data/lib/rails_nexus/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: 68f6936b492e804cacc457cb32a3c211f46a1200b57efe2c478fa3c6769fa7e2
|
|
4
|
+
data.tar.gz: 85fcf9d42acb0def8427800684cffffccfbe03b63791bbe4c3d1938c9cef33da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0fe9502389240d9c4f486613ca0730da70fa0f4d932b0b86359f6d8587d5c456e16ac90f8caaeea9c9bb204e77a359c3fbf493ebeb5244119a1071d228ccac01
|
|
7
|
+
data.tar.gz: 7c6bab5a7baafe7dbc87fc89d2c6cf2de10137906cc910b4b2fcbb5f935f4ec89923ee6d97fa592ffc3ebbd6eca4e9e38a1e8ac07d1b96bcac1212f680a3f276
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ All notable changes to RailsNexus will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.1.4] - 2026-08-24
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- **Backup extraction** — Backup management now lives in the standalone `backup_nexus` gem while RailsNexus retains the shared layout and stylesheet.
|
|
12
|
+
- **Release automation** — GitHub Actions builds, validates, and publishes the gem non-interactively with a scoped RubyGems API key.
|
|
13
|
+
|
|
14
|
+
### Security
|
|
15
|
+
- **Safe backup examples** — Removed the credential-bearing backup seed and replaced it with environment-based configuration owned by BackupNexus.
|
|
16
|
+
|
|
8
17
|
## [2.1.1] - 2026-08-23
|
|
9
18
|
|
|
10
19
|
### Added
|
data/README.md
CHANGED
|
@@ -447,23 +447,26 @@ GitHub Actions runs the test matrix, database compatibility checks, asset builds
|
|
|
447
447
|
and security checks on pushes and pull requests. Releases are published to
|
|
448
448
|
RubyGems when a version tag is pushed.
|
|
449
449
|
|
|
450
|
-
Before the first release,
|
|
451
|
-
|
|
450
|
+
Before the first release, set the RubyGems account's MFA level to **UI and gem
|
|
451
|
+
signin**, then create an API key with only the **Push rubygems** scope, limited
|
|
452
|
+
to the `rails_nexus` gem. Leave MFA disabled for this CI key so RubyGems does
|
|
453
|
+
not request a one-time password during automated releases. Add the key to the
|
|
454
|
+
GitHub repository (or its `release` environment) as an Actions secret named
|
|
455
|
+
`RUBYGEMS_API_KEY`. Never commit the key to the repository.
|
|
452
456
|
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
- GitHub environment: `release`
|
|
457
|
+
The publish command has no interactive input. A missing key or an account/key
|
|
458
|
+
that requires API MFA therefore fails the release instead of waiting for an
|
|
459
|
+
OTP prompt.
|
|
457
460
|
|
|
458
461
|
Create the `release` environment in GitHub and add required reviewers if you
|
|
459
|
-
want a manual approval before publishing.
|
|
462
|
+
want a manual approval before publishing.
|
|
460
463
|
|
|
461
464
|
To release a version, update `lib/rails_nexus/version.rb` and `CHANGELOG.md`,
|
|
462
465
|
merge the changes to `main`, then push a matching tag:
|
|
463
466
|
|
|
464
467
|
```bash
|
|
465
|
-
git tag v2.1.
|
|
466
|
-
git push origin v2.1.
|
|
468
|
+
git tag v2.1.4
|
|
469
|
+
git push origin v2.1.4
|
|
467
470
|
```
|
|
468
471
|
|
|
469
472
|
The workflow verifies that the tag matches the gem version, runs the tests,
|
data/lib/rails_nexus/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails_nexus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tamiru Hailu
|
|
@@ -212,7 +212,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
212
212
|
- !ruby/object:Gem::Version
|
|
213
213
|
version: '0'
|
|
214
214
|
requirements: []
|
|
215
|
-
rubygems_version:
|
|
215
|
+
rubygems_version: 3.6.9
|
|
216
216
|
specification_version: 4
|
|
217
217
|
summary: The extensible control plane for Rails applications
|
|
218
218
|
test_files: []
|