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 with 4 updates #26

Merged
merged 1 commit into from
Oct 30, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 30, 2023

Bumps the npm-minor-patch group with 4 updates: gleap, nuxt, tailwindcss and vue-i18n.

Updates gleap from 12.0.3 to 12.1.2

Release notes

Sourced from gleap's releases.

v12.1.2

DOM replays now support canvas and cross origin iFrames. Please read our documentation to learn more on the extended setup: https://docs.gleap.io/javascript/replays/

v12.1.1

  • Typings cleanup.

v12.1.0

  • Added checklists for awesome onboarding experiences.
Commits

Updates nuxt from 3.7.4 to 3.8.0

Release notes

Sourced from nuxt's releases.

v3.8.0

👀 Highlights

We have a lot of exciting features in v3.8, and can't wait for you to try it out.

💻 Nuxi improvements

Just to remind you, we're now using the new Nuxt CLI which is now versioned separately. There are some exciting improvements there to follow, so do check out the latest releases. (For example, we now share the same port with the Vite websocket, meaning better support for docker containers in development.)

🚨 Built-in Nuxt DevTools

Nuxt DevTools v1.0.0 is out and we now think it's ready to be shipped as a direct dependency of Nuxt.

👉 You can check out the release notes for more information - and stay tuned for an article detailing our roadmap for the future.

📸 Nuxt Image auto-install

We've now made <NuxtImg> and <NuxtPicture> first-class built-in components, documenting them and auto-installing @nuxt/image the first time that they are used (#23717).

autoinstall2.mp4

We would definitely advise using @nuxt/image if you're using images in your site; it can apply optimisations to make your site more performant.

📂 Deeper layout scanning

🚨 This is a behaviour change so do take care with this one: 🚨

We now support scanning layouts within subfolders in ~/layouts in the same way as we do with ~/components.

File Layout name
~/layouts/desktop/default.vue 'desktop-default'
~/layouts/desktop-base/base.vue 'desktop-base'
~/layouts/desktop/index.vue 'desktop'

See #20190 for more information

📊 App Manifest

We now support a built-in app manifest (see #21641), which generates a manifest at /_nuxt/builds/meta/<buildId>.json.

Initially this enables loading payloads only for prerendered routes, if a site is static (preventing 404s). It also enables client-side route rules. To begin with, only redirect route rules will have an effect; they will now redirect when performing client-side navigation. (More coming soon...!)

The app manifest also enables future enhancements including detection of outdated deployments by checking /_nuxt/builds/latest.json.

You can switch off this behaviour if you need to (but do let us know if you have any issues):

export default defineNuxtConfig({
  experimental: {
</tr></table> 

... (truncated)

Commits
  • 59ff865 v3.8.0
  • 108b1bd fix(nuxt): restore prerenderedAt behaviour pending next patch
  • c2fff57 chore(deps): update all non-major dependencies (main) (#23766)
  • 2050d1b chore: upgrade to c12 1.5 with configurable layers (#23782)
  • 8d62c2a test: update prerender test
  • 91c62d6 fix(nuxt): don't use prerenderedAt to override app manifest (#23781)
  • bfaf56c chore: update to nitropack 2.7.0 (#23780)
  • ed9a6e2 chore(deps): update all non-major dependencies (main) (#23759)
  • 0d2b19d chore: refresh lockfile (#23755)
  • 8528288 chore: remove huntr + encourage GitHub vulnerability reporting (#23754)
  • Additional commits viewable in compare view

Updates tailwindcss from 3.3.3 to 3.3.5

Release notes

Sourced from tailwindcss's releases.

v3.3.5

Fixed

  • Fix incorrect spaces around - in calc() expression (#12283)

v3.3.4

Fixed

  • Improve normalisation of calc()-like functions (#11686)
  • Skip calc() normalisation in nested theme() calls (#11705)
  • Fix incorrectly generated CSS when using square brackets inside arbitrary properties (#11709)
  • Make content optional for presets in TypeScript types (#11730)
  • Handle variable colors that have variable fallback values (#12049)
  • Batch reading content files to prevent too many open files error (#12079)
  • Skip over classes inside :not(…) when nested in an at-rule (#12105)
  • Update types to work with Node16 module resolution (#12097)
  • Don’t crash when important and parent selectors are equal in @apply (#12112)
  • Eliminate irrelevant rules when applying variants (#12113)
  • Improve RegEx parser, reduce possibilities as the key for arbitrary properties (#12121)
  • Fix sorting of utilities that share multiple candidates (#12173)
  • Ensure variants with arbitrary values and a modifier are correctly matched in the RegEx based parser (#12179)
  • Fix crash when watching renamed files on FreeBSD (#12193)
  • Allow plugins from a parent document to be used in an iframe (#12208)
  • Add types for tailwindcss/nesting (#12269)
  • Bump jiti, fast-glob, and browserlist dependencies (#11550)
  • Improve automatic var injection for properties that accept a <dashed-ident> (#12236)
Changelog

Sourced from tailwindcss's changelog.

[3.3.5] - 2023-10-25

Fixed

  • Fix incorrect spaces around - in calc() expression (#12283)

[3.3.4] - 2023-10-24

Fixed

  • Improve normalisation of calc()-like functions (#11686)
  • Skip calc() normalisation in nested theme() calls (#11705)
  • Fix incorrectly generated CSS when using square brackets inside arbitrary properties (#11709)
  • Make content optional for presets in TypeScript types (#11730)
  • Handle variable colors that have variable fallback values (#12049)
  • Batch reading content files to prevent too many open files error (#12079)
  • Skip over classes inside :not(…) when nested in an at-rule (#12105)
  • Update types to work with Node16 module resolution (#12097)
  • Don’t crash when important and parent selectors are equal in @apply (#12112)
  • Eliminate irrelevant rules when applying variants (#12113)
  • Improve RegEx parser, reduce possibilities as the key for arbitrary properties (#12121)
  • Fix sorting of utilities that share multiple candidates (#12173)
  • Ensure variants with arbitrary values and a modifier are correctly matched in the RegEx based parser (#12179)
  • Fix crash when watching renamed files on FreeBSD (#12193)
  • Allow plugins from a parent document to be used in an iframe (#12208)
  • Add types for tailwindcss/nesting (#12269)
  • Bump jiti, fast-glob, and browserlist dependencies (#11550)
  • Improve automatic var injection for properties that accept a <dashed-ident> (#12236)
Commits
  • 9db2d68 3.3.5
  • 4b12f83 Fix incorrect spaces around - in calc() expression (#12283)
  • 32a62b7 3.3.4
  • b810916 ensure we await the processTailwindFeatures in the oxide CLI
  • 2514820 Improve automatic var injection (#12236)
  • c15b187 Bump jiti, fast-glob, and browserlist dependencies (#11550)
  • ba04af0 Add types for the nesting plugin (#12269)
  • 63989b2 Allow plugins from a parent document to be used in an iframe (#12208)
  • 8e4ed70 Fix crash when watching renamed files on FreeBSD (#12193)
  • b162ae7 Ensure variants with arbitrary values and a modifier are correctly matched in...
  • Additional commits viewable in compare view

Updates vue-i18n from 9.5.0 to 9.6.2

Release notes

Sourced from vue-i18n's releases.

v9.6.2

What's Changed

🐛 Bug Fixes

Full Changelog: intlify/vue-i18n@v9.6.1...v9.6.2

v9.6.1

What's Changed

🐛 Bug Fixes

Full Changelog: intlify/vue-i18n@v9.6.0...v9.6.1

v9.6.0

What's Changed

🌟 Features

🐛 Bug Fixes

⚡ Improvement Features

📝️ Documentations

Full Changelog: intlify/vue-i18n@v9.5.0...v9.6.0

Changelog

Sourced from vue-i18n's changelog.

v9.6.2 (2023-10-27T22:37:12Z)

This changelog is generated by GitHub Releases

What's Changed

🐛 Bug Fixes

Full Changelog: intlify/vue-i18n@v9.6.1...v9.6.2

v9.6.1 (2023-10-27T05:45:30Z)

This changelog is generated by GitHub Releases

What's Changed

🐛 Bug Fixes

Full Changelog: intlify/vue-i18n@v9.6.0...v9.6.1

v9.6.0 (2023-10-26T03:36:13Z)

This changelog is generated by GitHub Releases

What's Changed

🌟 Features

🐛 Bug Fixes

⚡ Improvement Features

... (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 4 updates: [gleap](https://github.com/GleapSDK/JavaScript-SDK), [nuxt](https://github.com/nuxt/nuxt), [tailwindcss](https://github.com/tailwindlabs/tailwindcss) and [vue-i18n](https://github.com/intlify/vue-i18n-next/tree/HEAD/packages/vue-i18n).


Updates `gleap` from 12.0.3 to 12.1.2
- [Release notes](https://github.com/GleapSDK/JavaScript-SDK/releases)
- [Commits](GleapSDK/JavaScript-SDK@12.0.3...12.1.2)

Updates `nuxt` from 3.7.4 to 3.8.0
- [Release notes](https://github.com/nuxt/nuxt/releases)
- [Commits](nuxt/nuxt@v3.7.4...v3.8.0)

Updates `tailwindcss` from 3.3.3 to 3.3.5
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/master/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.3.3...v3.3.5)

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

---
updated-dependencies:
- dependency-name: gleap
  dependency-type: direct:production
  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: 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 Oct 30, 2023
@github-actions
Copy link

Preview deployed to https://7198acf4.academy-admin-preview.pages.dev (total size: 3.7M)

@Defelo Defelo merged commit 9188f8e into develop Oct 30, 2023
1 check passed
@Defelo Defelo deleted the dependabot/npm_and_yarn/npm-minor-patch-50afbec4c5 branch October 30, 2023 13:05
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.

1 participant