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

chore(deps): update all non-major dependencies #266

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 16, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@nuxt/eslint-config (source) ^1.0.0 -> ^1.0.1 age adoption passing confidence devDependencies patch
@unhead/vue (source) ^1 -> ^1.11.18 age adoption passing confidence peerDependencies minor
actions/checkout v4.1.7 -> v4.2.2 age adoption passing confidence action minor
actions/stale v9.0.0 -> v9.1.0 age adoption passing confidence action minor
eslint (source) 9.19.0 -> 9.20.0 age adoption passing confidence devDependencies minor
happy-dom ^17.0.0 -> ^17.0.2 age adoption passing confidence devDependencies patch
typescript (source) 5.6.3 -> 5.7.3 age adoption passing confidence resolutions minor

Release Notes

nuxt/eslint (@​nuxt/eslint-config)

v1.0.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
unjs/unhead (@​unhead/vue)

v1.11.18

Compare Source

No significant changes

    View changes on GitHub

v1.11.16

Compare Source

No significant changes

    View changes on GitHub

v1.11.15

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v1.11.14

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.11.13

Compare Source

No significant changes

    View changes on GitHub

v1.11.12

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.11.11

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.11.10

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.11.9

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.11.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.11.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.11.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.11.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.11.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.11.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.11.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.11.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.11.0

Compare Source

ℹ️ This is a minor release with many bug fixes, while there are no explicit new features, an effort should be made to checking your tags after upgrading.

This will be last minor before work begins on v2, check the roadmap and feel free to make suggestions.

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v1.10.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.10.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.10.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.10.1

Compare Source

   🐞 Bug Fixes

New Contributors

    View changes on GitHub

v1.10.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v1.9.16

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.9.15

Compare Source

No significant changes

    View changes on GitHub

v1.9.14

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.9.13

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.9.12

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v1.9.11

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.9.10

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.9.9

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.9.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.9.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.9.6

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v1.9.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.9.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.9.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.9.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.9.1

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v1.9.0

Compare Source

Release 1.9.0 - useScript Stable

useScript is built to provide better performance and DX when working with Third-Party Scripts. In this release we reduce the composable size has been reduced by 30% with some notable breaking changes:

Removed trigger idle

While this was handy in user-land, providing support for it meant providing a polyfill for window.requestIdleCallback due to limited browser support. Most integrations will already ship a polyfill for this so it added extra unnecessary weight.

If you'd like to re-implement this behaviour there's a recipe on the docs and you should provide your own polyfill (if needed).

Early connections removed

When using the composable it would try and guess how the script is being used and append a dns-prefetch or a preconnect <link> depending on usage. To reduce the composable weight, this should now be implemented in user or integration land.

<link rel="dns-prefetch" href="<script-domain>" />
Awaiting Script Changes

When you wanted to avoid using the Proxy API and use the script instance directly, you could use the $script.waitForLoad() function. To reduce the weight, the $script object itself is now a promise:

const { $script } = useScript('<src>', { use: () => window.myScript })

$script
	.then(instance => {
		// script is loaded, instance is the same as window.myScript 
	})
    .catch(() => {
       // script failed to load
    })
Changelog
   🚨 Breaking Changes
   🐞 Bug Fixes
    View changes on GitHub

v1.8.20

Compare Source

   🏎 Performance
    View changes on GitHub

v1.8.19

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.8.18

Compare Source

No significant changes

    View changes on GitHub

v1.8.17

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.8.16

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.8.15

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.8.14

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.8.13

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.8.12

Compare Source

Bug Fixes

v1.8.11

Compare Source

Bug Fixes
  • dom: avoid overriding existing styles (afcfb08), closes #​287
  • schema-org: support Product merchant listing (3cfded5), closes #​321
  • useScript: polyfill requestIdleCallback (96b9907), closes #​320
  • useSeoMeta no longer supports getter types (#​315) (686800f)
  • gracefully handle disappearing head elements (7b40442)
  • handle hydrating dupeable tags (e9e1fb1)

v1.8.10

Compare Source

Bug Fixes

v1.8.9

Compare Source

What's Changed
New Contributors

Full Changelog: unjs/unhead@v1.8.8...v1.8.9

v1.8.8

Compare Source

Bug Fixes
  • schema-org: more accurate id resolving (7c29141)

v1.8.7

Compare Source

Bug Fixes
  • empty string children being converted to true (0311382)

v1.8.6

Compare Source

Bug Fixes
  • check innerHTML is a string when applying XSS fixes (dbb5581)

v1.8.5

Compare Source

Bug Fixes

v1.8.4

Compare Source

Bug Fixes
  • schema-org: JobPosting refinements (85a5933)
  • schema-org: allow overriding tag tagPosition (6a0eb46)
  • schema-org: isolated Organization for Logo rich results (c0bd4ca)
  • useSeoMeta: unpack viewport (17e236f), closes #​265

v1.8.3

Compare Source

Bug Fixes
  • vue: maybe improve subpath export types (4c64c37)

v1.8.2

Compare Source

Bug Fixes
  • schema.org: more intuitive overrides (bc855c0)
  • schema.org: support template params (6b2a6ff)

v1.8.1

Compare Source

Bug Fixes
  • scripts: better types for transform (7eba87f)

v1.8.0

Compare Source

Bug Fixes
  • schemaOrg: skip invalid URL parsing (8868fe0)
  • scripts: waitForLoad refactor and correct triggering (7b31b2e)
  • scripts: always register network event handlers (31b6546)
  • scripts: always trigger onload and onerror for vue (6f0a9f4)
  • scripts: drop global index on remove() (2ee6d9c)
  • scripts: handle non-promise triggers (87b8075)
  • scripts: opt-in events (3f409a3)
  • scripts: trigger onload event for inlineHTML (2f652ff)
  • unhead: useHead, useServerHead generics, allow easier augmenting (c21edfc)
  • unhead: templateParams for htmlAttrs.lang (5cf5336)
  • unhead: useScript expose instance id (5deeb3c)
  • unhead: useScript optional async transforms (0f03796)
  • useScript: async and low fetchpriority by default (1c99499)
  • useScript: dedupe early connections, server-side only (90a51b9)
  • useScript: improved types (cffa0e5)
  • useScript: prefer defer by default (2f618d2)
  • useScript: provide early connections (b6bb423)
  • useScript: support SSR idle trigger (09da805)
  • vue: jit resolve useSeoMeta (3e30432)
  • add ts auto-completions for separator (e13f975)
Features

v1.7.4

Compare Source

Bug Fixes

v1.7.3

Compare Source

Bug Fixes
  • drop shorthand { script: [ '/script.js' ] support (ce89ceb)

v1.7.2

Compare Source

v1.7.0

Compare Source

Bug Fixes
  • unhead: escape json when normalising to fix hydration (0e45041), closes #​223
  • unhead: useSeoMeta null input regression (cdc07b0), closes #​226
  • vue: deprecate polyfillAsVueUseHead (7cd4b75)
  • vue-2: rework how vue 2 plugin gets head instance (#​227) (13aec6d)
Features

v1.6.2

Compare Source

Bug Fixes
  • opt-in only to process innerHTML template params (c4b87ad)
  • simplified tag prop normalisation (26c9f9e)

v1.6.1

Compare Source

Bug Fixes
  • vue2: broken vue import (ece35c9)
Performance Improvements
  • dirty flag to avoid redundant head updates (de34c67)
  • resolve tags after dom:beforeRender (7bb1064)

v1.6.0

Compare Source

Bug Fixes
  • addons: InferSeoMetaPlugin adding og:title to body (e1a60c2)
  • unhead: increase all tagPriority weights by 10x (03a5c28)
Features
  • unhead: new useSeoMeta logic with new opengraph tags (#​220) (8da9d86)
  • vue: new Vue 2, Options Mixin install (3d422d6)

v1.5.5

Compare Source

Bug Fixes

v1.5.4

Compare Source

Bug Fixes
  • infer-seo-meta-plugin: correct twitter ca

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

vercel bot commented Sep 16, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
scripts-docs ❌ Failed (Inspect) Feb 8, 2025 2:52pm
scripts-playground ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 8, 2025 2:52pm

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2cd313d to cdc627b Compare September 16, 2024 10:17
@renovate renovate bot changed the title chore(deps): update dependency @iconify-json/simple-icons to ^1.2.3 chore(deps): update all non-major dependencies Sep 16, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cdc627b to 8e4b5f1 Compare September 16, 2024 18:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8e4b5f1 to 45ba5cd Compare September 17, 2024 10:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 45ba5cd to e0214c5 Compare September 18, 2024 03:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e0214c5 to 9162f32 Compare September 18, 2024 10:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9162f32 to 0672e75 Compare September 19, 2024 16:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0672e75 to c9e65ff Compare September 20, 2024 12:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c9e65ff to 5ba8712 Compare September 20, 2024 15:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5ba8712 to fd4f94f Compare September 20, 2024 20:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e627309 to 81641bb Compare February 4, 2025 22:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 81641bb to 2ed33fb Compare February 6, 2025 23:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2ed33fb to dd5c5de Compare February 7, 2025 02:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3a58762 to c10bf9f Compare February 7, 2025 02:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c10bf9f to 2bbb313 Compare February 7, 2025 04:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2bbb313 to 15fcacd Compare February 7, 2025 06:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 15fcacd to 6f336d3 Compare February 7, 2025 12:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6f336d3 to 26c8931 Compare February 7, 2025 22:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants