Bump the npm-minor-patch group across 1 directory with 9 updates
Bumps the npm-minor-patch group with 8 updates in the / directory:
| Package | From | To |
|---|---|---|
| @heroicons/vue | 2.1.3 |
2.1.5 |
| dompurify | 3.1.4 |
3.1.6 |
| gleap | 13.7.1 |
13.9.1 |
| autoprefixer | 10.4.19 |
10.4.20 |
| eslint-plugin-vue | 9.26.0 |
9.27.0 |
| nuxt | 3.11.2 |
3.13.0 |
| tailwindcss | 3.4.3 |
3.4.10 |
| vue-i18n | 9.13.1 |
9.14.0 |
Updates @heroicons/vue from 2.1.3 to 2.1.5
Release notes
Sourced from @heroicons/vue's releases.
v2.1.5
Added
- Add new icons (
arrow-turn-*,bold,calendar-date-range,divide,document-currency-*,equals,h1,h2,h3,italic,link-slash,numbered-list,percent-badge,slash,strikethrough,underline)v2.1.4
Fixed
- Improve tree-shakability of React package (#1192)
Changelog
Sourced from @heroicons/vue's changelog.
[2.1.5] - 2024-07-10
Added
- Add new icons (
arrow-turn-*,bold,calendar-date-range,divide,document-currency-*,equals,h1,h2,h3,italic,link-slash,numbered-list,percent-badge,slash,strikethrough,underline)[2.1.4] - 2024-06-17
Fixed
- Improve tree-shakability of React package (#1192)
Commits
Updates dompurify from 3.1.4 to 3.1.6
Release notes
Sourced from dompurify's releases.
DOMPurify 3.1.6
- Fixed an issue with the execution logic of attribute hooks to prevent bypasses, thanks
@kevin-mizu- Fixed an issue with element removal leading to uncaught errors through DOM Clobbering, thanks
@realansgar- Fixed a minor problem with the bower file pointing to the wrong dist path
- Fixed several minor typos in docs, comments and comment blocks, thanks
@Rotzbua- Updated several development dependencies
DOMPurify 3.1.5
- Fixed a minor issue with the dist paths in
bower.js, thanks@HakumenNC- Fixed a minor issue with sanitizing HTML coming from copy&paste Word content, thanks
@kakao-bishop-cho
Commits
4083a90Merge pull request #978 from cure53/main90a10a1fix: Fixed a typo on the README65df042chore: Preparing 3.1.6 release6e03334fix: Made sure that remove() is not called directly from node00fc06cfix: Fixed a DOM clobbering issue leading to an error being thrownf8c2ef5Merge pull request #977 from cure53/dependabot/npm_and_yarn/multi-99ca4f73d8e5112ecbuild(deps): bump ws and socket.io-adapter9978cecdocs: Added better security warning about SAFE_FOR_XML to READMEfa542dffix: Changed the order for attribute checks slightly for safer hooksb8b552cMerge pull request #975 from cure53/dependabot/npm_and_yarn/multi-2d3aef8690- Additional commits viewable in compare view
Updates gleap from 13.7.1 to 13.9.1
Release notes
Sourced from gleap's releases.
v13.9.0
Updated default language.
v13.8.6
Fixed issue with video in onboarding tour.
v13.8.5
Fixed race condition with automatically starting surveys.
v13.8.0
Added SLA support.
v13.7.9
Fixed issue with soft re-initialization.
v13.7.8
- Fixed typings.
v13.7.7
- Fixed scaling of large canvas
v13.7.6
Fixed button style.
v13.7.5
- Limit popups to max 2 popups
v13.7.4
No release notes provided.
Commits
- See full diff in compare view
Updates autoprefixer from 10.4.19 to 10.4.20
Commits
dae6eb4Release 10.4.20 versionee43652Fix fit-content for Firefoxcf80824Update dependencies49d5ec6Move to pnpm 9- See full diff in compare view
Updates eslint-plugin-vue from 9.26.0 to 9.27.0
Release notes
Sourced from eslint-plugin-vue's releases.
v9.27.0
✨ Enhancements
- #2487 Improved
vue/require-toggle-inside-transitionrule to understandv-bind:appear.🐛 Bug Fixes
- #2489 Fixed false negatives for elements inside template literals in
vue/no-setup-props-reactivity-lossrule.⚙️ Updates
- #2476 Added name property to flat configs.
- #2488 Upgraded vue-eslint-parser to v9.4.3.
Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.26.0...v9.27.0
Commits
c64bf949.27.0cac8167fix(no-setup-props-reactivity-loss): report template literal (#2489)3ad09effeat(require-toggle-inside-transition): check directive (#2487)bfc72a4docs: fix build on windows (#2493)4f52734docs: add an example on how to use custom parser with flat config (#2490)d7169e1chore: upgrade vue-eslint-parser to v9.4.3 (#2488)ca7daffShow nested outline in docs (#2481)9afbf2bUpdate development dependencies (#2478)ab88141Add name to flat configs. (#2476)e95b7bbtest: update typescript-eslint and fix test cases (#2477)- See full diff in compare view
Updates nuxt from 3.11.2 to 3.13.0
Release notes
Sourced from nuxt's releases.
v3.13.0
👀 Highlights
I'm pretty excited about this release - we've ported some features we had planned for Nuxt v4 back to v3, as well as a raft of bug fixes and performance improvements - as usual.
Here are a few of things I'm most excited about.
🏘️ Route Groups
We now support naming directories with parentheses/brackets to organise your routes without affecting the path.
For example:
-| pages/ ---| index.vue ---| (marketing)/ -----| about.vue -----| contact.vueThis will produce
/,/aboutand/contactpages in your app. Themarketinggroup is ignored for purposes of your URL structure.Read more in the original PR.
🏝️ Islands and Head Metadata
It's now possible for server component islands to manipulate the head, such as by adding SEO metadata when rendering.
Read more in #27987.
🪝 Custom Prefetch Triggers
We now support custom prefetch triggers for
NuxtLink(#27846).For example:
\<template> <div> <NuxtLink prefetch-on="interaction"> This will prefetch when hovered or when it gains focus </NuxtLink> <!-- note that you probably don't want both enabled! --> <NuxtLink :prefetch-on="{ visibility: true, interaction: true }"> This will prefetch when hovered/focus - or when it becomes visible </NuxtLink> </div> </template>
... (truncated)
Commits
74ef96dv3.13.0a012471fix(nuxt): revert back to object syntax for island head (#28656)3f1db54feat(nuxt): allow server islands to manipulate head (#27987)68f451achore(deps): update devdependency@nuxt/scriptsto v0.7.1 (3.x) (#28646)ad63154chore(deps): update all non-major dependencies (3.x) (#28637)4dfbec8fix(nuxt): do not provide defaultprefetchOnprop (#28630)fb7c2f7fix(nuxt): allow customising status code invalidatemethod (#28612)eed8730fix(nuxt): extract route rules/page meta in 2+ script blocks (#28625)81774f3chore(deps): update all non-major dependencies (3.x) (#28614)1eb9b0afeat(nuxt): namespace__NUXT__when using multi-app (#27263)- Additional commits viewable in compare view
Updates postcss from 8.4.38 to 8.4.41
Release notes
Sourced from postcss's releases.
8.4.41
- Fixed types (by
@nex3and@querkmachine).- Cleaned up RegExps (by
@bluwy).8.4.40
- Moved to getter/setter in nodes types to help Sass team (by
@nex3).8.4.39
- Fixed
CssSyntaxErrortypes (by@romainmenke).
Changelog
Sourced from postcss's changelog.
8.4.41
- Fixed types (by
@nex3and@querkmachine).- Cleaned up RegExps (by
@bluwy).8.4.40
- Moved to getter/setter in nodes types to help Sass team (by
@nex3).8.4.39
- Fixed
CssSyntaxErrortypes (by@romainmenke).
Commits
57e0211Release 8.4.41 versionf27134fUpdate dependencies146d31cMerge pull request #1952 from nex3/rule-props3707c3bMerge remote-tracking branch 'origin/main' into rule-props9ab3619DeclareInput.toJSON()be59ad4Remove dead website165154bUpdate dependencies6127a44Declaration#variable do not have setter536726dFix type58fa0efSort keys- Additional commits viewable in compare view
Updates tailwindcss from 3.4.3 to 3.4.10
Release notes
Sourced from tailwindcss's releases.
v3.4.10
Fixed
- Bump versions of plugins in the Standalone CLI (#14185)
v3.4.9
Fixed
- No longer warns when broad glob patterns are detecting
vendorfoldersv3.4.8
Fixed
- Fix minification when using nested CSS (#14105)
- Warn when broad glob patterns are used in the content configuration (#14140)
v3.4.7
Fixed
- Fix class detection in Slim templates with attached attributes and ID (#14019)
- Ensure attribute values in
data-*andaria-*modifiers are always quoted in the generated CSS (#14037)v3.4.6
Fixed
- Fix detection of some utilities in Slim/Pug templates (#14006)
Changed
- Loosen
:is()wrapping rules when using an important selector (#13900)v3.4.5
Fixed
- Disable automatic
var()injection for anchor properties (#13826)- Use no value instead of
blur(0px)forbackdrop-blur-noneandblur-noneutilities (#13830)- Add
.mtsand.ctsconfig file detection (#13940)- Don't generate utilities like
px-1unnecessarily when using utilities likepx-1.5(#13959)- Always generate
-webkit-backdrop-filterforbackdrop-*utilities (#13997)v3.4.4
Fixed
- Make it possible to use multiple
<alpha-value>placeholders in a single color definition (#13740)- Don't prefix classes in arbitrary values of
has-*,group-has-*, andpeer-has-*variants (#13770)- Support negative values for
{col,row}-{start,end}utilities (#13781)- Update embedded browserslist database (#13792)
Changelog
Sourced from tailwindcss's changelog.
[3.4.10] - 2024-08-13
Fixed
- Bump versions of plugins in the Standalone CLI (#14185)
[3.4.9] - 2024-08-08
Fixed
- No longer warns when broad glob patterns are detecting
vendorfolders[3.4.8] - 2024-08-07
Fixed
- Fix minification when using nested CSS (#14105)
- Warn when broad glob patterns are used in the content configuration (#14140)
[3.4.7] - 2024-07-25
Fixed
- Fix class detection in Slim templates with attached attributes and ID (#14019)
- Ensure attribute values in
data-*andaria-*modifiers are always quoted in the generated CSS (#14037)[3.4.6] - 2024-07-16
Fixed
- Fix detection of some utilities in Slim/Pug templates (#14006)
Changed
- Loosen
:is()wrapping rules when using an important selector (#13900)[3.4.5] - 2024-07-15
Fixed
- Disable automatic
var()injection for anchor properties (#13826)- Use no value instead of
blur(0px)forbackdrop-blur-noneandblur-noneutilities (#13830)- Add
.mtsand.ctsconfig file detection (#13940)- Don't generate utilities like
px-1unnecessarily when using utilities likepx-1.5(#13959)- Always generate
-webkit-backdrop-filterforbackdrop-*utilities (#13997)[3.4.4] - 2024-06-05
Fixed
... (truncated)
Commits
f07dbff3.4.10c4f2362Bump versions of plugins in the Standalone CLI (#14185)f65023e3.4.9702ba6aDon't warn about broad globs in vendor folders (#14147)16761183.4.869c81f2renamemastertomain858696aWarn when broad glob patterns are used in the content configuration (#14140)1f23c2eBump to latest cssnano v6 (#14105)28bd90eAutomate checksum generation for standalone CLI (#14081)9824cb6Update version in package.json- Additional commits viewable in compare view
Updates vue-i18n from 9.13.1 to 9.14.0
Release notes
Sourced from vue-i18n's releases.
v9.14.0
What's Changed
⚡ Improvement Features
- fix: vue-i18n type definition for vue package by
@BobbieGoedein intlify/vue-i18n#1919Full Changelog: https://github.com/intlify/vue-i18n/compare/v9.13.1...v9.14.0
Changelog
Sourced from vue-i18n's changelog.
v10.0.0-beta.5 (2024-07-19T02:23:39Z)
This changelog is generated by GitHub Releases
What's Changed
📝️ Documentations
- chore: fix module augmentation example comment by
@BobbieGoedein intlify/vue-i18n#1898Full Changelog: https://github.com/intlify/vue-i18n/compare/v10.0.0-beta.4...v10.0.0-beta.5
v10.0.0-beta.4 (2024-07-16T04:02:31Z)
This changelog is generated by GitHub Releases
What's Changed
🌟 Features
- feat: support generated locale type by
@BobbieGoedein intlify/vue-i18n#1890📝️ Documentations
- Added a comment about pluralRules to the code in pluralization docs by
@M1h4n1kin intlify/vue-i18n#1873New Contributors
@M1h4n1kmade their first contribution in intlify/vue-i18n#1873Full Changelog: https://github.com/intlify/vue-i18n/compare/v10.0.0-beta.3...v10.0.0-beta.4
v10.0.0-beta.3 (2024-07-14T08:45:48Z)
This changelog is generated by GitHub Releases
What's Changed
⚡ Improvement Features
- fix(devtools): change vue-devtools label by
@kazuponin intlify/vue-i18n#1885- fix: vue-i18n type definition for vue package by
@kazuponin intlify/vue-i18n#1888Full Changelog: https://github.com/intlify/vue-i18n/compare/v10.0.0-beta.2...v10.0.0-beta.3
... (truncated)
Commits
8e9f6d5release: v9.14.0b07a9a4fix: vue-i18n type definition for vue package (#1919)- See full diff in compare view
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 commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
Preview deployed to https://d4356c86.academy-admin-preview.pages.dev (total size: 3.9M)
@dependabot rebase
Looks like these dependencies are updatable in another way, so this is no longer needed.