Skip to content

Commit e237e54

Browse files
author
Alice Koreman
committed
release v1.39.0
1 parent 08ac1a4 commit e237e54

File tree

6 files changed

+20
-5
lines changed

6 files changed

+20
-5
lines changed

Diff for: CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
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.39.0](https://github.com/ajaxorg/ace/compare/v1.38.0...v1.39.0) (2025-02-21)
6+
7+
8+
### Features
9+
10+
* Multiline Search Support: line breaks `\n` ([#5675](https://github.com/ajaxorg/ace/issues/5675)) ([06d51b9](https://github.com/ajaxorg/ace/commit/06d51b9164dc9dc39fbd6df26b7132f4b9580a4c))
11+
12+
13+
### Bug Fixes
14+
15+
* check if row is present when setting aria label of popup elements ([#5750](https://github.com/ajaxorg/ace/issues/5750)) ([ff16482](https://github.com/ajaxorg/ace/commit/ff16482101965fc4fce488a61a3cd0f9454d8e87))
16+
* gutter hover tooltip a11y improvements ([#5747](https://github.com/ajaxorg/ace/issues/5747)) ([fbe3ddc](https://github.com/ajaxorg/ace/commit/fbe3ddccb1248c9f8f4a6524d2ded7235d225b41))
17+
* narrowing platform to be either win or mac ([#5707](https://github.com/ajaxorg/ace/issues/5707)) ([18cc336](https://github.com/ajaxorg/ace/commit/18cc336187519107f47bb15e989008f48f0b1563))
18+
* set score completion item when skipfilter true ([#5749](https://github.com/ajaxorg/ace/issues/5749)) ([a27e1e8](https://github.com/ajaxorg/ace/commit/a27e1e8a5d3d912b3b554cd2b5916b58750e8e71))
19+
520
## [1.38.0](https://github.com/ajaxorg/ace/compare/v1.37.5...v1.38.0) (2025-02-12)
621

722

Diff for: ace.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1006,6 +1006,6 @@ declare module "ace-code" {
10061006
import { Range } from "ace-code/src/range";
10071007
import { UndoManager } from "ace-code/src/undomanager";
10081008
import { VirtualRenderer as Renderer } from "ace-code/src/virtual_renderer";
1009-
export var version: "1.38.0";
1009+
export var version: "1.39.0";
10101010
export { Range, Editor, EditSession, UndoManager, Renderer as VirtualRenderer };
10111011
}

Diff for: build

Submodule build updated 59 files

Diff for: package.json

+1-1
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.38.0",
4+
"version": "1.39.0",
55
"homepage": "https://github.com/ajaxorg/ace",
66
"engines": {
77
"node": ">= 0.6.0"

Diff for: src/config.js

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

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

202202

Diff for: types/ace-modules.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ declare module "ace-code/src/config" {
375375
string
376376
], onLoad: (module: any) => void) => void;
377377
setModuleLoader: (moduleName: any, onLoad: any) => void;
378-
version: "1.38.0";
378+
version: "1.39.0";
379379
};
380380
export = _exports;
381381
}

0 commit comments

Comments
 (0)