This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
Releases: eregs/regulations-site
Releases · eregs/regulations-site
8.4.2
8.4.1
8.4.0
8.3.0
New Features
- #506 "Effective date" UI now includes more information and warns when not
viewing the current version.
Bug Fixes & Misc
- #497 Update frontend dependencies.
- #501 Set Sauce Labs key in Travis UI.
- #502 Improve accessibility by including the text of a link in its
aria-label. - #503 Fix some HTML escaping issues.
- #504 Fix scrolling issue in regulation timeline.
- #505 Darken Subpart labels to provide more contrast. Remove ids from SVGs
for automated readers. - #506 Replaced "orange" values with their "gold" equivalents
8.2.0
8.1.0
8.0.0
Some of the Notice-and-Comment functionality has been split into a separate Django app. This should significantly reduce the dependencies of down-stream applications which don't use that feature.
Warning of data loss
The "FailedCommentSubmission" model has moved from regulations
to notice_comment
without a corresponding data migration. If this data is important, please export it before running migrations. Alternatively, you may run only the notice_comment
migrations, manually transfer the data, then run the regulations
migrations.
Upgrade steps
If your app does not need Notice-and-Comment, no changes are needed.
If your app does include N&C, you will need to:
- Add
regulations[notice_comment]
as a Python requirement (rather than justregulations
) - Add
notice_comment
to yourINSTALLED_APPS
in the Django settings - Mount the N&C urls either by directly including
notice_comment.urls
or by deferring toregulations.all_urls
- Migrate your database. Note the potential for data loss above!
7.1.0
7.0.2
7.0.1
Bugfixes/refactors
- #477 Add Redux + React: Some of the JS events have been migrated to Redux; some of the views to React
- #479 Use libsass (removes ruby dependency)
- #478 Pull in some updates from CFPB:
- Update README to recommend nvm
- Fixes for images overflowing their containers
- Update a link in the README
- Fix a potential type error when redirecting by date
- #480 Replace nose with py.test: Swap Python test runner
- #482 Include templates, static files in python distro: Allows the library to be used outside of "editable" mode.