diff --git a/CHANGELOG.md b/CHANGELOG.md index 533c29d7f..bf8ed6128 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/dbml-playground/package.json b/dbml-playground/package.json index ba798aed8..75a3c766b 100644 --- a/dbml-playground/package.json +++ b/dbml-playground/package.json @@ -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 ", "license": "Apache-2.0", @@ -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", diff --git a/lerna.json b/lerna.json index 78567856d..7892d189d 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "8.2.3", + "version": "8.2.4", "npmClient": "yarn", "$schema": "node_modules/lerna/schemas/lerna-schema.json" } diff --git a/packages/dbml-cli/package.json b/packages/dbml-cli/package.json index 75d799c90..475be6b9f 100644 --- a/packages/dbml-cli/package.json +++ b/packages/dbml-cli/package.json @@ -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", @@ -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", diff --git a/packages/dbml-connector/package.json b/packages/dbml-connector/package.json index 037e49bfe..c44eed674 100644 --- a/packages/dbml-connector/package.json +++ b/packages/dbml-connector/package.json @@ -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", diff --git a/packages/dbml-core/package.json b/packages/dbml-core/package.json index 7c23780fd..e6f25cd79 100644 --- a/packages/dbml-core/package.json +++ b/packages/dbml-core/package.json @@ -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 ", "license": "Apache-2.0", @@ -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", diff --git a/packages/dbml-parse/package.json b/packages/dbml-parse/package.json index c38851f56..21c65fe2d 100644 --- a/packages/dbml-parse/package.json +++ b/packages/dbml-parse/package.json @@ -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 ", "license": "Apache-2.0",