From e6c7e86a713f6826e1eaadf4002c82ac857e34d9 Mon Sep 17 00:00:00 2001 From: Glenn <33450392+glenn2223@users.noreply.github.com> Date: Mon, 21 Oct 2024 12:05:41 +0100 Subject: [PATCH 1/2] Prep v1.1.0 ## 1.1.0]- 2024-10-21 [Compare to previous release][comp:1.1.0] ### Added - A string `source` can now contain `{{term}}`, to accommodate paths where `?term=XXX` isn't suitable - This means you could now use `example.com/search/{{term}}/other-stuff` ### Fixed - The mouse being over the popup when it's rendered no longer selects that value whilst typing - A string `source` can now contain a query string (`?`) - It now checks the source and adds either `?` or `&`, whichever is appropriate ### Changes - Developer dependency bumps (no user-facing changes) - Added CI based testing for every PR [comp:1.1.0]: https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/compare/v1.0.1...v1.1.0 --- CHANGELOG.md | 12 +++++++++--- README.md | 2 ++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ae0555..b919840 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,7 +26,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## UNPUBLISHED +## [1.1.0] - 2024-10-21 + +[Compare to previous release][comp:1.1.0] ### Added @@ -44,6 +46,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Developer dependency bumps (no user-facing changes) - Added CI based testing for every PR +[comp:1.1.0]: https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/compare/v1.0.1...v1.1.0 +[1.1.0]: https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/release/tag/v1.1.0 + ## [1.0.1] - 2023-11-14 [Compare to previous release][comp:1.0.1] @@ -61,11 +66,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Developer dependency bumps (no user-facing changes) - Updated publish action, `tslib` requirement and node version (no user-facing changes) +[comp:1.0.1]: https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/compare/v1.0.0...v1.0.1 +[1.0.1]: https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/release/tag/v1.0.1 + ## [1.0.0] - 2022-12-13 **This was the first release** -[comp:1.0.1]: https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/compare/v1.0.0...v1.0.1 -[1.0.1]: https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/release/tag/v1.0.1 [1.0.0]: https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/release/tag/v1.0.0 [cl:tp]: https://github.com/TopMarksDevelopment/JavaScript.Position/blob/main/CHANGELOG.md diff --git a/README.md b/README.md index 31feec1..3bc06e7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Autocomplete (A JavaScript package) +[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/TopMarksDevelopment/JavaScript.Autocomplete/test.yml?style=for-the-badge&label=Tests)](https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/actions/workflows/test.yml) + A small package to provide an autocomplete list as a user is typing. ### Contents From 65bb02dedd02b2dfac714c08c0846c30688c80ba Mon Sep 17 00:00:00 2001 From: Glenn <33450392+glenn2223@users.noreply.github.com> Date: Mon, 21 Oct 2024 12:12:39 +0100 Subject: [PATCH 2/2] Prep v1.1.0 ## 1.1.0 - 2024-10-21 [Compare to previous release][comp:1.1.0] ### Added - A string `source` can now contain `{{term}}`, to accommodate paths where `?term=XXX` isn't suitable - This means you could now use `example.com/search/{{term}}/other-stuff` ### Fixed - The mouse being over the popup when it's rendered no longer selects that value whilst typing - A string `source` can now contain a query string (`?`) - It now checks the source and adds either `?` or `&`, whichever is appropriate ### Changes - Developer dependency bumps (no user-facing changes) - Added CI based testing for every PR [comp:1.1.0]: https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/compare/v1.0.1...v1.1.0 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index babb46c..ecc43c0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@topmarksdevelopment/autocomplete", - "version": "1.0.1", + "version": "1.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@topmarksdevelopment/autocomplete", - "version": "1.0.1", + "version": "1.1.0", "license": "MIT", "dependencies": { "@topmarksdevelopment/position": "^1.0.3" diff --git a/package.json b/package.json index b1c209b..be87214 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@topmarksdevelopment/autocomplete", - "version": "1.0.1", + "version": "1.1.0", "description": "Autocomplete user input - similar to JQuery UI Autocomplete", "author": "TopMarksDevelopment", "license": "MIT",