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 #417

Merged
merged 1 commit into from
Nov 24, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 22, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@unhead/vue (source) ^1 -> ^1.11.11 age adoption passing confidence
@vueuse/nuxt (source) ^11.2.0 -> ^11.3.0 age adoption passing confidence
typescript (source) ^5.6.3 -> ^5.7.2 age adoption passing confidence
unhead (source) ^1 -> ^1.11.11 age adoption passing confidence

Release Notes

unjs/unhead (@​unhead/vue)

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: 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 card detection (#​215) (5c175b2)

v1.5.3

Compare Source

Bug Fixes
  • unhead: allow data-* attrs with useHeadSafe (a3cf825), closes #​213

v1.5.2

Compare Source

Bug Fixes
  • vue: expose setHeadInjectionHandler (a6a6ab9)

v1.5.1

Compare Source

Bug Fixes
  • dom: hydrate initial payload with current title (201a1c1)
  • unhead: add title to server payload (884d377)

v1.5.0

Compare Source

Notice

This minor introduces warnings when using useHead without the Vue context available.

Unhead is missing Vue context, falling back to shared context. This may have unexpected results.

When these warnings are shown, Unhead falls back to a shared context. Using this context has known issues when SSR parallel requests.

See https://github.com/nuxt/nuxt/issues/22712#issuecomment-1703911119 for more context.

Bug Fixes
  • schema-org: avoid appending null ReadAction to WebPage (2e70981)
  • schema-org: avoid duplicate array entries (b14712f)
  • schema-org: delete shortcut props on Question (9a862e9)
  • schema-org: export simpler plugin API PluginSchemaOrg (69d5486)
  • schema-org: prefer logo url over graph node (31d9a8e)
  • schema-org: resolve relation @​id's with host (cbc444a)
  • schema-org: simpler reactivity (261b1ec)
  • vue: handle dom updates off of main thread (ce4a735)
  • vue: unsafely inject head (c4644dc), closes #​209
Features
  • vue: useHead head option to bypass injection (e7405fb)

v1.4.1

Compare Source

Bug Fixes
  • avoid processing template unhead:payload (a7bbc12)

v1.4.0

Compare Source

Bug Fixes
  • templateParams: separator over-replacement (#​201) (f0e302e)
  • vue: allow vue root app context injections (4e185ae)
Features

v1.3.9

Compare Source

Bug Fixes
  • unhead: encode template params for json (37bf3c3)

v1.3.8

Compare Source

Bug Fixes
  • unhead: set payload type to application/json (a3a0451)

v1.3.7

Compare Source

Bug Fixes
  • unhead: remove payload redundant type (#​193) (86ecabc)
  • unhead: drop support for application/json JSON format verification, encode JSON (464f98f, 69e2656)

v1.3.5

Compare Source

Bug Fixes
  • vue: support vue2 options API (c62316d)

v1.3.4

Compare Source

Bug Fixes

v1.3.3

Compare Source

v1.3.2

Compare Source

Bug Fixes
  • HashHydrationPlugin: avoid setting empty hash (c295ff2)
  • avoi

Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1bee45c to 19d84d3 Compare November 22, 2024 14:33
@renovate renovate bot changed the title chore(deps): update devdependency @vueuse/nuxt to ^11.3.0 chore(deps): update all non-major dependencies Nov 22, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 19d84d3 to 488b727 Compare November 22, 2024 19:00
@renovate renovate bot merged commit cb8526b into main Nov 24, 2024
2 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch November 24, 2024 01:37
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