Skip to content

Commit

Permalink
prepare release 7.0.8 (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
macjohnny authored Oct 23, 2024
1 parent 3316043 commit 03bc04d
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 8 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog


## 7.0.8
* Enhancement: Add option `recreateValuesArray` to support immutable data structures in multi-selects.
[#376](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/376)

Thanks to @KristofGilis

* Enhancement: Add compatibility with `@angular/material`: `^19.0.0`
* Enhancement: Remove use of deprecated `event.keyCode`
[#485](https://github.com/bithost-gmbh/ngx-mat-select-search/pull/485)

Thanks to @sirh3e
* Documentation: Improved example doc strings
[#489](https://github.com/bithost-gmbh/ngx-mat-select-search/pull/489)

Thanks to @sirh3e

## 7.0.7
* Fix blocked aria-hidden when opening the dropdown for the first time
[#474](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/474)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,8 @@ To use the [i18n](https://angular.io/guide/i18n) API for translation of the labe

#### Current release

* `@angular/core`: `^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0`
* `@angular/material`: `^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0` with `MatSelectModule` (`@angular/material/select`)
* `@angular/core`: `^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0`
* `@angular/material`: `^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0` with `MatSelectModule` (`@angular/material/select`)

#### Version [`6.0.0`](https://github.com/bithost-gmbh/ngx-mat-select-search/tree/6.0.0)

Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ngx-mat-select-search",
"description": "Angular component providing an input field for searching / filtering MatSelect options of the Angular Material library.",
"version": "7.0.7",
"version": "7.0.8",
"license": "MIT",
"scripts": {
"ng": "ng",
Expand Down Expand Up @@ -32,7 +32,7 @@
],
"homepage": "https://github.com/bithost-gmbh/ngx-mat-select-search",
"peerDependencies": {
"@angular/material": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
"@angular/material": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/app/mat-select-search/ngx-mat-select-search.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { ReactiveFormsModule } from '@angular/forms';
import { MatSelectNoEntriesFoundDirective } from './mat-select-no-entries-found.directive';
import { MatDividerModule } from '@angular/material/divider';

export const MatSelectSearchVersion = '7.0.7';
export const MatSelectSearchVersion = '7.0.8';
export { MatSelectSearchClearDirective };
export { MatSelectNoEntriesFoundDirective };

Expand Down

0 comments on commit 03bc04d

Please sign in to comment.