diff --git a/CHANGELOG.md b/CHANGELOG.md index 498d3edefd..69fb1079cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ 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.38.0](https://github.com/ajaxorg/ace/compare/v1.37.5...v1.38.0) (2025-02-12) + + +### Features + +* **popup:** add supporting skipFilter flag for popup item ([#5740](https://github.com/ajaxorg/ace/issues/5740)) ([0db7585](https://github.com/ajaxorg/ace/commit/0db7585ae0ccbd353091426f60ac3d9e53e182c4)) + + +### Bug Fixes + +* **AcePopup:** fix aria-posinset issue on google chrome ([#5719](https://github.com/ajaxorg/ace/issues/5719)) ([09a0c5a](https://github.com/ajaxorg/ace/commit/09a0c5a11106754916a4fc324a35e8daf84055ba)) +* calling setMode just before destroy causes error reading getLength ([#5727](https://github.com/ajaxorg/ace/issues/5727)) ([62b973e](https://github.com/ajaxorg/ace/commit/62b973ef2247debdd51cf6a41a3b24b97277efdb)) +* highlight indent guides with wrapped lines ([#5621](https://github.com/ajaxorg/ace/issues/5621)) ([77b9fe1](https://github.com/ajaxorg/ace/commit/77b9fe1bc0b10b4c3fb2780d65f9d256d60634ce)) +* improve aria attributes of popup elements ([#5739](https://github.com/ajaxorg/ace/issues/5739)) ([09fba2e](https://github.com/ajaxorg/ace/commit/09fba2e7347cd499c979e53ec7a8d8ee1fd48918)) +* types for setTimeout/setInterval calls ([#5726](https://github.com/ajaxorg/ace/issues/5726)) ([9a76656](https://github.com/ajaxorg/ace/commit/9a76656acc9528a4a2e92a3b72c4d6598d3a0a8c)) +* **VirtualRenderer:** fix scrollbar overlap on autocompletion ([#5713](https://github.com/ajaxorg/ace/issues/5713)) ([5acea6d](https://github.com/ajaxorg/ace/commit/5acea6d9200f4ca0c8495350cda6e41e8351913f)) +* wrong type of paste event and missing types for themelist extension ([#5725](https://github.com/ajaxorg/ace/issues/5725)) ([a4b9d2d](https://github.com/ajaxorg/ace/commit/a4b9d2d91a2be841320030d93afde46ae723c8c3)) + ### [1.37.5](https://github.com/ajaxorg/ace/compare/v1.37.4...v1.37.5) (2025-01-16) diff --git a/ace.d.ts b/ace.d.ts index 8e70a970f3..7b79f4a7b4 100644 --- a/ace.d.ts +++ b/ace.d.ts @@ -982,6 +982,6 @@ declare module "ace-code" { import { Range } from "ace-code/src/range"; import { UndoManager } from "ace-code/src/undomanager"; import { VirtualRenderer as Renderer } from "ace-code/src/virtual_renderer"; - export var version: "1.37.5"; + export var version: "1.38.0"; export { Range, Editor, EditSession, UndoManager, Renderer as VirtualRenderer }; } diff --git a/build b/build index 9ce7fb79ce..e6e7e81f1f 160000 --- a/build +++ b/build @@ -1 +1 @@ -Subproject commit 9ce7fb79ceb84db4e1421a2e972c5f84d0f95d95 +Subproject commit e6e7e81f1f5ae8d1271d1dfbae26a3bf712392aa diff --git a/package.json b/package.json index 033a8bbfe3..254c061631 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ace-code", "description": "Ajax.org Code Editor is a full featured source code highlighting editor that powers the Cloud9 IDE", - "version": "1.37.5", + "version": "1.38.0", "homepage": "https://github.com/ajaxorg/ace", "engines": { "node": ">= 0.6.0" diff --git a/src/config.js b/src/config.js index 91ffa56db6..873ba6c5cd 100644 --- a/src/config.js +++ b/src/config.js @@ -197,6 +197,6 @@ var reportErrorIfPathIsNotConfigured = function() { } }; -exports.version = "1.37.5"; +exports.version = "1.38.0"; diff --git a/types/ace-modules.d.ts b/types/ace-modules.d.ts index 478936e66f..06171e2954 100644 --- a/types/ace-modules.d.ts +++ b/types/ace-modules.d.ts @@ -371,7 +371,7 @@ declare module "ace-code/src/config" { string ], onLoad: (module: any) => void) => void; setModuleLoader: (moduleName: any, onLoad: any) => void; - version: "1.37.5"; + version: "1.38.0"; }; export = _exports; }