From 48f925a27bfb9d9b9e76dc83e7db9f41f74f07a4 Mon Sep 17 00:00:00 2001 From: Martin Raifer Date: Thu, 10 Nov 2022 12:35:21 +0100 Subject: [PATCH] v2.23.0 Signed-off-by: Martin Raifer --- CHANGELOG.md | 11 ++++++----- modules/core/context.js | 2 +- package.json | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d766c4295..5a4f203c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,16 +36,17 @@ _Breaking developer changes, which may affect downstream projects or sites that --> -# Unreleased +# 2.23.0 +##### 2022-Nov-10 -#### :newspaper: News -#### :tada: New Features +#### :mega: Release Highlights +* Significantly quicker startup due to faster loading of presets ([#9347], thanks [@bhousel])! +* Add support for updated tagging presets schema version 5 ([#9320]) #### :sparkles: Usability & Accessibility * Trigger context menu by long-presses of non-mouse inputs (touch or stylus) ([#8105]) * Improve comboboxes ([#9344]): * (raw) tag values can be also entered (and are autocompleted) when localized strings are available for the respective options * autocomplete now also works when taginfo service is slow or unavailable -#### :white_check_mark: Validation #### :bug: Bugfixes * Fix selection of best background source when starting on a zoomed-out view ([#9325]) * Fix leaking of localized strings in combo fields when taginfo service is unavailable ([#9342]) @@ -55,7 +56,7 @@ _Breaking developer changes, which may affect downstream projects or sites that * Fix phone number placeholder text now always using the correct localization ([#8380], thanks [@k-yle]) * Don't don't suggest to "connect the ends" if a feature with area tags also matches a line preset ([#6525]) #### :hourglass: Performance -* Speed up start-up by not pre-resolving complex locationSets ([#9347]) +* Speed up start-up by not pre-resolving complex locationSets ([#9347], thanks [@bhousel]) #### :rocket: Presets * Support tagging schema v5 ([#9320]): * Add new field type `colour` ([schema-builder#38], [#8782]) diff --git a/modules/core/context.js b/modules/core/context.js index 4acc70973..b0c9b8d7a 100644 --- a/modules/core/context.js +++ b/modules/core/context.js @@ -25,7 +25,7 @@ export function coreContext() { let context = utilRebind({}, dispatch, 'on'); let _deferred = new Set(); - context.version = '2.23.0-dev'; + context.version = '2.23.0'; context.privacyVersion = '20201202'; // iD will alter the hash so cache the parameters intended to setup the session diff --git a/package.json b/package.json index f1d7e9515..6704b4e68 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iD", - "version": "2.23.0-dev", + "version": "2.23.0", "description": "A friendly editor for OpenStreetMap", "main": "dist/iD.min.js", "repository": "github:openstreetmap/iD",