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

Bump bootstrap from 4.6.2 to 5.0.0 #852

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 9, 2024

Bumps bootstrap from 4.6.2 to 5.0.0.

Release notes

Sourced from bootstrap's releases.

v5.0.0

Highlights

#32155: Updated make-col() mixin to generate equal columns when no size is specified #32763: Added new color-scheme() mixin #33389: Dropdown menus now have option become clickable #33453: Added new docs footer #33548: Offcanvas header components are now vertically aligned #33549: Added offcanvas-top modifier #33634: Added support for .dropdown-items wrapped in <li>s #33626: Fix v5 regressions in tab dropdown functionality

🚀 Features

  • #32763: Add color-scheme mixin
  • #33389: Dropdown — Add option to make the dropdown menu clickable
  • #33549: Add offcanvas-top modifier

🎨 CSS

  • #32155: Add equal column mixin
  • #32763: Add color-scheme mixin
  • #33292: Make accordion icon rotation more natural
  • #33411: Fix validation feedback icon in select multiple
  • #33478: Make .nav-link color consistent when using buttons
  • #33482: Dropdown — Apply positioning only when Popper is not used
  • #33548: Vertically align offcanvas header components
  • #33549: Add offcanvas-top modifier
  • #33550: Spinner alignment changes
  • #33598: Hide validation icons from multiple selects
  • #33600: Have $form-check-input-border's default derive from $black
  • #33607: Reduce color-scheme complexity
  • #33642: use :read-only css selector instead [readonly] for consistency
  • #33658: fix: use list-group variable instead of alert
  • #33736: accordion: fix border-top on Firefox

☕️ JavaScript

  • #32439: Decouple BackDrop from modal
  • #33245: Decouple Modal's scrollbar functionality
  • #33249: Simplify Modal Config
  • #33250: Simplify ScrollSpy config
  • #33310: fix: make EventHandler better handle mouseenter/mouseleave events
  • #33389: Dropdown — Add option to make the dropdown menu clickable
  • #33429: Remove element event listeners through base component
  • #33451: Add missing things in hide method of dropdown
  • #33456: Use our isDisabled util on dropdown
  • #33466: Refactor dropdown's hide functionality
  • #33479: Fix dropdown escape propagation
  • #33496: Use cached noop function

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 9, 2024
@amotl
Copy link
Member

amotl commented Oct 25, 2024

I am hesitant merging this without manual verification that nothing goes south. Maybe you can have a quick look, @msbt? Please don't put in too many efforts fixing this, we can easily keep using Bootstrap 4, and this project's maintenance is offically on a hiatus.

@amotl amotl marked this pull request as draft October 25, 2024 12:45
@amotl
Copy link
Member

amotl commented Oct 25, 2024

@dependabot recreate

Bumps [bootstrap](https://github.com/twbs/bootstrap) from 4.6.2 to 5.0.0.
- [Release notes](https://github.com/twbs/bootstrap/releases)
- [Commits](twbs/bootstrap@v4.6.2...v5.0.0)

---
updated-dependencies:
- dependency-name: bootstrap
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/bootstrap-5.0.0 branch from b8db81f to 7ceab92 Compare October 25, 2024 13:14
@cla-bot cla-bot bot added the cla-signed label Oct 25, 2024
@msbt
Copy link
Contributor

msbt commented Oct 28, 2024

@amotl I went down the rabbithole to see what happens when we upgrade bootstrap and node (#863). Updating bootstrap and removing node-sass without updating the sass and sass-loader packages wasn't promising. It seems to have worked when updating both (also, bootstrap 5.3 instead of 5.0), the only caveat is pinning the sass module to a specific version ("sass": "1.77.6",, see 1 and 2), due to many deprecation warnings, which don't appear in that version.

Is there any reason why dependabot was going with bootstrap 5.0 and not the latest, 5.3?

So after my local changes and removing node-sass via #863 I don't see any warnings and the gui looks as usual - as far as I can tell. Should I commit the changes and you can also give it a go?

Footnotes

  1. https://github.com/twbs/bootstrap/issues/40621#issuecomment-2359914180

  2. https://github.com/twbs/bootstrap/issues/40849#issuecomment-2419614620

@amotl
Copy link
Member

amotl commented Oct 28, 2024

Wow. Thanks. Yes, please submit your updates. According to your evaluations, I think we could consider merging them. Will you use a separate PR, eventually including individual commits from both this one (GH-852), and the other (GH-863)?

We can still integrate them individually for separation of concerns, and then rebase your branch afterwards. However, for the time in flight/review, your PR would resemble an integration branch where everything should work well after modernizing those few bits? That would be well appreciated.

/cc @kneth

@amotl
Copy link
Member

amotl commented Oct 28, 2024

Update: This patch is incomplete. That other one intends to implement the update successfully. Thanks again, @msbt.

@amotl
Copy link
Member

amotl commented Oct 28, 2024

Superseded by GH-864, closing.

@amotl amotl closed this Oct 28, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 28, 2024

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@amotl amotl deleted the dependabot/npm_and_yarn/bootstrap-5.0.0 branch October 28, 2024 13:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cla-signed dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants