From ea1f12b20eee25287eeb793e20f8986a8f885850 Mon Sep 17 00:00:00 2001 From: Alice Koreman Date: Mon, 11 Dec 2023 16:10:37 +0100 Subject: [PATCH] release v1.32.1 --- CHANGELOG.md | 10 ++++++++++ build | 2 +- package.json | 2 +- src/config.js | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6781ddebc9b..2739445a697 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ 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.32.1](https://github.com/ajaxorg/ace/compare/v1.32.0...v1.32.1) (2023-12-11) + + +### Bug Fixes + +* don't show loading state when empty completer array is provided ([7a8a929](https://github.com/ajaxorg/ace/commit/7a8a92933b3fde75907612d106643d28efa2d776)) +* prevent browser scroll while scrolling over the tooltip ([#5414](https://github.com/ajaxorg/ace/issues/5414)) ([c6475c0](https://github.com/ajaxorg/ace/commit/c6475c00bcfa49dde37ef9de06ebba82ba5ba15d)) +* switch aria-selected to aria-current for webkit ([#5416](https://github.com/ajaxorg/ace/issues/5416)) ([bf1a4ea](https://github.com/ajaxorg/ace/commit/bf1a4ea607ed09b5a299390dd2daa5c1d0019e00)), closes [#5403](https://github.com/ajaxorg/ace/issues/5403) +* yaml worker errors at undefined row/column ([06cc12a](https://github.com/ajaxorg/ace/commit/06cc12aad98176d931a1c1cf9a701f4ac0c33de5)) + ## [1.32.0](https://github.com/ajaxorg/ace/compare/v1.31.2...v1.32.0) (2023-11-30) diff --git a/build b/build index f336306c63c..e515d12499b 160000 --- a/build +++ b/build @@ -1 +1 @@ -Subproject commit f336306c63c57c0b8b2dd9c1ec2eed55b8bfd209 +Subproject commit e515d12499b9c3131fd4fd2deb507db739788bbb diff --git a/package.json b/package.json index d5e9b724bc7..d2f205e20c1 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.32.0", + "version": "1.32.1", "homepage": "http://github.com/ajaxorg/ace", "engines": { "node": ">= 0.6.0" diff --git a/src/config.js b/src/config.js index 56b22687fe9..89351f3cab9 100644 --- a/src/config.js +++ b/src/config.js @@ -194,6 +194,6 @@ var reportErrorIfPathIsNotConfigured = function() { } }; -exports.version = "1.32.0"; +exports.version = "1.32.1";