Skip to content

build(deps): bump the production-dependencies group across 1 directory with 9 updates - #3852

Open
dependabot[bot] wants to merge 1 commit into
developmentfrom
dependabot/npm_and_yarn/development/production-dependencies-b7ba206cb6
Open

build(deps): bump the production-dependencies group across 1 directory with 9 updates#3852
dependabot[bot] wants to merge 1 commit into
developmentfrom
dependabot/npm_and_yarn/development/production-dependencies-b7ba206cb6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 15, 2026

Copy link
Copy Markdown
Contributor

Bumps the production-dependencies group with 9 updates in the / directory:

Package From To
admin-lte 4.1.0 4.8.1
datatables.net 2.3.8 3.0.2
datatables.net-bs5 2.3.8 3.0.2
datatables.net-buttons 3.2.6 4.0.2
datatables.net-buttons-bs5 3.2.6 4.0.2
datatables.net-select 3.1.3 4.0.1
datatables.net-select-bs5 3.1.3 4.0.1
jquery 3.7.1 4.0.0
tom-select 2.6.1 2.6.2

Updates admin-lte from 4.1.0 to 4.8.1

Release notes

Sourced from admin-lte's releases.

v4.8.1

A keyboard-accessibility fix on top of 4.8.0, reported by @​johnnyq (#6109).

Pagination lost its focus ring under data-lte-primary

Both palette sheets shipped a literal Sass variable name in their compiled output:

[data-lte-primary] .pagination {
  --bs-pagination-focus-box-shadow: 0 0 0 $pagination-focus-box-shadow-width rgba(var(--bs-primary-rgb), 0.25);
}

Sass does not evaluate $variables inside a custom property value — it emits them verbatim rather than failing — so the typo compiled cleanly, reached the browser as text, and made the declaration invalid. --bs-pagination-focus-box-shadow then resolved to nothing and keyboard focus on .page-link was invisible wherever data-lte-primary was in use. Introduced in 4.6.0.

The variable it named never existed in Bootstrap either (the pagination focus shadow comes from $focus-ring-box-shadow), so interpolating it would not have compiled. The value is now built from the focus-ring tokens and reuses the --bs-focus-ring-color the sheet already sets, so the ring follows the theme colour:

--bs-pagination-focus-box-shadow: 0 0 0 0.25rem var(--bs-focus-ring-color);

A unit test now scans the compiled output of all three sheets for unresolved Sass variables. Compilation cannot catch this class of typo, which is exactly why it shipped — this was the only instance in the repo, and adminlte.css was never affected.

Install

npm install admin-lte@4.8.1
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/admin-lte@4.8.1/dist/css/adminlte.min.css" />
<script src="https://cdn.jsdelivr.net/npm/admin-lte@4.8.1/dist/js/adminlte.min.js"></script>

Full notes: CHANGELOG

Full Changelog: ColorlibHQ/AdminLTE@v4.8.0...v4.8.1

v4.8.0

@​johnnyq measured the AdminLTE 3 palette against WCAG AA and found eight colours that miss it with the text v3 assigns them (#6110). The values stay exactly as they were — there is now a switch for the text.

data-lte-contrast="aa"

<html lang="en" data-lte-contrast="aa">

Flips the text on the eight colours whose assigned ink falls short, leaving every background byte-identical:

| Colour | Default (v3 rule) | With aa |

... (truncated)

Changelog

Sourced from admin-lte's changelog.

[4.8.1] - 2026-08-19

Fixed

  • Pagination lost its focus ring under data-lte-primary. Both palette sheets shipped a literal $pagination-focus-box-shadow-width in their compiled output: Sass does not evaluate $variables inside a custom property value — it emits them verbatim rather than failing — so the typo compiled cleanly, reached the browser as text, and made the declaration invalid. --bs-pagination-focus-box-shadow then resolved to nothing and keyboard focus on .page-link became invisible, a keyboard-accessibility regression introduced in 4.6.0. The value is now built from Bootstrap's focus-ring tokens (the variable it named never existed; the right one is $focus-ring-width) and follows the theme colour. A unit test now scans the compiled output of all three sheets for unresolved Sass variables, since compilation cannot catch this class of typo (#6109, reported by @​johnnyq).

[4.8.0] - 2026-08-19

Added

  • data-lte-contrast="aa" — WCAG AA text on the AdminLTE 3 palette, without changing a single colour. The v3 sheet reproduces v3's YIQ text rule faithfully, and that rule assigns white text to eight colours that do not reach 4.5:1 for normal text: teal (2.13:1), cyan (3.04), green (3.13), olive (3.51), lightblue (3.67), fuchsia (3.79), pink (3.82) and blue (3.98). The attribute — on <html>, <body> or any container — flips exactly those eight to the ink that passes (5.28:1 to 9.86:1), leaving every background byte-identical, and covers everywhere the palette paints text on its own colour: .text-bg-*, .bg-gradient-*, .card-* headers, .direct-chat-* and the button, badge and pill text data-lte-primary produces. It has to be true black: AdminLTE 3's own dark ink #1f2d3d clears 4.5:1 on only two of the eight, so the colours that already carry dark text (lime, orange, yellow) keep #1f2d3d and are left alone. Rules are emitted per colour only where the palette's own rule falls short, so the designed palette — every colour AA with white by construction — emits nothing and the switch costs it nothing. UI → Colors and Theme Customize gained a toggle that also re-pairs a flipped sidebar or header with data-bs-theme="light" so its nav links follow (#6110, reported by @​johnnyq).

Fixed

  • data-lte-primary gave Bootstrap's info white text on the v3 sheet. The primary presets applied the active sheet's contrast rule to Bootstrap's own theme colours too, and v3's YIQ test puts #0dcaf0 at 149.8 against a threshold of 150 — one tenth of a point from dark text — so data-lte-primary="info" produced white on cyan at 1.96:1 while .btn-info on the same page stayed black. Bootstrap's theme colours now keep Bootstrap's own contrast rule; the palette colours keep the sheet's.

[4.7.0] - 2026-08-18

Added

  • data-lte-print="plain" — print a page as a document, not as a copy of a screen. Two rules in the print stylesheet restyle content unconditionally: the target of every external link is printed after it (a[href^="http"]::after), and buttons are outlined in black. They are the HTML5 Boilerplate conventions and they suit printing a web page, but they are wrong for an invoice, quote or work order that goes to a customer — Pay online (https://pay.example.com/inv/12345?token=…) is not what anyone wants on paper. The attribute turns both off, on <html>, <body> or any single container, while text stays black on white so nothing becomes unreadable. Note that .d-print-none could not have served as the opt-out: it hides the element, and these rules restyle elements that are meant to print (#6108, requested by @​johnnyq). Documented as the “Printing a page as a document” recipe.

Fixed

  • Every sidebar item printed inside a black box. The print rule that outlines buttons also listed .nav-link, and the sidebar prints by design (since 4.0.0), so a printed page came out with a black rectangle around all 85 menu items. The outline now applies to .btn only; nav links keep the ink-saving black-on-transparent treatment and print as ordinary text (#6108).
  • The FAQ answer for “How do I change the primary colour?” recommended overriding --bs-primary on :root — the one approach that leaves .btn-primary blue, which is what led to #6107. It now gives the two that work: $primary in Sass, or data-lte-primary with the palette sheet.

[4.6.0] - 2026-08-18

Added

  • Make any palette colour Bootstrap's primarydata-lte-primary. Bootstrap compiles $primary into its components, so .btn-primary ships with --bs-btn-bg: #0d6efd rather than var(--bs-primary): overriding the token repainted the utilities and left every button, pagination, checkbox and focus ring blue, which is why a coloured skin looked half-applied. Both colour sheets now rewire those components to variables and point them at a colour with one attribute — <html lang="en" data-lte-primary="teal"> — covering .btn-primary / .btn-outline-primary (hover, active and disabled shaded exactly as Bootstrap shades its own), .btn-link, links and .link-primary, the --bs-primary token trio, .nav-pills, .pagination, .progress-bar, .list-group-item.active, .dropdown-item.active, .accordion, .form-control / .form-select focus, checkboxes, radios, switches, .form-range, --bs-focus-ring-color, and AdminLTE's .card-primary, .direct-chat-primary and .toast-primary — in both colour modes, with Bootstrap's dark-mode link tint. Nothing changes without the attribute, and it works on any container, so one page can carry more than one primary. Bootstrap's own theme colours are presets too (data-lte-primary="danger"), a brand colour outside the palette needs only --bs-primary (hover shades are then derived with color-mix() where supported), and $lte-palette-custom: ("brand": #hex) generates a full preset in Sass. Every skin preset now names the primary that goes with it, so applying a skin on UI → Colors or Theme Customize recolours the buttons too; both pages gained a picker and a live preview, and the Colors docs page a section (#6107, requested by @​johnnyq).

Fixed

  • d-print-none did nothing on the sidebar and the app wrapper. The print layout fix from 4.0.0 set display: grid !important on .app-wrapper and display: block !important on .app-sidebar, and — being later in the cascade and equally !important — beat Bootstrap's .d-print-none, so those two elements could not be hidden for printing. Both rules are now scoped with :not(.d-print-none): the print layout still applies to the standard layout, and the display utilities win where a page asks them to (#6106, reported by @​johnnyq).
  • The skip link went invisible on hover. .skip-link:hover painted var(--bs-primary-emphasis), which Bootstrap does not define (it emits --bs-primary-text-emphasis), so the background computed to transparent and left white text on the page background. It now uses the emphasis token — dark in light mode, light in dark mode — with the body background for the text.

Maintenance

  • Computed colours in both palette sheets are emitted as hex instead of Sass's rgb(5.647%, 40.784%, 39.216%) (cleancss leaves values inside custom properties alone), which pays for a good part of the new feature: adminlte-colors.css is ≈ 8 kB gzipped and adminlte-colors-v3.css ≈ 9.3 kB. adminlte.css is unchanged.
  • npm run palette -- --check and the unit tests also verify that every skin's primary exists in its own palette and that both sheets emit the rewiring rules and a preset per colour.

[4.5.0] - 2026-08-18

Added

  • The AdminLTE 3 palette, as it was — dist/css/adminlte-colors-v3.css. A second opt-in sheet for everyone who preferred the original colours: the 18 AdminLTE 3 colours (lightblue, navy, olive, lime, fuchsia, maroon, blue, indigo, purple, pink, red, orange, yellow, green, teal, cyan, gray, gray-dark) with the values from the 3.2 build and v3's text-colour rule (Bootstrap 4's YIQ test — white on lightblue, olive, teal…, dark on lime, orange, yellow), emitting exactly the same class families as the designed palette. Load one sheet or the other; they share class names. Built from the same Sass — new $lte-palette-contrast: "wcag" | "yiq" knob (with $lte-palette-yiq-threshold, $lte-palette-yiq-text-dark/-light) — so $lte-palette-custom and $lte-palette-aliases work with it too. Twelve AdminLTE 2 skin presets (skin-blue, -black, -purple, -green, -red, -yellow and their -light variants) in v4 terms. UI → Colors and Theme Customize gained a palette switch that swaps the stylesheet live and shows that palette's tiles, presets and pickers; the Colors docs page documents both. npm run palette -- --check and the unit tests keep the v3 map and its metadata in step (#6103, follow-up for @​johnnyq).

[4.4.1] - 2026-08-18

... (truncated)

Commits
  • b57f9b4 chore(release): 4.8.1
  • d88fa77 fix(colors): restore the pagination focus ring under data-lte-primary (#6109)
  • 29643c5 chore(release): 4.8.0
  • 68873ff feat(colors): data-lte-contrast="aa" — WCAG AA text on the v3 palette (#6110)
  • bb2c516 chore(release): 4.7.0
  • 31300c8 feat(print): data-lte-print="plain" for pages that print as documents (#6108)
  • 39bb5da chore(release): 4.6.0
  • 263991c feat(colors): data-lte-primary — any palette colour as Bootstrap's primary (#...
  • a64caaa fix(print): let d-print-none win over the print layout rules (#6106)
  • 50a31af chore(release): 4.5.0
  • Additional commits viewable in compare view

Updates datatables.net from 2.3.8 to 3.0.2

Release notes

Sourced from datatables.net's releases.

3.0.2

DataTables source 3.0.2

3.0.1

DataTables source 3.0.1

3.0.0

DataTables source 3.0.0

3.0.0-beta.2

DataTables source 3.0.0-beta.2

3.0.0-beta.1

DataTables source 3.0.0-beta.1

Commits
  • e9fb620 Release 3.0.2
  • 9cbc270 Updated: Formalise the :visible selector for `-type DataTable.ColumnSelecto...
  • 3842c1e Dev: Remove commented out code
  • 980fb3f Fix: Column sizing could be incorrect when using -init scrollX. This was pa...
  • 0d5dad3 Fix: When used in http: (i.e. non-secure connection) the APIs for DataTables ...
  • 7b141ea Fix: Plus license key would always show as invalid for an http: connection
  • 719800a Fix: If setting a key before the body has loaded, an error could be thrown
  • 38adbe5 Build: FontAwesome is no longer required for all Bulma examples
  • 973eb63 Build: Use a specific version for pdfmake
  • da6aaec Build: Use pdfmake 0.3.11
  • Additional commits viewable in compare view

Updates datatables.net-bs5 from 2.3.8 to 3.0.2

Release notes

Sourced from datatables.net-bs5's releases.

3.0.2

DataTables source 3.0.2

3.0.1

DataTables source 3.0.1

3.0.0

DataTables source 3.0.0

3.0.0-beta.2

DataTables source 3.0.0-beta.2

3.0.0-beta.1

DataTables source 3.0.0-beta.1

Commits
  • e9fb620 Release 3.0.2
  • 9cbc270 Updated: Formalise the :visible selector for `-type DataTable.ColumnSelecto...
  • 3842c1e Dev: Remove commented out code
  • 980fb3f Fix: Column sizing could be incorrect when using -init scrollX. This was pa...
  • 0d5dad3 Fix: When used in http: (i.e. non-secure connection) the APIs for DataTables ...
  • 7b141ea Fix: Plus license key would always show as invalid for an http: connection
  • 719800a Fix: If setting a key before the body has loaded, an error could be thrown
  • 38adbe5 Build: FontAwesome is no longer required for all Bulma examples
  • 973eb63 Build: Use a specific version for pdfmake
  • da6aaec Build: Use pdfmake 0.3.11
  • Additional commits viewable in compare view

Updates datatables.net-buttons from 3.2.6 to 4.0.2

Commits
  • 3a6b167 Release 4.0.2
  • 48494f3 Fix: -api buttons.info() popover wasn't displaying (resulting in no confirm...
  • 685627b Fix: Background for fixed layout popover in DataTables styling didn't have a ...
  • a4cb7f5 Fix: Bulma does not require FontAwesome, so we need to provide a fallback for...
  • 20335c2 Docs: Fixing links
  • c91141c Release 4.0.1
  • cfcae7e Fix: Bootstrap 4 - dropdown wasn't showing
  • d33b866 Fix: Potential ReDoS regexs
  • fb5bfba Examples: Correct links
  • 4268805 Release 4.0.0
  • Additional commits viewable in compare view

Updates datatables.net-buttons-bs5 from 3.2.6 to 4.0.2

Commits
  • 3a6b167 Release 4.0.2
  • 48494f3 Fix: -api buttons.info() popover wasn't displaying (resulting in no confirm...
  • 685627b Fix: Background for fixed layout popover in DataTables styling didn't have a ...
  • a4cb7f5 Fix: Bulma does not require FontAwesome, so we need to provide a fallback for...
  • 20335c2 Docs: Fixing links
  • c91141c Release 4.0.1
  • cfcae7e Fix: Bootstrap 4 - dropdown wasn't showing
  • d33b866 Fix: Potential ReDoS regexs
  • fb5bfba Examples: Correct links
  • 4268805 Release 4.0.0
  • Additional commits viewable in compare view

Updates datatables.net-select from 3.1.3 to 4.0.1

Commits
  • 947e7c0 Release 4.0.1
  • a1d3969 Fix: When invalidating a row (from data, not HTML) and a cell in the row uses...
  • ccbeae5 Docs: Fixing links
  • 521d1af Examples - fix: Error link related link
  • 2f18733 Release 4.0.0 ready
  • 633e8c0 Build: Use the exported variables for debug and build target
  • c4a50ce Docs: Update for non-jQuery events
  • d4ec1d4 Examples: Update index title
  • 76c586a Release 4.0.0-beta.1
  • f41d85a Dev: Not strict mode yet - that work will follow
  • Additional commits viewable in compare view

Updates datatables.net-select-bs5 from 3.1.3 to 4.0.1

Commits
  • 947e7c0 Release 4.0.1
  • a1d3969 Fix: When invalidating a row (from data, not HTML) and a cell in the row uses...
  • ccbeae5 Docs: Fixing links
  • 521d1af Examples - fix: Error link related link
  • 2f18733 Release 4.0.0 ready
  • 633e8c0 Build: Use the exported variables for debug and build target
  • c4a50ce Docs: Update for non-jQuery events
  • d4ec1d4 Examples: Update index title
  • 76c586a Release 4.0.0-beta.1
  • f41d85a Dev: Not strict mode yet - that work will follow
  • Additional commits viewable in compare view

Updates jquery from 3.7.1 to 4.0.0

Release notes

Sourced from jquery's releases.

Release 4.0.0

Changelog

https://blog.jquery.com/2026/01/17/jquery-4-0-0/

Ajax

  • Don't treat array data as binary (992a1911)
  • Allow processData: true even for binary data (ce264e07)
  • Support binary data (including FormData) (a7ed9a7b)
  • Support headers for script transport even when cross-domain (#5142, 6d136443)
  • Support null as success functions in jQuery.get (#4989, 74978b7e)
  • Don't auto-execute scripts unless dataType provided (#4822, 025da4dd)
  • Make responseJSON work for erroneous same-domain JSONP requests (68b4ec59)
  • Execute JSONP error script responses (#4771, a1e619b0)
  • Avoid CSP errors in the script transport for async requests (#3969, 07a8e4a1)
  • Drop the json to jsonp auto-promotion logic (#1799, #3376, e7b3bc48)
  • Overwrite s.contentType with content-type header value, if any (#4119, 7fb90a6b)
  • Deprecate AJAX event aliases, inline event/alias into deprecated (23d53928)
  • Do not execute scripts for unsuccessful HTTP responses (#4250, 50871a5a)
  • Simplify jQuery.ajaxSettings.xhr (#1967, abdc89ac)

Attributes

  • Make .attr( name, false ) remove for all non-ARIA attrs (#5388, 063831b6)
  • Shave off a couple of bytes (b40a4807)
  • Don't stringify attributes in the setter (#4948, 4250b628)
  • Drop the toggleClass(boolean|undefined) signature (#3388, a4421101)
  • Refactor val(): don't strip carriage return, isolate IE workarounds (ff281991)
  • Don't set the type attr hook at all outside of IE (9e66fe9a)

CSS

  • Fix dimensions of table <col> elements (#5628, eca2a564)
  • Drop the cache in finalPropName (640d5825)
  • Tests: Fix tests & support tests under CSS Zoom (#5489, 071f6dba)
  • Fix reliableTrDimensions support test for initially hidden iframes (b1e66a5f)
  • Selector: Align with 3.x, remove the outer selector.js wrapper (53cf7244)
  • Make the reliableTrDimensions support test work with Bootstrap CSS (#5270, 65b85031)
  • Make offsetHeight( true ), etc. include negative margins (#3982, bce13b72)
  • Return undefined for whitespace-only CSS variable values (#5120) (7eb00196)
  • Don’t trim whitespace of undefined custom property (#5105, ed306c02)
  • Skip falsy values in addClass( array ), compress code (#4998, a338b407)
  • Justify use of rtrim on CSS property values (655c0ed5)
  • Trim whitespace surrounding CSS Custom Properties values (#4926, efadfe99)
  • Include show, hide & toggle methods in the jQuery slim build (297d18dd)
  • Remove the opacity CSS hook (865469f5)
  • Workaround buggy getComputedStyle on table rows in IE/Edge (#4490, 26415e08)
  • Don't automatically add "px" to properties with a few exceptions (#2795, 00a9c2e5)

... (truncated)

Commits
  • 4f2fae0 Release: 4.0.0
  • c838cfb Release: remove dist files from main branch
  • 9752519 Release: 4.0.0-rc.2
  • c128d5d Release: Update AUTHORS.txt
  • 5fe9c29 Build: De-dupe three authors via mailmap
  • afdd032 Build: Post beta browser tests errors to jquery/dev on Matrix
  • 546a1eb Build: Bump the github-actions group with 4 updates
  • ec738b3 Build: Fix Chrome beta tests
  • c28c26a Build: Add periodic tests on beta versions of browsers
  • f513413 Build: Bump the github-actions group with 2 updates
  • Additional commits viewable in compare view

Updates tom-select from 2.6.1 to 2.6.2

Release notes

Sourced from tom-select's releases.

tom-select-2.6.2

What's Changed

New Contributors

Full Changelog: orchidjs/tom-select@v2.6.1...v2.6.2

Commits
  • 22bf9db bump: 2.6.2
  • 7c4eda4 bump: npm upgrade (#1058)
  • 056e832 fix: allow empty option selection in multi-select (#1057)
  • 727aae5 feat: allow null maxOptions in virtual_scroll plugin (#1056)
  • 379dbf4 build(deps-dev): bump markdown-it from 14.1.1 to 14.2.0 (#1053)
  • d83a9d1 bug/medium: virtual_scroll: prevent preloaded options from bleeding into sear...
  • 666532f remove_button plugin: use multiplication sign directly (#1052)
  • 88cc1f1 feat: allow editing the HTML for the remove_button plugin (#1050)
  • 51ea593 build(deps-dev): bump liquidjs from 10.25.7 to 10.27.0 (#1043)
  • See full diff in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 15, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner August 15, 2026 10:03
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 15, 2026
…y with 9 updates

Bumps the production-dependencies group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [admin-lte](https://github.com/ColorlibHQ/AdminLTE) | `4.1.0` | `4.8.1` |
| [datatables.net](https://github.com/DataTables/DataTablesSrc) | `2.3.8` | `3.0.2` |
| [datatables.net-bs5](https://github.com/DataTables/DataTablesSrc) | `2.3.8` | `3.0.2` |
| [datatables.net-buttons](https://github.com/DataTables/Buttons) | `3.2.6` | `4.0.2` |
| [datatables.net-buttons-bs5](https://github.com/DataTables/Buttons) | `3.2.6` | `4.0.2` |
| [datatables.net-select](https://github.com/DataTables/Select) | `3.1.3` | `4.0.1` |
| [datatables.net-select-bs5](https://github.com/DataTables/Select) | `3.1.3` | `4.0.1` |
| [jquery](https://github.com/jquery/jquery) | `3.7.1` | `4.0.0` |
| [tom-select](https://github.com/orchidjs/tom-select) | `2.6.1` | `2.6.2` |



Updates `admin-lte` from 4.1.0 to 4.8.1
- [Release notes](https://github.com/ColorlibHQ/AdminLTE/releases)
- [Changelog](https://github.com/ColorlibHQ/AdminLTE/blob/master/CHANGELOG.md)
- [Commits](ColorlibHQ/AdminLTE@v4.1.0...v4.8.1)

Updates `datatables.net` from 2.3.8 to 3.0.2
- [Release notes](https://github.com/DataTables/DataTablesSrc/releases)
- [Commits](DataTables/DataTablesSrc@2.3.8...3.0.2)

Updates `datatables.net-bs5` from 2.3.8 to 3.0.2
- [Release notes](https://github.com/DataTables/DataTablesSrc/releases)
- [Commits](DataTables/DataTablesSrc@2.3.8...3.0.2)

Updates `datatables.net-buttons` from 3.2.6 to 4.0.2
- [Commits](DataTables/Buttons@3.2.6...4.0.2)

Updates `datatables.net-buttons-bs5` from 3.2.6 to 4.0.2
- [Commits](DataTables/Buttons@3.2.6...4.0.2)

Updates `datatables.net-select` from 3.1.3 to 4.0.1
- [Commits](DataTables/Select@3.1.3...4.0.1)

Updates `datatables.net-select-bs5` from 3.1.3 to 4.0.1
- [Commits](DataTables/Select@3.1.3...4.0.1)

Updates `jquery` from 3.7.1 to 4.0.0
- [Release notes](https://github.com/jquery/jquery/releases)
- [Changelog](https://github.com/jquery/jquery/blob/main/changelog.md)
- [Commits](jquery/jquery@3.7.1...4.0.0)

Updates `tom-select` from 2.6.1 to 2.6.2
- [Release notes](https://github.com/orchidjs/tom-select/releases)
- [Commits](orchidjs/tom-select@2.6.1...2.6.2)

---
updated-dependencies:
- dependency-name: admin-lte
  dependency-version: 4.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: datatables.net
  dependency-version: 3.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: datatables.net-bs5
  dependency-version: 3.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: datatables.net-buttons
  dependency-version: 4.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: datatables.net-buttons-bs5
  dependency-version: 4.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: datatables.net-select
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: datatables.net-select-bs5
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: jquery
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: tom-select
  dependency-version: 2.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development/production-dependencies-b7ba206cb6 branch from 23498c8 to 6da7e00 Compare August 22, 2026 10:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants