Releases: dharple/organizer
Releases · dharple/organizer
v1.0.0
Added
- Enabled Symfony failed login throttling.
Changed
- Box descriptions that are truncated can now be expaneded by clicking on them.
- Gravatar hashes now use SHA256 instead of MD5. [#38]
- Production logs are now written to a file instead of stderr.
- The minimum PHP version is now 8.1. Applied Rector-suggested changes.
- Tweaked login form.
- Updated code to fix Symfony deprecation warnings.
- Updated deploy script to run
composer dump-env. - Upgraded to Bootstrap 5.3.
- Upgraded to Symfony 5.4 authentication and password hashing system.
Fixed
- Fixed comment for
--formatondata:export. - Fixed issues reported by PHPStan.
- Searching for a box number alwys shows that box first in the result set.
Security
- Bumped PhpSpreadsheet from v1.29.0 to v2.3.0, to address [CVE-2024-45048] and
[CVE-2024-45293]. Thanks to @dependabot. - Bumped Twig from v3.12.0 to v3.14.0, to address [CVE-2024-45411].
Thanks to @dependabot. - Fixed multiple security alerts via @dependabot.
- Removed unused RememberMeBadge from Authenticator.
v0.8.0
Added
- Added support for hiding boxes in locations from searches.
- Added support for a description on a location.
Changed
- Searching on a single number will show a hidden box with that exact number,
as well as full text searches that match that number. - Simplified search logic slightly.
- Updated 3rd party dependencies.
v0.7.0
Changed
- Re-added composer.lock and symfony.lock.
- Removed UTC date time support.
- Updated 3rd party dependencies.
- Upgraded Symfony to 5.4.
Fixed
- Avoid a doctrine error for now by locking migrations to v2.x.
- Cleaned up class references.
- Fixed references to the moved Doctrine ManagerRegistry.
- Fixed a bug with export due to a change in behavior around Doctrine
references. - Removed unused variables.
Thanks
- PhpStorm for help with static analysis.
v0.4.1
Changed
- Make titles on home page links.
- Add titles to see all locations and box models.
Security
- Updated Symfony dependencies to address potential security risks.
CVE-2020-5255, CVE-2020-5274, CVE-2020-5275.
v0.4.0
Added
- The homepage now shows the three most recently modified boxes.
- Added a new page to see recently modified boxes.
Changed
- Moved the search bar to the top of the content area on small screens.
Fixed
- Responsive margins and column sizes
v0.3.0
v0.2.1
v0.2.0
Added
- The ability to export from the command line. [#8]
- The ability to import from the command line. [#8]
- A Box Number separate from the ID field on the box table. This ensures data
integrity when exporting and re-importing the data, and it sets up the
ability to have multiple users with different data sets. [#7] [#8] [#27] - Create/Update/Delete timestamps on all entities using [DoctrineExtension].
[#21] [#22] [#23] - The ability to list boxes and locations from the command line.
- The ability to move boxes en masse to a location from the command line.
- Support for YAML exports and imports. [#8] [#21]
- Migrations for MySQL.
Changed
- PHPCS rules are now simpler. This includes alphabetizing methods and
properties, thanks to [ork/phpcs]. - Export formats that support indentation (JSON, XML, YAML) use it.