Skip to content
Open
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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.0.0-beta.5](https://github.com/DTStack/monaco-sql-languages/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2025-09-25)

## [1.0.0-beta.4](https://github.com/DTStack/monaco-sql-languages/compare/v1.0.0-beta.3...v1.0.0-beta.4) (2025-09-24)

## [1.0.0-beta.3](https://github.com/DTStack/monaco-sql-languages/compare/v1.0.0-beta.2...v1.0.0-beta.3) (2025-09-24)

## [1.0.0-beta.2](https://github.com/DTStack/monaco-sql-languages/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2025-09-23)

## [1.0.0-beta.1](https://github.com/DTStack/monaco-sql-languages/compare/v1.0.0-beta.0...v1.0.0-beta.1) (2025-09-23)

## [1.0.0-beta.0](https://github.com/DTStack/monaco-sql-languages/compare/v0.15.1...v1.0.0-beta.0) (2025-09-22)

### [0.15.1](https://github.com/DTStack/monaco-sql-languages/compare/v0.15.0...v0.15.1) (2025-06-06)


Expand Down
2 changes: 1 addition & 1 deletion README-zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Monaco SQL Languages 是一个基于 Monaco Editor 的 SQL 语言项目,从 [m
npm install monaco-sql-languages
```

> Tips: 目前 Monaco SQL Languages 仅保证在 `monaco-editor@0.31.0` 上稳定运行。
> Tips: 目前 Monaco SQL Languages 仅保证在 `monaco-editor@0.52.2` 上稳定运行。

<br/>

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ This project is based on the SQL language project of Monaco Editor, which was fo
npm install monaco-sql-languages
```

> Tips: Monaco SQL Languages is only guaranteed to work stably on `monaco-editor@0.31.0` for now.
> Tips: Monaco SQL Languages is only guaranteed to work stably on `monaco-editor@0.52.2` for now.
<br/>

Expand Down
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "monaco-sql-languages",
"version": "0.15.1",
"version": "1.0.0-beta.7",
"description": "SQL languages for the Monaco Editor, based on monaco-languages.",
"scripts": {
"prepublishOnly": "npm run build",
Expand Down Expand Up @@ -47,15 +47,15 @@
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@commitlint/cz-commitlint": "^17.7.2",
"@types/mocha": "^9.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^20.4.0",
"commitizen": "^4.3.0",
"fast-glob": "^3.3.2",
"gh-pages": "^3.2.3",
"inquirer": "^8.2.2",
"jsdom": "^16.4.0",
"mocha": "^9.2.0",
"monaco-editor": "0.31.0",
"mocha": "^11.7.4",
"monaco-editor": "0.52.2",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"requirejs": "^2.3.6",
Expand All @@ -67,7 +67,7 @@
"pre-commit": "npx pretty-quick --staged"
},
"peerDependencies": {
"monaco-editor": ">=0.31.0"
"monaco-editor": ">=0.52.2"
},
"engines": {
"node": ">=18"
Expand All @@ -84,6 +84,7 @@
]
},
"dependencies": {
"dt-sql-parser": "4.3.1"
"dt-sql-parser": "4.3.1",
"monaco-editor-core": "0.52.2"
}
}
Loading