Skip to content

Commit 09bbe54

Browse files
committed
release v1.38.0
1 parent 0db7585 commit 09bbe54

File tree

6 files changed

+23
-5
lines changed

6 files changed

+23
-5
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
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.
44

5+
## [1.38.0](https://github.com/ajaxorg/ace/compare/v1.37.5...v1.38.0) (2025-02-12)
6+
7+
8+
### Features
9+
10+
* **popup:** add supporting skipFilter flag for popup item ([#5740](https://github.com/ajaxorg/ace/issues/5740)) ([0db7585](https://github.com/ajaxorg/ace/commit/0db7585ae0ccbd353091426f60ac3d9e53e182c4))
11+
12+
13+
### Bug Fixes
14+
15+
* **AcePopup:** fix aria-posinset issue on google chrome ([#5719](https://github.com/ajaxorg/ace/issues/5719)) ([09a0c5a](https://github.com/ajaxorg/ace/commit/09a0c5a11106754916a4fc324a35e8daf84055ba))
16+
* 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))
17+
* highlight indent guides with wrapped lines ([#5621](https://github.com/ajaxorg/ace/issues/5621)) ([77b9fe1](https://github.com/ajaxorg/ace/commit/77b9fe1bc0b10b4c3fb2780d65f9d256d60634ce))
18+
* improve aria attributes of popup elements ([#5739](https://github.com/ajaxorg/ace/issues/5739)) ([09fba2e](https://github.com/ajaxorg/ace/commit/09fba2e7347cd499c979e53ec7a8d8ee1fd48918))
19+
* types for setTimeout/setInterval calls ([#5726](https://github.com/ajaxorg/ace/issues/5726)) ([9a76656](https://github.com/ajaxorg/ace/commit/9a76656acc9528a4a2e92a3b72c4d6598d3a0a8c))
20+
* **VirtualRenderer:** fix scrollbar overlap on autocompletion ([#5713](https://github.com/ajaxorg/ace/issues/5713)) ([5acea6d](https://github.com/ajaxorg/ace/commit/5acea6d9200f4ca0c8495350cda6e41e8351913f))
21+
* 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))
22+
523
### [1.37.5](https://github.com/ajaxorg/ace/compare/v1.37.4...v1.37.5) (2025-01-16)
624

725

ace.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -982,6 +982,6 @@ declare module "ace-code" {
982982
import { Range } from "ace-code/src/range";
983983
import { UndoManager } from "ace-code/src/undomanager";
984984
import { VirtualRenderer as Renderer } from "ace-code/src/virtual_renderer";
985-
export var version: "1.37.5";
985+
export var version: "1.38.0";
986986
export { Range, Editor, EditSession, UndoManager, Renderer as VirtualRenderer };
987987
}

build

Submodule build updated 52 files

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ace-code",
33
"description": "Ajax.org Code Editor is a full featured source code highlighting editor that powers the Cloud9 IDE",
4-
"version": "1.37.5",
4+
"version": "1.38.0",
55
"homepage": "https://github.com/ajaxorg/ace",
66
"engines": {
77
"node": ">= 0.6.0"

src/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,6 @@ var reportErrorIfPathIsNotConfigured = function() {
197197
}
198198
};
199199

200-
exports.version = "1.37.5";
200+
exports.version = "1.38.0";
201201

202202

types/ace-modules.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ declare module "ace-code/src/config" {
371371
string
372372
], onLoad: (module: any) => void) => void;
373373
setModuleLoader: (moduleName: any, onLoad: any) => void;
374-
version: "1.37.5";
374+
version: "1.38.0";
375375
};
376376
export = _exports;
377377
}

0 commit comments

Comments
 (0)