@angular-bootstrap/ngbootstrap 2.1.0 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.1.1 - 2026-07-27
4
+
5
+ ### Security
6
+
7
+ - Updated Angular 22, ng-packagr, Jest, ESLint, TypeScript tooling, and their transitive dependencies to patched compatible releases.
8
+ - Added targeted Jest dependency overrides to remove vulnerable legacy glob and brace-expansion paths without changing the published library API.
9
+ - Refreshed the pnpm lockfile so the complete library dependency graph reports no known vulnerabilities.
10
+
11
+ ### Changed
12
+
13
+ - Updated the security audit command to include build and test dependencies while isolating the public library from any parent pnpm workspace.
14
+
15
+ ### Fixed
16
+
17
+ - Removed a dead DataGrid test assignment surfaced by the updated ESLint rules.
18
+
3
19
  ## 2.1.0 - 2026-07-25
4
20
 
5
21
  ### Added
package/RELEASE_NOTES.md CHANGED
@@ -1,27 +1,26 @@
1
- # @angular-bootstrap/ngbootstrap 2.1.0
1
+ # @angular-bootstrap/ngbootstrap 2.1.1
2
2
 
3
- This release expands the DataGrid with first-class grouping support and rounds out several related grid behaviors and docs updates.
3
+ This patch release updates the library development and release dependency graph to patched compatible versions. It does not change the public component API or introduce breaking behavior.
4
4
 
5
- ## Added
5
+ ## Security
6
6
 
7
- - DataGrid grouping with `groupable` and `group` inputs for single-field or multi-field grouping.
8
- - `groupChange` and grouped `dataStateChange` payloads for manual or server-side grouping flows.
9
- - Drag-to-group interactions, grouped rows, expand/collapse behavior, aggregate output, and custom group header/footer templates.
10
- - Sticky group headers and sticky group footers for larger grouped datasets.
7
+ - Updated Angular 22, ng-packagr, Jest, ESLint, TypeScript tooling, and affected transitive dependencies.
8
+ - Added narrowly scoped Jest dependency overrides for patched glob and brace-expansion paths.
9
+ - Refreshed the pnpm lockfile so the complete library dependency graph reports no known vulnerabilities.
11
10
 
12
11
  ## Changed
13
12
 
14
- - Docs, package copy, and examples now position ngbootstrap as Angular UI for data-heavy apps.
15
- - Grouping examples now build on a shared realistic dataset and extend it across automatic grouping, manual grouping, aggregates, templates, and sticky group examples.
13
+ - The security audit now includes build and test tooling in addition to published runtime dependencies.
14
+ - The audit command explicitly isolates this public library from a parent pnpm workspace when the repository is developed inside the private docs workspace.
16
15
 
17
- ## Fixed
16
+ ## Verification
18
17
 
19
- - Sorting continues to behave correctly in grouped scenarios.
20
- - In-cell editing activation is more reliable.
21
- - Sticky columns and column reordering behavior were corrected in the DataGrid docs and integration flow.
18
+ - Security audit: no known vulnerabilities.
19
+ - Lint: passed.
20
+ - Jest: 27 suites and 319 tests passed.
21
+ - Angular package build and release package validation: passed.
22
22
 
23
- ## Notes
23
+ ## Compatibility
24
24
 
25
- PDF and Excel export remain dependency-free by default.
26
-
27
- Use a custom `PdfExportAdapter` or `ExcelExportAdapter` when your product needs branded documents, advanced workbook generation, charts, images, or other highly customized export output.
25
+ - Angular peer support remains `>=21.0.0 <23.0.0`.
26
+ - No public DataGrid, drag-and-drop, Form Builder, or component APIs changed in this release.