Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency @ng-bootstrap/ng-bootstrap to v16 #67

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 2, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@ng-bootstrap/ng-bootstrap 13.0.0 -> 16.0.0 age adoption passing confidence

Release Notes

ng-bootstrap/ng-bootstrap (@​ng-bootstrap/ng-bootstrap)

v16.0.0

Compare Source

This release bumps minimum required versions to Angular 17.0.0 and Bootstrap 5.3.2.

Main features:

  • dark mode support for all components and demo site.
  • new stacked progressbar markup in Bootstrap 5.3 allowed us to do the long-standing stacked progressbar feature request.
  • Ethiopian calendar for datepicker.
  • old component-based accordion implementation is removed (it was deprecated in 14.1.0 in favor of directive-based implementation).
  • we're using new control flow syntax internally and for all demos.

Please make sure to check the BREAKING CHANGES section below.

Bug Fixes
Features
  • bootstrap 5.3 and dark mode (99c2162), closes #​4450
  • add axe a11y tests of the demo site (#​4588) (b573a2b)
  • progressbar: add stacked progressbar (#​4621) (1982133)
  • datepicker: add ethiopian date picker (bf02fb0), closes #​4499
  • migrate to the new control flow syntax (6c3570b)
  • accordion: remove type from configuration (ed7732a)
  • accordion: remove component-based version (7aab9e3)
  • dropdown: remove deprecated NgbNavbar directive (c2c8061)
BREAKING CHANGES
  • minimum required versions are now Angular 17.0.0, Bootstrap 5.3.2 and Popper 2.11.8
  • accordion: removed component-based accordion. It was deprecated in 14.1.0
  • accordion: removed type property from the NgbAccordionConfig. It was deprecated in 14.1.0.
  • we use inject function internally more than before, so constructor signatures have changed for all components. If you extend our components (and you really shouldn't do it), you might need to update your code.
  • nav: NgbNavbar directive is removed, as it is no longer required. It was deprecated in 14.2.0.
  • nav: default value for the @Input() keyboard: boolean | 'changeWithArrows' was changed from false to true, meaning that all navs are now keyboard accessible by default and focus between navs moves with arrow keys. Focusing behavior follows the WAI-ARIA tab recommendation as well as Bootstrap's nav implementation. To turn off keyboard support set keyboard to false either on the individual NgbNav or via NgbNavConfig

15.1.2 (2023-10-24)

This release aligns tooltip closing behavior with Bootstrap (both desktop and mobile), fixes a long-standing bug with tooltip opening issues.

While we don't consider it a breaking change, some complex existing tooltips might behave differently.

Bug Fixes
  • accordion: initialize destroyOnHide from configuration (a8b39be)
  • rating: generate correct aria-readonly/disabled attributes (#​4586) (f99bc96)
  • tooltip: align closing behavior with Bootstrap (55f45fd), closes #​3889
  • tooltip: fixed closing on hover from arrow direction (4417ee6), closes #​3997
  • tooltip: remove padding for non-standard placements (c7c0978), closes #​4369

15.1.1 (2023-08-07)

Bug Fixes
  • accordion: override destroyOnHide correctly (#​4545) (e0f15c6), closes #​4541
  • dropdown: fix arrow navigation inside shadow dom (#​4548) (995d22d), closes #​4540
  • scrollspy: change active to '' (empty) after explicit stop (cec803d)
  • scrollspy: recompute active when unobserving fragments (4dac691)

v15.1.2

Compare Source

This release aligns tooltip closing behavior with Bootstrap (both desktop and mobile), fixes a long-standing bug with tooltip opening issues.

While we don't consider it a breaking change, some complex existing tooltips might behave differently.

Bug Fixes
  • accordion: initialize destroyOnHide from configuration (a8b39be)
  • rating: generate correct aria-readonly/disabled attributes (#​4586) (f99bc96)
  • tooltip: align closing behavior with Bootstrap (55f45fd), closes #​3889
  • tooltip: fixed closing on hover from arrow direction (4417ee6), closes #​3997
  • tooltip: remove padding for non-standard placements (c7c0978), closes #​4369

v15.1.1

Compare Source

Bug Fixes
  • accordion: override destroyOnHide correctly (#​4545) (e0f15c6), closes #​4541
  • dropdown: fix arrow navigation inside shadow dom (#​4548) (995d22d), closes #​4540
  • scrollspy: change active to '' (empty) after explicit stop (cec803d)
  • scrollspy: recompute active when unobserving fragments (4dac691)

v15.1.0

Compare Source

This release introduces Scrollspy service and directives.

Features

15.0.1 (2023-06-06)

Bug Fixes

v15.0.1

Compare Source

Bug Fixes

v15.0.0

Compare Source

This release bumps minimum supported version of Angular to 16.0.0.

No new features are introduced since 14.x, apart from some inputs becoming required.

Bug Fixes
Features
BREAKING CHANGES
  • datepicker: Might be breaking, if datepicker arrows are customized.
    Datepicker navigation arrow markup.

BEFORE:

<div class="ngb-dp-arrow">       <!-- left -->
<div class="ngb-dp-arrow right"> <!-- right -->

AFTER:

<div class="ngb-dp-arrow ngb-dp-arrow-prev"> <!-- prev -->
<div class="ngb-dp-arrow ngb-dp-arrow-next"> <!-- next -->

v14.2.0

Compare Source

Bug Fixes
Features

14.1.1 (2023-05-02)

Bug Fixes

v14.1.1

Compare Source

Bug Fixes

v14.1.0

Compare Source

This release improves navs accessibility and introduces a new accordion implementation based on directives. The new implementation is more flexible and allows for easier customization. Old accordion implementation is still available, but deprecated and will be removed in one of the future major releases.

See the documentation for more details.

Bug Fixes
Features
  • accordion: export NgbAccordionItem directive to the template (#​4479) (c0c6358)
  • accordion: add NgbAccordionButton directive (f1eefe0)
  • accordion: new accordion implemented with directives (#​4437) (fd56d0e)
  • nav: allow using NgbNavLink on a button element (7db38b8)
  • rating: allow customizing aria-textvalue (#​4453) (064fef3)

14.0.1 (2023-01-09)

Fixes a DI issue with modal dependencies in lazy-loaded modules introduced in 14.0.0.

Bug Fixes

v14.0.1

Compare Source

Fixes a DI issue with modal dependencies in lazy-loaded modules introduced in 14.0.0.

Bug Fixes

v14.0.0

Compare Source

This release bumps minimum supported versions to Angular 15.0.0, Bootstrap 5.2.3 and Popper 2.11.6.

It also introduces support for standalone components, which means that you can now import ng-bootstrap inside your
standalone components in 3 ways:

imports: [NgbModule]                     // import all ng-bootstrap components
imports: [NgbNavModule]                  // import a certain type of components
imports: [NgbNav, NgbNavOutlet, etc... ] // import required components individually

The demo site, stackblitzes and documentation have been updated to reflect these changes.

Bug Fixes
  • accordion: add missing forwardRef (9e01092)
  • datepicker: add missing forwardRef (1e68c9b)
Features
  • migrate all components and directives to standalone (5e6d11c)

v13.1.1

Compare Source

Bug Fixes

v13.1.0

Compare Source

This release adds several features, notably:

Bug Fixes
  • collapse: restore previous transition logic (#​4388) (ec372c3)
  • collapse: solved running transition twice (#​4374) (9c8bf98)
  • datepicker: add NgbDateStructAdapter to export list (#​4335) (a6e9f2e)
  • positioning: generate correct RTL placements for popper (5379cd0)
  • offcanvas: change animations to be like in Bootstrap 5.2.0 (#​4366) (cb4406d)
  • schematics: install @angular/localize to devDependencies (5289e8a)
  • timepicker: add exportAs property for ngbTimepicker (#​3980) (94e7b35)
Features
  • positioning: allow configuring Popper via popperOptions API (#​4323) (a6f6803)
  • collapse: add horizontal collapse (98f0527)
  • offcanvas: add static backdrop option (#​4367) (fe4c798)
  • popover: allow specifying target for popover (711bfd3)
  • progressbar: add aria-label (6a3ebaa), closes #​4133
  • rating: allow overriding tabindex with provided value (#​4309) (9d80e66)
  • tooltip: allow specifying target for tooltip (dc82372)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Copy link
Contributor Author

renovate bot commented Jan 2, 2024

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: jhipster-app@0.0.1-SNAPSHOT
npm ERR! Found: @angular/common@14.2.0
npm ERR! node_modules/@angular/common
npm ERR!   @angular/common@"14.2.0" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer @angular/common@"^17.0.0" from @ng-bootstrap/ng-bootstrap@16.0.0
npm ERR! node_modules/@ng-bootstrap/ng-bootstrap
npm ERR!   @ng-bootstrap/ng-bootstrap@"16.0.0" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /tmp/renovate/cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate/cache/others/npm/_logs/2024-01-02T20_59_35_634Z-debug-0.log

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant