From a0ca288c77a39579914d5db8c94df9769718cc65 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 10 Oct 2024 14:08:53 -0700 Subject: [PATCH] Bump bootstrap from 4.6.2 to 5.0.0 (#7301) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [bootstrap](https://github.com/twbs/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

๐ŸŽจ CSS

โ˜•๏ธ JavaScript

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=bootstrap&package-manager=npm_and_yarn&previous-version=4.6.2&new-version=5.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
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 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](https://github.com/AzureAD/microsoft-authentication-library-for-js/network/alerts).
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .../samples/electron-webpack/package.json | 2 +- package-lock.json | 40 +++++-------------- .../ElectronSystemBrowserTestApp/package.json | 2 +- 3 files changed, 12 insertions(+), 32 deletions(-) diff --git a/extensions/samples/electron-webpack/package.json b/extensions/samples/electron-webpack/package.json index 21ba931ef2..e7330cf750 100644 --- a/extensions/samples/electron-webpack/package.json +++ b/extensions/samples/electron-webpack/package.json @@ -55,7 +55,7 @@ "dependencies": { "@azure/msal-node": "^2.6.2", "@azure/msal-node-extensions": "^1.0.10", - "bootstrap": "^4.6.2", + "bootstrap": "^5.0.0", "electron-squirrel-startup": "^1.0.0" } } diff --git a/package-lock.json b/package-lock.json index 703bcd1e1d..97439fb4cd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -88,7 +88,7 @@ "dependencies": { "@azure/msal-node": "^2.6.2", "@azure/msal-node-extensions": "^1.0.10", - "bootstrap": "^4.6.2", + "bootstrap": "^5.0.0", "electron-squirrel-startup": "^1.0.0" }, "devDependencies": { @@ -14960,21 +14960,15 @@ "optional": true }, "node_modules/bootstrap": { - "version": "4.6.2", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/twbs" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/bootstrap" - } - ], - "license": "MIT", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.0.0.tgz", + "integrity": "sha512-tmhPET9B9qCl8dCofvHeiIhi49iBt0EehmIsziZib65k1erBW1rHhj2s/2JsuQh5Pq+xz2E9bEbzp9B7xHG+VA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + }, "peerDependencies": { - "jquery": "1.9.1 - 3", - "popper.js": "^1.16.1" + "@popperjs/core": "^2.9.2" } }, "node_modules/brace-expansion": { @@ -24031,11 +24025,6 @@ "url": "https://github.com/sponsors/panva" } }, - "node_modules/jquery": { - "version": "3.7.1", - "license": "MIT", - "peer": true - }, "node_modules/js-base64": { "version": "3.7.7", "dev": true, @@ -29243,15 +29232,6 @@ "node": ">=10.4.0" } }, - "node_modules/popper.js": { - "version": "1.16.1", - "license": "MIT", - "peer": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/popperjs" - } - }, "node_modules/possible-typed-array-names": { "version": "1.0.0", "license": "MIT", @@ -64535,7 +64515,7 @@ "dependencies": { "@azure/msal-node": "^2.1.0", "axios": "^1.7.4", - "bootstrap": "^5.2.3", + "bootstrap": "^5.0.0", "electron-squirrel-startup": "^1.0.0", "react": "^18.2.0", "react-bootstrap": "^2.7.2", diff --git a/samples/msal-node-samples/ElectronSystemBrowserTestApp/package.json b/samples/msal-node-samples/ElectronSystemBrowserTestApp/package.json index f0805762a8..c8ff7771e9 100644 --- a/samples/msal-node-samples/ElectronSystemBrowserTestApp/package.json +++ b/samples/msal-node-samples/ElectronSystemBrowserTestApp/package.json @@ -58,7 +58,7 @@ "dependencies": { "@azure/msal-node": "^2.1.0", "axios": "^1.7.4", - "bootstrap": "^5.2.3", + "bootstrap": "^5.0.0", "electron-squirrel-startup": "^1.0.0", "react": "^18.2.0", "react-bootstrap": "^2.7.2",