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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 78f69603552ed8908670a66523d222bd7e7221fb4202133db0e4967b7676e069
4
- data.tar.gz: 8fce257592b3eff5989d41dec5cd6be2a26351b64e98558ed566b889a98400a3
3
+ metadata.gz: 68f6936b492e804cacc457cb32a3c211f46a1200b57efe2c478fa3c6769fa7e2
4
+ data.tar.gz: 85fcf9d42acb0def8427800684cffffccfbe03b63791bbe4c3d1938c9cef33da
5
5
  SHA512:
6
- metadata.gz: b8cfe97fc4a57e6dbaed6c007da8ae2045a3039ea0aee70e4cd82b654932faa4a5f8419740a494f537c31aa11b4aef837ce4cfc420e88be312e212b880de667b
7
- data.tar.gz: 4b3ad524e5e0d44b008cf44e63bb2b6941f580de2a6163daa44f9079054eb69bea0100810b6e6e944da5d3a630805ae6302e89b7708d4c1577595d017f1f0667
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, configure a RubyGems [Trusted Publisher](https://guides.rubygems.org/trusted-publishing/)
451
- for:
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
- - Owner: `tamiru`
454
- - Repository: `rails_nexus`
455
- - Workflow: `release.yml`
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. No RubyGems API key is needed.
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.2
466
- git push origin v2.1.2
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,
@@ -1,3 +1,3 @@
1
1
  module RailsNexus
2
- VERSION = "2.1.3"
2
+ VERSION = "2.1.4"
3
3
  end
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.3
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: 4.0.10
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: []