Skip to content

Commit 6fd86e3

Browse files
Version Packages (#117)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 5fcfb5b commit 6fd86e3

File tree

5 files changed

+17
-22
lines changed

5 files changed

+17
-22
lines changed

.changeset/fix-cockroachdb-system-columns.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/fix-container-detection.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/fix-sqlite-migration-connection.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

packages/cli/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @izumisy/kyrage
22

3+
## 1.3.1
4+
5+
### Patch Changes
6+
7+
- [#119](https://github.com/IzumiSy/kyrage/pull/119) [`55b769a`](https://github.com/IzumiSy/kyrage/commit/55b769a0cacdc3cb12458271f704b95877c65a24) Thanks [@IzumiSy](https://github.com/IzumiSy)! - Fix CockroachDB dialect to filter out system-generated `rowid` column during introspection
8+
9+
CockroachDB automatically generates a `rowid` column for tables without an explicit primary key. This system-generated column was being included in introspection results, causing unwanted diffs between the actual database schema and user-defined configuration. The CockroachDB dialect now filters out the `rowid` column to match user expectations and prevent false positives in schema comparisons.
10+
11+
- [#121](https://github.com/IzumiSy/kyrage/pull/121) [`5fcfb5b`](https://github.com/IzumiSy/kyrage/commit/5fcfb5bd5160e31308eb655f6963b985ef20e41a) Thanks [@IzumiSy](https://github.com/IzumiSy)! - Fix container detection for dev database commands by properly matching multiple Docker labels. This resolves the issue where users would see "No running dev containers found" even when containers were actually running.
12+
13+
The `kyrage dev status`, `kyrage dev clean`, and `kyrage dev get-url` commands were unable to detect running containers due to incomplete label matching in the container detection logic.
14+
15+
- [#116](https://github.com/IzumiSy/kyrage/pull/116) [`75fca73`](https://github.com/IzumiSy/kyrage/commit/75fca730d71a131a122ae3c69365fd0cdc56bb1e) Thanks [@IzumiSy](https://github.com/IzumiSy)! - Fix migration provider to use the acquired DB connection by Kysely migrator
16+
17+
Resolves issue where migration provider was not using the acquired DB connection passed to the Migration interface's up method, which is required for databases with connection limits like SQLite.
18+
319
## 1.3.0
420

521
### Minor Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@izumisy/kyrage",
33
"private": false,
44
"type": "module",
5-
"version": "1.3.0",
5+
"version": "1.3.1",
66
"description": "A minimal, schema-based declarative migration tool for Node.js ecosystem",
77
"author": "Seiya Izumi (https://github.com/IzumiSy)",
88
"license": "MIT",

0 commit comments

Comments
 (0)