Conversation
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (5)
WalkthroughThis PR consolidates the database backend migration by removing the corresponding changeset file and publishing the changes through updated version numbers and changelog entries for both the docs and server packages, documenting SQLite as the new default database backend. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes Possibly related PRs
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@rustrak/server@0.2.0
Minor Changes
#39
447596bThanks @kervel! - SQLite is now the default database backendBREAKING CHANGE: The
latestDocker image now uses SQLite instead of PostgreSQL.If you are using
abians7/rustrak-server:latestwith PostgreSQL, update your image tag:No data migration required — only the image tag changes.
New: SQLite support with zero configuration. No
DATABASE_URLneeded — data is stored automatically at/data/rustrak.dbinside the container. Mount a volume at/datato persist data.Docker Hub now publishes two variants per release:
latest/vX.Y.Z→ SQLite (default, no external database)postgres/vX.Y.Z-postgres→ PostgreSQLNew "Database Backends" documentation page with SQLite vs PostgreSQL comparison, Docker Compose examples, and backup strategies.
docs@0.1.10
Patch Changes
#39
447596bThanks @kervel! - SQLite is now the default database backendBREAKING CHANGE: The
latestDocker image now uses SQLite instead of PostgreSQL.If you are using
abians7/rustrak-server:latestwith PostgreSQL, update your image tag:No data migration required — only the image tag changes.
New: SQLite support with zero configuration. No
DATABASE_URLneeded — data is stored automatically at/data/rustrak.dbinside the container. Mount a volume at/datato persist data.Docker Hub now publishes two variants per release:
latest/vX.Y.Z→ SQLite (default, no external database)postgres/vX.Y.Z-postgres→ PostgreSQLNew "Database Backends" documentation page with SQLite vs PostgreSQL comparison, Docker Compose examples, and backup strategies.
Summary by CodeRabbit
New Features
Documentation
Chores