github teelur/budget-board v3.5.0

one day ago

Bulk Edit Transactions, Login Persistence Changes, and an Important Migration Update

Warning

This release includes some breaking changes, so please make sure to read through the release notes and update your compose file as needed before updating to this version.

New Features

Bulk Edit Transactions

The transaction edit interface has been updated to allow for bulk editing of transactions.
You can now select multiple transactions and apply edits to all of them at once.

image

Login Persistence Changes

The previous login experience had different behaviors based on whether you logged in with email & password or with OIDC.
This has been updated to be more consistent across login methods and to give users more control over session persistence.

The default login session now lasts only for the browser session and will be cleared when the browser is closed.
However, there is now a "Remember Me" option that will persist the session across browser restarts.

image

Date Refactor

There were a few places in the app where we were storing dates with time (and more importantly timezone) information, which was causing several small bugs around date handling.

The time component of these dates (transactions, balances, values, etc.) isn't needed for any functionality in the app, so the database has been updated to only store the date component of these values.
There isn't any user-facing change from this update, but there are some compose file changes that are needed to preserve timezone information.

Warning

You will need to update your compose file to use the latest version from the repo, and add the TZ environment variable to your compose.env file with your local timezone (e.g. TZ=America/New_York).
The following Wikipedia page has a list of valid timezone values.

If you don't add this TZ environment variable, the database will default to UTC. This may cause dates to be off by one day depending on your local timezone, and you may need to manually correct them.

Spending by Category Graph

A new graph has been added to the Trends page that breaks down spending by category and subcategory for a given month.

image

Various UI/UX Tweaks

There have been a few small UI/UX changes across the app this release.

Direct Page URLs

Pages and subpages in the app now have their own URLs, so you can navigate directly to them from the browser's address bar.
This also improves browser navigation, allowing the Back and Forward buttons to move between pages as expected.

Settings Moved to Subpages

Previously, clicking on the settings button for various pages would open a modal with the settings for that page.
Some of these modals were getting crowded and limited the type of content that could be displayed, especially on smaller screens.

The settings for each page have now been moved to their own subpages (e.g. /transactions/settings), which allows more space for content and provides a more consistent experience across pages.

This will allow me to update the Custom Categories settings page in future releases to improve the experience of managing custom categories.

image

Build Tag Updates

Warning

The latest and release image tags have been deprecated.
If you are using either of these tags, you will need to update your compose file.

The build tags have been updated:

  • The latest and release tags have been deprecated. It is recommended to update your compose file to use the specific version tag (e.g. v3), if you aren't already.
  • A new dev tag has been added to all non-release builds. It is not recommended for production use, since it may include breaking changes and bugs that haven't been fully tested yet. Use it at your own risk!

What's Changed

Full Changelog: v3.4.0...v3.5.0

Don't miss a new budget-board release

NewReleases is sending notifications on new releases.