Skip to content

Commit 06f5420

Browse files
chore: release master
1 parent d393b9c commit 06f5420

File tree

13 files changed

+113
-12
lines changed

13 files changed

+113
-12
lines changed

.release-please-manifest.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
".": "0.1.6",
3-
"apps/native": "0.1.4",
4-
"apps/web": "0.1.3",
5-
"packages/ui": "0.1.6",
6-
"packages/i18n": "0.1.3",
2+
".": "0.1.7",
3+
"apps/native": "0.1.5",
4+
"apps/web": "0.1.4",
5+
"packages/ui": "0.1.7",
6+
"packages/i18n": "0.1.4",
77
"packages/eslint-config": "0.1.0",
88
"packages/typescript-config": "0.1.0"
99
}

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Changelog
22

3+
## [0.1.7](https://github.com/odest/katip/compare/v0.1.6...v0.1.7) (2025-12-10)
4+
5+
6+
### Features
7+
8+
* add recordings migration, pagination, and remove color column ([2749506](https://github.com/odest/katip/commit/2749506445063a4fba30a2917d92c21e0645cd40))
9+
* **auth:** fix session management, db init and local user cleanup ([f91c9cc](https://github.com/odest/katip/commit/f91c9cc30e1b2a5f518f1de3c3a7e31c76ac8403))
10+
* **db:** add SQLite seeding script and dev deps for tests ([78200d3](https://github.com/odest/katip/commit/78200d383670d617e44a28ca9ad776f1c372951d))
11+
* **db:** implement soft delete with restore functionality and sync fix ([295e782](https://github.com/odest/katip/commit/295e7829f5d0cd1114eafec5915dbb84c79f2293))
12+
* **sync:** add push recording sync support ([cf02c0f](https://github.com/odest/katip/commit/cf02c0fca887c94b6d3eb7f8c0a4c2ad801d46b5))
13+
* **sync:** implement synchronization logic with pull & push recordings ([1c80123](https://github.com/odest/katip/commit/1c8012389c491a478de1f01bf4feb1719671d3d0))
14+
* **ui:** add basic recordings page with pagination and navigation ([15da692](https://github.com/odest/katip/commit/15da6920cdd2b1d1b6d59e602b7a08b98aad9eff))
15+
* **ui:** add recording toolbar with search, sort, persist sort preference ([2efeb38](https://github.com/odest/katip/commit/2efeb388d2f7f2db5cb33ada141dfec1292ec445))
16+
17+
18+
### Bug Fixes
19+
20+
* **deps:** upgrade next.js and react to resolve CVE-2025-55182 ([c73377a](https://github.com/odest/katip/commit/c73377a6d66ca3110096119df418dee7e367368d))
21+
22+
23+
### Code Refactoring
24+
25+
* **auth:** migrate profile source to public table ([d393b9c](https://github.com/odest/katip/commit/d393b9c65aea41b79f6225517b47d263c22c43d9))
26+
* **db:** implement relational query api and define schema relations ([7adf62d](https://github.com/odest/katip/commit/7adf62dcfe9a975f32910c99124a5cca44462fe0))
27+
* overhaul transcription state and database logic ([2e6bc7f](https://github.com/odest/katip/commit/2e6bc7fa0381e64ce149adc0051eb5b30b15ceb9))
28+
* **ui:** extract RecordingCard and RecordingPagination components ([5bc1c01](https://github.com/odest/katip/commit/5bc1c01afb9734e34ff6a7570155dd0c98997934))
29+
330
## [0.1.6](https://github.com/odest/katip/compare/v0.1.5...v0.1.6) (2025-12-03)
431

532

apps/native/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.1.5](https://github.com/odest/katip/compare/v0.1.4...v0.1.5) (2025-12-10)
4+
5+
6+
### Features
7+
8+
* add recordings migration, pagination, and remove color column ([2749506](https://github.com/odest/katip/commit/2749506445063a4fba30a2917d92c21e0645cd40))
9+
* **ui:** add basic recordings page with pagination and navigation ([15da692](https://github.com/odest/katip/commit/15da6920cdd2b1d1b6d59e602b7a08b98aad9eff))
10+
11+
12+
### Bug Fixes
13+
14+
* **deps:** upgrade next.js and react to resolve CVE-2025-55182 ([c73377a](https://github.com/odest/katip/commit/c73377a6d66ca3110096119df418dee7e367368d))
15+
316
## [0.1.4](https://github.com/odest/katip/compare/v0.1.3...v0.1.4) (2025-12-02)
417

518

apps/native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "native",
33
"private": true,
4-
"version": "0.1.4",
4+
"version": "0.1.5",
55
"type": "module",
66
"scripts": {
77
"dev": "next dev --turbopack",

apps/native/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "katip"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
description = "A Tauri App"
55
authors = ["you"]
66
edition = "2021"

apps/native/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "katip",
4-
"version": "0.1.4",
4+
"version": "0.1.5",
55
"identifier": "com.katip.app",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

apps/web/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [0.1.4](https://github.com/odest/katip/compare/v0.1.3...v0.1.4) (2025-12-10)
4+
5+
6+
### Features
7+
8+
* **ui:** add basic recordings page with pagination and navigation ([15da692](https://github.com/odest/katip/commit/15da6920cdd2b1d1b6d59e602b7a08b98aad9eff))
9+
10+
11+
### Bug Fixes
12+
13+
* **deps:** upgrade next.js and react to resolve CVE-2025-55182 ([c73377a](https://github.com/odest/katip/commit/c73377a6d66ca3110096119df418dee7e367368d))
14+
315
## [0.1.3](https://github.com/odest/katip/compare/v0.1.2...v0.1.3) (2025-11-28)
416

517

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"type": "module",
55
"private": true,
66
"scripts": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "katip",
3-
"version": "0.1.6",
3+
"version": "0.1.7",
44
"private": true,
55
"scripts": {
66
"build": "turbo build",

packages/i18n/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## [0.1.4](https://github.com/odest/katip/compare/v0.1.3...v0.1.4) (2025-12-10)
4+
5+
6+
### Features
7+
8+
* add recordings migration, pagination, and remove color column ([2749506](https://github.com/odest/katip/commit/2749506445063a4fba30a2917d92c21e0645cd40))
9+
* **auth:** fix session management, db init and local user cleanup ([f91c9cc](https://github.com/odest/katip/commit/f91c9cc30e1b2a5f518f1de3c3a7e31c76ac8403))
10+
* **db:** implement soft delete with restore functionality and sync fix ([295e782](https://github.com/odest/katip/commit/295e7829f5d0cd1114eafec5915dbb84c79f2293))
11+
* **sync:** add push recording sync support ([cf02c0f](https://github.com/odest/katip/commit/cf02c0fca887c94b6d3eb7f8c0a4c2ad801d46b5))
12+
* **sync:** implement synchronization logic with pull & push recordings ([1c80123](https://github.com/odest/katip/commit/1c8012389c491a478de1f01bf4feb1719671d3d0))
13+
* **ui:** add basic recordings page with pagination and navigation ([15da692](https://github.com/odest/katip/commit/15da6920cdd2b1d1b6d59e602b7a08b98aad9eff))
14+
* **ui:** add recording toolbar with search, sort, persist sort preference ([2efeb38](https://github.com/odest/katip/commit/2efeb388d2f7f2db5cb33ada141dfec1292ec445))
15+
16+
17+
### Bug Fixes
18+
19+
* **deps:** upgrade next.js and react to resolve CVE-2025-55182 ([c73377a](https://github.com/odest/katip/commit/c73377a6d66ca3110096119df418dee7e367368d))
20+
21+
22+
### Code Refactoring
23+
24+
* overhaul transcription state and database logic ([2e6bc7f](https://github.com/odest/katip/commit/2e6bc7fa0381e64ce149adc0051eb5b30b15ceb9))
25+
326
## [0.1.3](https://github.com/odest/katip/compare/v0.1.2...v0.1.3) (2025-11-28)
427

528

0 commit comments

Comments
 (0)