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
5 changes: 0 additions & 5 deletions .changeset/minimal-identifier-escape.md

This file was deleted.

9 changes: 9 additions & 0 deletions packages/adapters/adapter-node-pg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @rawsql-ts/adapter-node-pg

## 0.15.11

### Patch Changes

- Updated dependencies [[`4698a87`](https://github.com/mk3008/rawsql-ts/commit/4698a87e9a73f8d6b87b0545cb0a740246f7d457)]:
- rawsql-ts@0.23.0
- @rawsql-ts/testkit-core@0.17.2
- @rawsql-ts/testkit-postgres@0.16.2

## 0.15.10

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/adapters/adapter-node-pg/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rawsql-ts/adapter-node-pg",
"version": "0.15.10",
"version": "0.15.11",
"description": "Testkit adapter that connects node-postgres pg clients and pools to @rawsql-ts/testkit-postgres fixture rewriting.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -33,11 +33,11 @@
"node": ">=20"
},
"dependencies": {
"@rawsql-ts/testkit-postgres": "^0.16.1",
"@rawsql-ts/testkit-core": "^0.17.1",
"@rawsql-ts/testkit-postgres": "^0.16.2",
"@rawsql-ts/testkit-core": "^0.17.2",
"@rawsql-ts/shared-binder": "^0.0.1",
"pg": "^8.13.1",
"rawsql-ts": "^0.22.0"
"rawsql-ts": "^0.23.0"
},
"devDependencies": {
"@prisma/adapter-pg": "^7.2.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# rawsql-ts

## 0.23.0

### Minor Changes

- [#856](https://github.com/mk3008/rawsql-ts/pull/856) [`4698a87`](https://github.com/mk3008/rawsql-ts/commit/4698a87e9a73f8d6b87b0545cb0a740246f7d457) Thanks [@mk3008](https://github.com/mk3008)! - Add `identifierEscapeTarget: "minimal"` to `SqlFormatter` so identifier quotes are removed only when the bare identifier is syntactically valid and semantically safe. The escape symbol remains controlled separately by `identifierEscape` (`quote`, `backtick`, `bracket`, or explicit delimiters). Reserved words, SQL special value expressions such as `current_user` and `current_timestamp`, mixed-case names, and identifiers containing spaces or punctuation remain escaped. Bare SQL special value expressions stay unquoted, while qualified references such as `table.current_user` can still be parsed as column references.

## 0.22.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rawsql-ts",
"version": "0.22.0",
"version": "0.23.0",
"description": "High-performance SQL parser and AST analyzer written in TypeScript. Provides fast parsing and advanced transformation capabilities.",
"main": "dist/index.js",
"module": "dist/esm/index.js",
Expand Down
7 changes: 7 additions & 0 deletions packages/ddl-docs-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @rawsql-ts/ddl-docs-cli

## 0.3.2

### Patch Changes

- Updated dependencies [[`4698a87`](https://github.com/mk3008/rawsql-ts/commit/4698a87e9a73f8d6b87b0545cb0a740246f7d457)]:
- rawsql-ts@0.23.0

## 0.3.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/ddl-docs-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rawsql-ts/ddl-docs-cli",
"version": "0.3.1",
"version": "0.3.2",
"description": "CLI tool that generates Markdown table definition docs from DDL files using rawsql-ts",
"main": "dist/src/index.js",
"bin": {
Expand Down Expand Up @@ -33,7 +33,7 @@
"node": ">=20"
},
"dependencies": {
"rawsql-ts": "^0.22.0"
"rawsql-ts": "^0.23.0"
},
"devDependencies": {
"@types/node": "^22.13.10",
Expand Down
7 changes: 7 additions & 0 deletions packages/sql-grep-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @rawsql-ts/sql-grep-core

## 0.1.12

### Patch Changes

- Updated dependencies [[`4698a87`](https://github.com/mk3008/rawsql-ts/commit/4698a87e9a73f8d6b87b0545cb0a740246f7d457)]:
- rawsql-ts@0.23.0

## 0.1.11

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/sql-grep-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rawsql-ts/sql-grep-core",
"version": "0.1.11",
"version": "0.1.12",
"description": "Low-dependency SQL usage analysis engine for rawsql-ts workspaces.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -39,7 +39,7 @@
"node": ">=20"
},
"dependencies": {
"rawsql-ts": "^0.22.0"
"rawsql-ts": "^0.23.0"
},
"devDependencies": {
"typescript": "^5.8.2",
Expand Down
7 changes: 7 additions & 0 deletions packages/testkit-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @rawsql-ts/testkit-core

## 0.17.2

### Patch Changes

- Updated dependencies [[`4698a87`](https://github.com/mk3008/rawsql-ts/commit/4698a87e9a73f8d6b87b0545cb0a740246f7d457)]:
- rawsql-ts@0.23.0

## 0.17.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/testkit-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rawsql-ts/testkit-core",
"version": "0.17.1",
"version": "0.17.2",
"description": "Core fixtures, schema validation, and SQL rewrite utilities for rawsql-ts SELECT query testing.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -38,7 +38,7 @@
"node": ">=20"
},
"dependencies": {
"rawsql-ts": "^0.22.0"
"rawsql-ts": "^0.23.0"
},
"devDependencies": {
"typescript": "^5.8.2",
Expand Down
8 changes: 8 additions & 0 deletions packages/testkit-postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @rawsql-ts/testkit-postgres

## 0.16.2

### Patch Changes

- Updated dependencies [[`4698a87`](https://github.com/mk3008/rawsql-ts/commit/4698a87e9a73f8d6b87b0545cb0a740246f7d457)]:
- rawsql-ts@0.23.0
- @rawsql-ts/testkit-core@0.17.2

## 0.16.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/testkit-postgres/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rawsql-ts/testkit-postgres",
"version": "0.16.1",
"version": "0.16.2",
"description": "Postgres-specific fixture/rewriter logic that stays driver-agnostic.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -40,8 +40,8 @@
"node": ">=20"
},
"dependencies": {
"@rawsql-ts/testkit-core": "^0.17.1",
"rawsql-ts": "^0.22.0"
"@rawsql-ts/testkit-core": "^0.17.2",
"rawsql-ts": "^0.23.0"
},
"devDependencies": {
"typescript": "^5.8.2",
Expand Down
8 changes: 8 additions & 0 deletions packages/testkit-sqlite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @rawsql-ts/testkit-sqlite

## 1.0.8

### Patch Changes

- Updated dependencies [[`4698a87`](https://github.com/mk3008/rawsql-ts/commit/4698a87e9a73f8d6b87b0545cb0a740246f7d457)]:
- rawsql-ts@0.23.0
- @rawsql-ts/testkit-core@0.17.2

## 1.0.7

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/testkit-sqlite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rawsql-ts/testkit-sqlite",
"version": "1.0.7",
"version": "1.0.8",
"description": "SQLite driver adapters for the rawsql-ts select query test harness.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -34,8 +34,8 @@
"node": ">=20"
},
"dependencies": {
"@rawsql-ts/testkit-core": "^0.17.1",
"rawsql-ts": "^0.22.0"
"@rawsql-ts/testkit-core": "^0.17.2",
"rawsql-ts": "^0.23.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
Expand Down
9 changes: 9 additions & 0 deletions packages/ztd-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @rawsql-ts/ztd-cli

## 0.27.4

### Patch Changes

- Updated dependencies [[`4698a87`](https://github.com/mk3008/rawsql-ts/commit/4698a87e9a73f8d6b87b0545cb0a740246f7d457)]:
- rawsql-ts@0.23.0
- @rawsql-ts/adapter-node-pg@0.15.11
- @rawsql-ts/sql-grep-core@0.1.12

## 0.27.3

### Patch Changes
Expand Down
14 changes: 7 additions & 7 deletions packages/ztd-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rawsql-ts/ztd-cli",
"version": "0.27.3",
"version": "0.27.4",
"description": "DB-agnostic scaffolding and DDL helpers for Zero Table Dependency projects",
"main": "dist/index.js",
"bin": {
Expand Down Expand Up @@ -44,23 +44,23 @@
"commander": "^12.0.0",
"diff": "^8.0.3",
"fast-glob": "^3.3.3",
"rawsql-ts": "^0.22.0",
"rawsql-ts": "^0.23.0",
"yaml": "^2.8.3",
"@rawsql-ts/sql-grep-core": "^0.1.11",
"@rawsql-ts/sql-grep-core": "^0.1.12",
"@rawsql-ts/driver-adapter-core": "^0.2.0"
},
"peerDependencies": {
"@rawsql-ts/adapter-node-pg": "^0.15.10"
"@rawsql-ts/adapter-node-pg": "^0.15.11"
},
"peerDependenciesMeta": {
"@rawsql-ts/adapter-node-pg": {
"optional": true
}
},
"devDependencies": {
"@rawsql-ts/adapter-node-pg": "^0.15.10",
"@rawsql-ts/testkit-core": "^0.17.1",
"@rawsql-ts/testkit-postgres": "^0.16.1",
"@rawsql-ts/adapter-node-pg": "^0.15.11",
"@rawsql-ts/testkit-core": "^0.17.2",
"@rawsql-ts/testkit-postgres": "^0.16.2",
"@testcontainers/postgresql": "^10.28.0",
"@types/diff": "^5.0.1",
"@types/node": "^22.13.10",
Expand Down
30 changes: 15 additions & 15 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading