From 5e667881e3548a65f27c4c852d7943837b225b16 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 5 Jan 2024 18:10:45 -0500 Subject: [PATCH] rapid-v2.2.3 --- CHANGELOG.md | 16 +++++++++++++++- modules/Context.js | 2 +- package.json | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1101f7930..8b6fef9fb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,21 @@ _Breaking developer changes, which may affect downstream projects or sites that [@xxxx]: https://github.com/xxxx --> +# [2.2.3](https://github.com/facebook/Rapid/releases/tag/rapid-v2.2.3) +#### 2024-Jan-05 + +#### :bug: Bugfixes: +* [#1265] Autofocus preset search if the user clicked to open the preset pane +* [#1283] Fix display of community index text on post save screen +* [#1284] Marked crossing presets should avoid setting `crossing=yes` if a better tag can be used +* [#1286] Reset scroll of sidebar content when changing selection + +[#1265]: https://github.com/facebook/Rapid/issues/1265 +[#1283]: https://github.com/facebook/Rapid/issues/1283 +[#1284]: https://github.com/facebook/Rapid/issues/1284 +[#1286]: https://github.com/facebook/Rapid/issues/1286 + + # [2.2.2](https://github.com/facebook/Rapid/releases/tag/rapid-v2.2.2) #### 2024-Jan-02 @@ -58,7 +73,6 @@ _Breaking developer changes, which may affect downstream projects or sites that [#1282]: https://github.com/facebook/Rapid/issues/1282 - # [2.2.1](https://github.com/facebook/Rapid/releases/tag/rapid-v2.2.1) #### 2023-Dec-22 diff --git a/modules/Context.js b/modules/Context.js index e1acfc659e..fbcfd69ade 100644 --- a/modules/Context.js +++ b/modules/Context.js @@ -30,7 +30,7 @@ export class Context extends EventEmitter { super(); this.privacyVersion = '20201202'; - this.version = '2.2.2'; // see https://semver.org/ for examples + this.version = '2.2.3'; // see https://semver.org/ for examples // These may be set by our continuous deployment scripts, or left empty this.buildID = ''; diff --git a/package.json b/package.json index 44fce887fd..8ba0ad7b4d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@rapideditor/rapid", - "version": "2.2.2", + "version": "2.2.3", "description": "An AI-enhanced editor for OpenStreetMap", "main": "dist/rapid.min.js", "repository": "github:facebook/Rapid",