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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## v8.2.4 (2026-06-01)

#### :bug: Bug Fix
* `dbml-core`, `dbml-parse`
* [#916](https://github.com/holistics/dbml/pull/916) Missing column in index tuples are not reported as compile error, causing a runtime error ([@huydo862003](https://github.com/huydo862003))
* [#916](https://github.com/holistics/dbml/pull/916) TablePartial indexes are not being resolved ([@huydo862003](https://github.com/huydo862003))
* [#916](https://github.com/holistics/dbml/pull/916) Improve URI handling in compiler services, respecting the model's uri scheme when generate definitions and references ([@huydo862003](https://github.com/huydo862003))

#### Committers: 1
- Huy Do Nguyen An ([@huydo862003](https://github.com/huydo862003))

## v8.2.3 (2026-05-29)

#### :bug: Bug Fix
Expand Down
6 changes: 3 additions & 3 deletions dbml-playground/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dbml/playground",
"version": "8.2.3",
"version": "8.2.4",
"description": "Interactive playground for debugging and visualizing the DBML parser pipeline",
"author": "Holistics <dev@holistics.io>",
"license": "Apache-2.0",
Expand All @@ -25,8 +25,8 @@
"format": "prettier --write src/"
},
"dependencies": {
"@dbml/core": "^8.2.3",
"@dbml/parse": "^8.2.3",
"@dbml/core": "^8.2.4",
"@dbml/parse": "^8.2.4",
"@phosphor-icons/vue": "^2.2.0",
"floating-vue": "^5.2.2",
"lodash-es": "^4.17.21",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "8.2.3",
"version": "8.2.4",
"npmClient": "yarn",
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}
8 changes: 4 additions & 4 deletions packages/dbml-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package",
"name": "@dbml/cli",
"version": "8.2.3",
"version": "8.2.4",
"description": "",
"main": "lib/index.js",
"license": "Apache-2.0",
Expand Down Expand Up @@ -32,9 +32,9 @@
],
"dependencies": {
"@babel/cli": "^7.21.0",
"@dbml/connector": "^8.2.3",
"@dbml/core": "^8.2.3",
"@dbml/parse": "^8.2.3",
"@dbml/connector": "^8.2.4",
"@dbml/core": "^8.2.4",
"@dbml/parse": "^8.2.4",
"bluebird": "^3.5.5",
"chalk": "^2.4.2",
"commander": "^2.20.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/dbml-connector/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package",
"name": "@dbml/connector",
"version": "8.2.3",
"version": "8.2.4",
"description": "This package was created to fetch the schema JSON from many kind of databases.",
"author": "huy.phung.sw@gmail.com",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/dbml-core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package",
"name": "@dbml/core",
"version": "8.2.3",
"version": "8.2.4",
"description": "> TODO: description",
"author": "Holistics <dev@holistics.io>",
"license": "Apache-2.0",
Expand Down Expand Up @@ -46,7 +46,7 @@
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@dbml/parse": "^8.2.3",
"@dbml/parse": "^8.2.4",
"antlr4": "^4.13.1",
"lodash": "^4.18.1",
"lodash-es": "^4.18.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/dbml-parse/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package",
"name": "@dbml/parse",
"version": "8.2.3",
"version": "8.2.4",
"description": "DBML parser v2",
"author": "Holistics <dev@holistics.io>",
"license": "Apache-2.0",
Expand Down
Loading