diff --git a/.changeset/busy-files-throw.md b/.changeset/busy-files-throw.md deleted file mode 100644 index eac244d..0000000 --- a/.changeset/busy-files-throw.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -"@rustrak/server": minor -"docs": patch ---- - -SQLite is now the default database backend - -BREAKING CHANGE: The `latest` Docker image now uses SQLite instead of PostgreSQL. - -If you are using `abians7/rustrak-server:latest` with PostgreSQL, update your image tag: - -```yaml -# Before -image: abians7/rustrak-server:latest - -# After -image: abians7/rustrak-server:postgres -``` - -No data migration required — only the image tag changes. - -New: SQLite support with zero configuration. No `DATABASE_URL` needed — data is stored automatically at `/data/rustrak.db` inside the container. Mount a volume at `/data` to persist data. - -Docker Hub now publishes two variants per release: -- `latest` / `vX.Y.Z` → SQLite (default, no external database) -- `postgres` / `vX.Y.Z-postgres` → PostgreSQL - -New "Database Backends" documentation page with SQLite vs PostgreSQL comparison, Docker Compose examples, and backup strategies. diff --git a/apps/docs/CHANGELOG.md b/apps/docs/CHANGELOG.md index d464184..c401a2d 100644 --- a/apps/docs/CHANGELOG.md +++ b/apps/docs/CHANGELOG.md @@ -1,5 +1,34 @@ # docs +## 0.1.10 + +### Patch Changes + +- [#39](https://github.com/AbianS/rustrak/pull/39) [`447596b`](https://github.com/AbianS/rustrak/commit/447596b77655e6c8bc24257c603d1a992fb4cb03) Thanks [@kervel](https://github.com/kervel)! - SQLite is now the default database backend + + BREAKING CHANGE: The `latest` Docker image now uses SQLite instead of PostgreSQL. + + If you are using `abians7/rustrak-server:latest` with PostgreSQL, update your image tag: + + ```yaml + # Before + image: abians7/rustrak-server:latest + + # After + image: abians7/rustrak-server:postgres + ``` + + No data migration required — only the image tag changes. + + New: SQLite support with zero configuration. No `DATABASE_URL` needed — data is stored automatically at `/data/rustrak.db` inside the container. Mount a volume at `/data` to persist data. + + Docker Hub now publishes two variants per release: + + - `latest` / `vX.Y.Z` → SQLite (default, no external database) + - `postgres` / `vX.Y.Z-postgres` → PostgreSQL + + New "Database Backends" documentation page with SQLite vs PostgreSQL comparison, Docker Compose examples, and backup strategies. + ## 0.1.9 ### Patch Changes diff --git a/apps/docs/package.json b/apps/docs/package.json index 4c5b44a..f378554 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -1,6 +1,6 @@ { "name": "docs", - "version": "0.1.9", + "version": "0.1.10", "private": true, "scripts": { "dev": "next dev --port 3001", diff --git a/apps/server/CHANGELOG.md b/apps/server/CHANGELOG.md index 77fbf10..6634e49 100644 --- a/apps/server/CHANGELOG.md +++ b/apps/server/CHANGELOG.md @@ -1,5 +1,34 @@ # @rustrak/server +## 0.2.0 + +### Minor Changes + +- [#39](https://github.com/AbianS/rustrak/pull/39) [`447596b`](https://github.com/AbianS/rustrak/commit/447596b77655e6c8bc24257c603d1a992fb4cb03) Thanks [@kervel](https://github.com/kervel)! - SQLite is now the default database backend + + BREAKING CHANGE: The `latest` Docker image now uses SQLite instead of PostgreSQL. + + If you are using `abians7/rustrak-server:latest` with PostgreSQL, update your image tag: + + ```yaml + # Before + image: abians7/rustrak-server:latest + + # After + image: abians7/rustrak-server:postgres + ``` + + No data migration required — only the image tag changes. + + New: SQLite support with zero configuration. No `DATABASE_URL` needed — data is stored automatically at `/data/rustrak.db` inside the container. Mount a volume at `/data` to persist data. + + Docker Hub now publishes two variants per release: + + - `latest` / `vX.Y.Z` → SQLite (default, no external database) + - `postgres` / `vX.Y.Z-postgres` → PostgreSQL + + New "Database Backends" documentation page with SQLite vs PostgreSQL comparison, Docker Compose examples, and backup strategies. + ## 0.1.4 ### Patch Changes diff --git a/apps/server/package.json b/apps/server/package.json index a481be9..6299bef 100644 --- a/apps/server/package.json +++ b/apps/server/package.json @@ -1,6 +1,6 @@ { "name": "@rustrak/server", - "version": "0.1.4", + "version": "0.2.0", "private": true, "scripts": { "build": "cargo build --release",