Skip to content

Releases: marvinruder/rating-tracker

v2.1.4

03 Aug 18:06
cb986a9
Compare
Choose a tag to compare

What's Changed

Tweaks and fixes

Notable dependency updates

  • Update Node.js to v20.5.0
  • Update prisma monorepo to v5.1.1

Full Changelog: v2.1.3...v2.1.4

v2.1.3

17 Jul 06:07
ee1e2a5
Compare
Choose a tag to compare

What's Changed

Tweaks and fixes

Full Changelog: v2.1.2...v2.1.3

v2.1.2

16 Jul 19:56
f13b4cf
Compare
Choose a tag to compare

What's Changed

Tweaks and fixes

Notable dependency updates

  • Update dependency vite to v4.4.0
  • Update Node.js to v20.4.0
  • Update prisma monorepo to v5
  • Update dependency redis-om to v0.4.0

Full Changelog: v2.1.1...v2.1.2

v2.1.1

22 Jun 20:59
6fd7c51
Compare
Choose a tag to compare

What's Changed

Tweaks and fixes

Notable dependency updates

  • Update prisma monorepo to v4.16.0
  • Update Node.js to v20.3.1, Update alpine Docker tag to v3.18.2

Full Changelog: v2.1.0...v2.1.1

v2.1.0

09 Jun 22:06
9bfe4a0
Compare
Choose a tag to compare

What's Changed

Minor changes

Tweaks and fixes

Notable dependency updates

  • Update vitest monorepo to v0.32.0 by @renovate in #296
    • Switch to v8 coverage

Full Changelog: v2.0.1...v2.1.0

v2.0.1

03 Jun 17:10
2aa6ebb
Compare
Choose a tag to compare

What's Changed

Tweaks and fixes

Full Changelog: v2.0.0...v2.0.1

v2.0.0

02 Jun 19:27
34e3240
Compare
Choose a tag to compare

What's Changed

This major release introduces ✨ Watchlists ✨:

Stocks noteworthy to a user can be organized in watchlists. A dedicated Favorites watchlist is provided by default and can easily be maintained by clicking the star icon for a stock.

Users can subscribe to a watchlist, so they receive notifications when a stock’s rating is updated.

Breaking changes

  1. With this release, a new naming convention for Prisma Migrations has been introduced to ensure all future migrations will be applied in the correct order. On existing Rating Tracker instances, a manual database patch is required:
  1. Log into your PostgreSQL instance.
  2. In your Rating Tracker schema, open the table _prisma_migrations; in which one row should exist.
  3. Change its migration_name attribute from 209-switch-to-relational-database to 00-209-switch-to-relational-database and save the change, leaving all other attributes unchanged.
  1. This release changes the Prisma Schema. On existing Rating Tracker instances, a database migration is necessary:

Although not officially recommended, a quick, easy and fairly safe way to initialize a new database with the required tables, constraints and indexes is to

  1. Clone the repository and run yarn from within the packages/backend folder.
  2. Store the database URL (e.g. postgresql://rating-tracker:********@127.0.0.1:5432/rating-tracker?schema=rating-tracker) in the shell environment variable DATABASE_URL.
  3. Run yarn pnpify prisma migrate deploy.

Major features

Tweaks and fixes

Notable dependency updates

  • Update prisma monorepo to v4.15.0
  • Update Yarn to v3.6.0
  • Update dependency typescript to v5.1.3

Full Changelog: v1.0.2...v2.0.0

v1.0.2

24 May 15:39
ca57b78
Compare
Choose a tag to compare

What's Changed

Tweaks and fixes

Full Changelog: v1.0.1...v1.0.2

v1.0.1

18 May 16:50
21cb9d8
Compare
Choose a tag to compare

What's Changed

Starting with this release, Docker images for release tags as well as the latest alias will be build for both arm64 and amd64 architecture:

Tweaks and fixes

  • Fix environment variable check at startup
  • Fix app name next to logo in frontend
  • Remove unused Selenium binaries from image
  • Remove unused Rollup option

Notable dependency updates

  • Update Node.js to v20.2.0

Full Changelog: v1.0.0...v1.0.1

v1.0.0

10 May 18:27
8b12380
Compare
Choose a tag to compare

What's Changed

  • Initial release. Refer to the README to see what’s included.

Full Changelog: https://github.com/marvinruder/rating-tracker/commits/v1.0.0