Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions .changeset/busy-files-throw.md

This file was deleted.

29 changes: 29 additions & 0 deletions apps/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "0.1.9",
"version": "0.1.10",
"private": true,
"scripts": {
"dev": "next dev --port 3001",
Expand Down
29 changes: 29 additions & 0 deletions apps/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion apps/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rustrak/server",
"version": "0.1.4",
"version": "0.2.0",
"private": true,
"scripts": {
"build": "cargo build --release",
Expand Down
Loading