rails_accessibility_testing 1.5.2 → 1.5.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 +4 -4
- data/CHANGELOG.md +27 -0
- data/lib/rails_accessibility_testing/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 58922a0f7334ba5695d55aeb1d02576e975504492d7ae47c1ae37552cba246c3
|
|
4
|
+
data.tar.gz: a07f66b20c17b6da10ef18518d58a20d4de9429f2fac3af7dc9e2505bf3d218e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5f12b4e6da01ca76d1deb3aba955f284915857bf003fa6cb7568b8be05ea78e2eb7dddaf94bbe89fbe665cf99afb951ffbb86517eb3ea4862084b767939e779a
|
|
7
|
+
data.tar.gz: f638f6fbc1a0e4f7f3405f2c49929172d364910ad8140be4b662e823ab3c734fcde487666ae9874d973ec6d2643cb97ca2dc33e4419f805be45b0e2dec8daa2e
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,32 @@ All notable changes to this project 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
|
+
## [1.5.3] - 2024-11-20
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Gem packaging**: Verified all required files are included in gem package
|
|
12
|
+
- All executables (rails_a11y, rails_server_safe, a11y_live_scanner)
|
|
13
|
+
- All generator templates (.erb files)
|
|
14
|
+
- Complete library files and documentation
|
|
15
|
+
|
|
16
|
+
### Verified
|
|
17
|
+
- All executables properly included in gemspec
|
|
18
|
+
- Generator templates correctly packaged
|
|
19
|
+
- rails_server_safe Ruby script working correctly
|
|
20
|
+
- Local development setup confirmed working
|
|
21
|
+
|
|
22
|
+
## [1.5.2] - 2024-11-20
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
- **Bundler compatibility**: Converted `rails_server_safe` from shell script to Ruby script to fix Bundler wrapper loading issues
|
|
26
|
+
- **Generator Procfile.dev setup**: Generator now automatically uses `rails_server_safe` in Procfile.dev to prevent Foreman from terminating all processes when server is already running
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
- Generator behavior: When installing, automatically replaces `web: bin/rails server` with `web: bundle exec rails_server_safe` in existing Procfile.dev files
|
|
30
|
+
- Generator behavior: When creating new Procfile.dev, uses `rails_server_safe` by default
|
|
31
|
+
|
|
32
|
+
## [1.5.1] - 2024-11-20
|
|
33
|
+
|
|
8
34
|
## [1.5.0] - 2025-11-19
|
|
9
35
|
|
|
10
36
|
### 🎉 Major Release: Enhanced View Detection & Performance Optimizations
|
|
@@ -301,6 +327,7 @@ This release introduces significant improvements to view file detection, partial
|
|
|
301
327
|
- Compatible with RSpec Rails 6.0+
|
|
302
328
|
- Modular architecture with rule engine and check definitions
|
|
303
329
|
|
|
330
|
+
[1.5.2]: https://github.com/rayraycodes/rails-accessibility-testing/releases/tag/v1.5.2
|
|
304
331
|
[1.5.0]: https://github.com/rayraycodes/rails-accessibility-testing/releases/tag/v1.5.0
|
|
305
332
|
[1.4.3]: https://github.com/rayraycodes/rails-accessibility-testing/releases/tag/v1.4.3
|
|
306
333
|
[1.4.2]: https://github.com/rayraycodes/rails-accessibility-testing/releases/tag/v1.4.2
|