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 the npm-minor-patch group across 1 directory with 9 updates #170

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 23, 2024

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
  • 4083a90 Merge pull request #978 from cure53/main
  • 90a10a1 fix: Fixed a typo on the README
  • 65df042 chore: Preparing 3.1.6 release
  • 6e03334 fix: Made sure that remove() is not called directly from node
  • 00fc06c fix: Fixed a DOM clobbering issue leading to an error being thrown
  • f8c2ef5 Merge pull request #977 from cure53/dependabot/npm_and_yarn/multi-99ca4f73d8
  • e5112ec build(deps): bump ws and socket.io-adapter
  • 9978cec docs: Added better security warning about SAFE_FOR_XML to README
  • fa542df fix: Changed the order for attribute checks slightly for safer hooks
  • b8b552c Merge 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

Updates autoprefixer from 10.4.19 to 10.4.20

Release notes

Sourced from autoprefixer's releases.

10.4.20

  • Fixed fit-content prefix for Firefox.
Changelog

Sourced from autoprefixer's changelog.

10.4.20

  • Fixed fit-content prefix for Firefox.
Commits

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

🐛 Bug Fixes

⚙️ Updates

Full Changelog: vuejs/eslint-plugin-vue@v9.26.0...v9.27.0

Commits

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.vue

This will produce /, /about and /contact pages in your app. The marketing group 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
  • 74ef96d v3.13.0
  • a012471 fix(nuxt): revert back to object syntax for island head (#28656)
  • 3f1db54 feat(nuxt): allow server islands to manipulate head (#27987)
  • 68f451a chore(deps): update devdependency @​nuxt/scripts to v0.7.1 (3.x) (#28646)
  • ad63154 chore(deps): update all non-major dependencies (3.x) (#28637)
  • 4dfbec8 fix(nuxt): do not provide default prefetchOn prop (#28630)
  • fb7c2f7 fix(nuxt): allow customising status code in validate method (#28612)
  • eed8730 fix(nuxt): extract route rules/page meta in 2+ script blocks (#28625)
  • 81774f3 chore(deps): update all non-major dependencies (3.x) (#28614)
  • 1eb9b0a feat(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

8.4.40

  • Moved to getter/setter in nodes types to help Sass team (by @​nex3).

8.4.39

Changelog

Sourced from postcss's changelog.

8.4.41

8.4.40

  • Moved to getter/setter in nodes types to help Sass team (by @​nex3).

8.4.39

Commits

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 vendor folders

v3.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-* and aria-* 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) for backdrop-blur-none and blur-none utilities (#13830)
  • Add .mts and .cts config file detection (#13940)
  • Don't generate utilities like px-1 unnecessarily when using utilities like px-1.5 (#13959)
  • Always generate -webkit-backdrop-filter for backdrop-* 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-*, and peer-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 vendor folders

[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-* and aria-* 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) for backdrop-blur-none and blur-none utilities (#13830)
  • Add .mts and .cts config file detection (#13940)
  • Don't generate utilities like px-1 unnecessarily when using utilities like px-1.5 (#13959)
  • Always generate -webkit-backdrop-filter for backdrop-* utilities (#13997)

[3.4.4] - 2024-06-05

Fixed

... (truncated)

Commits

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

Full Changelog: intlify/vue-i18n@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

Full Changelog: intlify/vue-i18n@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

📝️ Documentations

New Contributors

Full Changelog: intlify/vue-i18n@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

Full Changelog: intlify/vue-i18n@v10.0.0-beta.2...v10.0.0-beta.3

... (truncated)

Commits

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 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 <dependency name> major version will 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 version will 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

Bumps the npm-minor-patch group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@heroicons/vue](https://github.com/tailwindlabs/heroicons) | `2.1.3` | `2.1.5` |
| [dompurify](https://github.com/cure53/DOMPurify) | `3.1.4` | `3.1.6` |
| [gleap](https://github.com/GleapSDK/JavaScript-SDK) | `13.7.1` | `13.9.1` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.19` | `10.4.20` |
| [eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue) | `9.26.0` | `9.27.0` |
| [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt) | `3.11.2` | `3.13.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.3` | `3.4.10` |
| [vue-i18n](https://github.com/intlify/vue-i18n-next/tree/HEAD/packages/vue-i18n) | `9.13.1` | `9.14.0` |



Updates `@heroicons/vue` from 2.1.3 to 2.1.5
- [Release notes](https://github.com/tailwindlabs/heroicons/releases)
- [Changelog](https://github.com/tailwindlabs/heroicons/blob/master/CHANGELOG.md)
- [Commits](tailwindlabs/heroicons@v2.1.3...v2.1.5)

Updates `dompurify` from 3.1.4 to 3.1.6
- [Release notes](https://github.com/cure53/DOMPurify/releases)
- [Commits](cure53/DOMPurify@3.1.4...3.1.6)

Updates `gleap` from 13.7.1 to 13.9.1
- [Release notes](https://github.com/GleapSDK/JavaScript-SDK/releases)
- [Commits](https://github.com/GleapSDK/JavaScript-SDK/commits)

Updates `autoprefixer` from 10.4.19 to 10.4.20
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.19...10.4.20)

Updates `eslint-plugin-vue` from 9.26.0 to 9.27.0
- [Release notes](https://github.com/vuejs/eslint-plugin-vue/releases)
- [Commits](vuejs/eslint-plugin-vue@v9.26.0...v9.27.0)

Updates `nuxt` from 3.11.2 to 3.13.0
- [Release notes](https://github.com/nuxt/nuxt/releases)
- [Commits](https://github.com/nuxt/nuxt/commits/v3.13.0/packages/nuxt)

Updates `postcss` from 8.4.38 to 8.4.41
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.38...8.4.41)

Updates `tailwindcss` from 3.4.3 to 3.4.10
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.10/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.3...v3.4.10)

Updates `vue-i18n` from 9.13.1 to 9.14.0
- [Release notes](https://github.com/intlify/vue-i18n-next/releases)
- [Changelog](https://github.com/intlify/vue-i18n/blob/master/CHANGELOG.md)
- [Commits](https://github.com/intlify/vue-i18n-next/commits/v9.14.0/packages/vue-i18n)

---
updated-dependencies:
- dependency-name: "@heroicons/vue"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: dompurify
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: gleap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: eslint-plugin-vue
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: nuxt
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: vue-i18n
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 23, 2024
Copy link

Preview deployed to https://d4356c86.academy-admin-preview.pages.dev (total size: 3.9M)

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