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

Merged
merged 1 commit into from
Aug 14, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 21, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/plugin-transform-typescript (source) ^7.22.9 -> ^7.22.10 age adoption passing confidence
@unhead/schema (source) ^1.1.32 -> ^1.3.1 age adoption passing confidence
@unhead/ssr (source) ^1.1.32 -> ^1.3.1 age adoption passing confidence
@unhead/vue (source) ^1.1.32 -> ^1.3.1 age adoption passing confidence
destr ^2.0.0 -> ^2.0.1 age adoption passing confidence
eslint (source) ^8.45.0 -> ^8.47.0 age adoption passing confidence
eslint-plugin-jsdoc ^46.4.4 -> ^46.4.6 age adoption passing confidence
magic-string ^0.30.1 -> ^0.30.2 age adoption passing confidence
node-fetch ^3.3.1 -> ^3.3.2 age adoption passing confidence
ohash ^1.1.2 -> ^1.1.3 age adoption passing confidence
pnpm (source) 8.6.9 -> 8.6.12 age adoption passing confidence
postcss (source) ^8.4.26 -> ^8.4.27 age adoption passing confidence
postcss-preset-env (source) ^9.0.0 -> ^9.1.1 age adoption passing confidence
terser (source) ^5.19.1 -> ^5.19.2 age adoption passing confidence
ufo ^1.1.2 -> ^1.2.0 age adoption passing confidence
unimport ^3.1.0 -> ^3.1.3 age adoption passing confidence
untyped ^1.3.2 -> ^1.4.0 age adoption passing confidence
vite (source) ~4.4.6 -> ~4.4.9 age adoption passing confidence
vite-node (source) ^0.33.0 -> ^0.34.1 age adoption passing confidence
vitest ^0.33.0 -> ^0.34.1 age adoption passing confidence

Release Notes

babel/babel (@​babel/plugin-transform-typescript)

v7.22.10

Compare Source

🐛 Bug Fix
  • babel-plugin-transform-typescript
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators, babel-plugin-proposal-destructuring-private, babel-plugin-transform-class-properties, babel-plugin-transform-class-static-block, babel-plugin-transform-new-target, babel-plugin-transform-private-methods, babel-preset-env
💅 Polish
🏠 Internal
  • Other
  • babel-cli, babel-core, babel-generator, babel-helper-builder-react-jsx, babel-preset-env, babel-standalone
  • babel-helper-compilation-targets
  • babel-parser
  • babel-plugin-transform-runtime, babel-traverse, babel-types
🔬 Output optimization
  • babel-plugin-transform-block-scoping, babel-plugin-transform-parameters, babel-plugin-transform-regenerator
unjs/unhead (@​unhead/schema)

v1.3.1

Compare Source

v1.3.0

Compare Source

Highlights 🔥
Improved DOM Renderer (https://github.com/unjs/unhead/pull/185)

The slowest part of Unhead is figuring out what DOM elements and attributes are needed to be added, updated or removed.

This release introduces an improved DOM renderer with some key improvements:

  • 30% Smaller: Now under 1kb (954 bytes)
  • ~50% Faster: Taking a typical site from 30ms to 15ms to render tags on the initial mount and 11ms to 7ms on page changes.
Bundle Improvements

You should see a ~20% reduction in your client bundle without losing any functionality.

  • Code was cleaned up and simplified
  • Utils no longer exported
  • Deprecated composables removed

Before

image

After

image

Hash Hydration Plugin (https://github.com/unjs/unhead/pull/183)

A flag was previously introduced that enabled experimental hash hydration experimentalHashHydration. This reduces your initial mount time to 0ms for the dom renderer. This has now been moved to a plugin.

This is now an optional plugin and should perform better.

createHead({
-  experimentalHashHydration: true,
+  plugins: [
+   HashHydrationPlugin()
+ ]
})
Other Changes
  • Debounced promise is now attached to the Unhead instance instead of global
  • New hook: dom:rendered get tags once they're rendered
⚠️ Breaking Changes

There were a number of more verbose composable which were deprecated in v1, they have now been removed. (https://github.com/unjs/unhead/pull/184).

If you're using any of the following, you should use the useHead or other composable.

  • useTagTitle
  • useTagBase
  • useTagMeta
  • useTagMetaFlat
  • useTagLink
  • useTagScript
  • useTagStyle
  • useTagNoscript
  • useHtmlAttrs
  • useBodyAttrs
  • useTitleTemplate
  • useServerTagTitle
  • useServerTagBase
  • useServerTagMeta
  • useServerTagMetaFlat
  • useServerTagLink
  • useServerTagScript
  • useServerTagStyle
  • useServerTagNoscript
  • useServerHtmlAttrs
  • useServerBodyAttrs
  • useServerTitleTemplate

v1.2.2

Compare Source

Bug Fixes
  • unhead: only sort head tags with capo (536fd8e)
  • unhead: opt-in capo tracking (663cd10)

v1.2.1

Compare Source

v1.1.35

Compare Source

Bug Fixes
  • allow async transformers (0eeff31)

v1.1.34

Compare Source

Bug Fixes
  • allow hooking into before tag resolve tags:beforeResolve (1f22aec)

v1.1.33

Compare Source

Bug Fixes
  • unhead: broken titles with $1 in them (69dc8ef)
unjs/unhead (@​unhead/ssr)

v1.3.1

Compare Source

v1.3.0

Compare Source

Highlights 🔥

Improved DOM Renderer (https://github.com/unjs/unhead/pull/185)

The slowest part of Unhead is figuring out what DOM elements and attributes are needed to be added, updated or removed.

This release introduces an improved DOM renderer with some key improvements:

  • 30% Smaller: Now under 1kb (954 bytes)
  • ~50% Faster: Taking a typical site from 30ms to 15ms to render tags on the initial mount and 11ms to 7ms on page changes.
Bundle Improvements

You should see a ~20% reduction in your client bundle without losing any functionality.

  • Code was cleaned up and simplified
  • Utils no longer exported
  • Deprecated composables removed

Before

image

After

image

Hash Hydration Plugin (https://github.com/unjs/unhead/pull/183)

A flag was previously introduced that enabled experimental hash hydration experimentalHashHydration. This reduces your initial mount time to 0ms for the dom renderer. This has now been moved to a plugin.

This is now an optional plugin and should perform better.

createHead({
-  experimentalHashHydration: true,
+  plugins: [
+   HashHydrationPlugin()
+ ]
})

Other Changes

  • Debounced promise is now attached to the Unhead instance instead of global
  • New hook: dom:rendered get tags once they're rendered

⚠️ Breaking Changes

There were a number of more verbose composable which were deprecated in v1, they have now been removed. (https://github.com/unjs/unhead/pull/184).

If you're using any of the following, you should use the useHead or other composable.

  • useTagTitle
  • useTagBase
  • useTagMeta
  • useTagMetaFlat
  • useTagLink
  • useTagScript
  • useTagStyle
  • useTagNoscript
  • useHtmlAttrs
  • useBodyAttrs
  • useTitleTemplate
  • useServerTagTitle
  • useServerTagBase
  • useServerTagMeta
  • useServerTagMetaFlat
  • useServerTagLink
  • useServerTagScript
  • useServerTagStyle
  • useServerTagNoscript
  • useServerHtmlAttrs
  • useServerBodyAttrs
  • useServerTitleTemplate

v1.2.2

Compare Source

Bug Fixes
  • unhead: only sort head tags with capo (536fd8e)
  • unhead: opt-in capo tracking (663cd10)

v1.2.1

Compare Source

v1.1.35

Compare Source

Bug Fixes
  • allow async transformers (0eeff31)

v1.1.34

Compare Source

Bug Fixes
  • allow hooking into before tag resolve tags:beforeResolve (1f22aec)

v1.1.33

Compare Source

Bug Fixes
  • unhead: broken titles with $1 in them (69dc8ef)
unjs/unhead (@​unhead/vue)

v1.3.1

Compare Source

v1.3.0

Compare Source

Highlights 🔥
Improved DOM Renderer (https://github.com/unjs/unhead/pull/185)

The slowest part of Unhead is figuring out what DOM elements and attributes are needed to be added, updated or removed.

This release introduces an improved DOM renderer with some key improvements:

  • 30% Smaller: Now under 1kb (954 bytes)
  • ~50% Faster: Taking a typical site from 30ms to 15ms to render tags on the initial mount and 11ms to 7ms on page changes.
Bundle Improvements

You should see a ~20% reduction in your client bundle without losing any functionality.

  • Code was cleaned up and simplified
  • Utils no longer exported
  • Deprecated composables removed

Before

image

After

image

Hash Hydration Plugin (https://github.com/unjs/unhead/pull/183)

A flag was previously introduced that enabled experimental hash hydration experimentalHashHydration. This reduces your initial mount time to 0ms for the dom renderer. This has now been moved to a plugin.

This is now an optional plugin and should perform better.

createHead({
-  experimentalHashHydration: true,
+  plugins: [
+   HashHydrationPlugin()
+ ]
})
Other Changes
  • Debounced promise is now attached to the Unhead instance instead of global
  • New hook: dom:rendered get tags once they're rendered
⚠️ Breaking Changes

There were a number of more verbose composable which were deprecated in v1, they have now been removed. (https://github.com/unjs/unhead/pull/184).

If you're using any of the following, you should use the useHead or other composable.

  • useTagTitle
  • useTagBase
  • useTagMeta
  • useTagMetaFlat
  • useTagLink
  • useTagScript
  • useTagStyle
  • useTagNoscript
  • useHtmlAttrs
  • useBodyAttrs
  • useTitleTemplate
  • useServerTagTitle
  • useServerTagBase
  • useServerTagMeta
  • useServerTagMetaFlat
  • useServerTagLink
  • useServerTagScript
  • useServerTagStyle
  • useServerTagNoscript
  • useServerHtmlAttrs
  • useServerBodyAttrs
  • useServerTitleTemplate

v1.2.2

Compare Source

Bug Fixes
  • unhead: only sort head tags with capo (536fd8e)
  • unhead: opt-in capo tracking (663cd10)

v1.2.1

Compare Source

v1.1.35

Compare Source

Bug Fixes
  • allow async transformers (0eeff31)

v1.1.34

Compare Source

Bug Fixes
  • allow hooking into before tag resolve tags:beforeResolve (1f22aec)

v1.1.33

Compare Source

Bug Fixes
  • unhead: broken titles with $1 in them (69dc8ef)
unjs/destr (destr)

v2.0.1

Compare Source

compare changes

🔥 Performance
  • Avoid lowercasing long strings (#​81)
📖 Documentation
  • Correct safeDestr example usage and tests (#​75)
🏡 Chore
🎨 Styles
❤️ Contributors
eslint/eslint (eslint)

v8.47.0

Compare Source

Features

  • 53d7508 feat: update regex for methods with thisArg (#​17439) (Francesco Trotta)

Bug Fixes

  • 631648e fix: do not report on shadowed constructors in no-new-wrappers (#​17447) (Francesco Trotta)

Documentation

Chores

v8.46.0

Compare Source

Features

Bug Fixes

  • 9803c7c fix: FlatESLint#getRulesMetaForResults shouldn't throw on unknown rules (#​17393) (Milos Djermanovic)
  • 42faa17 fix: Update no-loop-func to not overlap with no-undef (#​17358) (Matt Wilkinson)

Documentation

  • 4d474e3 docs: update with TypeScript info (#​17423) (James)
  • 091f44e docs: File extension named processor deprecation (#​17362) (Matt Wilkinson)
  • 9254a6c docs: Update README (GitHub Actions Bot)
  • 6d6dc51 docs: fix overlapping of open in playground button (#​17403) (Tanuj Kanti)
  • 7fc3a2c docs: Add private class features info to no-underscore-dangle (#​17386) (Matt Wilkinson)
  • da73e58 docs: Migrating eslint-env configuration comments (#​17390) (Francesco Trotta)
  • 80dffed docs: fix Ignoring Files section in config migration guide (#​17392) (Milos Djermanovic)
  • 8a9abb7 docs: Update README (GitHub Actions Bot)
  • 7e9be4b docs: Update README (GitHub Actions Bot)
  • 0b0bbe0 docs: Update README (GitHub Actions Bot)

Chores

  • d1eb7e4 chore: Update ecosystem dependencies (#​17427) (Nicholas C. Zakas)
  • fab9e97 chore: package.json update for eslint-config-eslint release (ESLint Jenkins)
  • 6246711 chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • 0aa0bc3 chore: Add PRs to triage project (#​17421) (Nicholas C. Zakas)
gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)

v46.4.6

Compare Source

Bug Fixes

v46.4.5

Compare Source

Bug Fixes
  • require-jsdoc: accessibility check for latest typescript-eslint/parser (#​1136) (e41df35)
rich-harris/magic-string (magic-string)

v0.30.2

Compare Source

Features
node-fetch/node-fetch (node-fetch)

v3.3.2

Compare Source

Bug Fixes
unjs/ohash (ohash)

v1.1.3

Compare Source

compare changes

🔥 Performance
  • object-hash: Avoid using array to just concatenate the string (#​36)
  • object-hash: Avoid toString when we know that the value is already a string (#​33)
  • object-hash: Faster isNativeFunction check (#​30)
  • object-hash: Faster extract object type from toString (#​31)
  • object-hash: Faster object access by avoid string concat (#​32)
  • object-hash: Faster circular checking by using map (#​34)
  • object-hash: Reuse default options when is not passed (#​37)
  • object-hash: Avoid splice method to insert values (#​35)
💅 Refactors
  • Simplify diff formatting (8e6cabc)
📖 Documentation
  • Improve jsdoc for objectHash() (#​43)
🏡 Chore
❤️ Contributors
  • Pooya Parsa (@​pi0)
  • Owen Kieffer-Jones
  • Vinicius Lourenço
pnpm/pnpm (pnpm)

v8.6.12

Compare Source

Patch Changes
  • Make the error message friendlier when a user attempts to run a command that does not exist #​6887.
  • pnpm patch should work correctly when shared-workspace-file is set to false #​6885.
  • pnpm env use should retry deleting the previous Node.js executable #​6587.
  • pnpm dlx should not print an error stack when the underlying script execution fails #​6698.
  • When showing the download progress of large tarball files, always display the same number of digits after the decimal point #​6901.
  • Report download progress less frequently to improve performance #​6906.
  • pnpm install --frozen-lockfile --lockfile-only should fail if the lockfile is not up to date with the package.json files #​6913.
Our Gold Sponsors
Our Silver Sponsors

v8.6.11

Compare Source

Patch Changes

  • Change the install error message when a lockfile is wanted but absent to indicate the wanted lockfile is absent, not present. This now reflects the actual error #​6851.
  • When dealing with a local dependency that is a path to a symlink, a new symlink should be created to the original symlink, not to the actual directory location.
  • The length of the temporary file names in the content-addressable store reduced in order to prevent ENAMETOOLONG errors from happening #​6842.
  • Don't print "added" stats, when installing with --lockfile-only.
  • Installation of a git-hosted dependency should not fail if the pnpm-lock.yaml file of the installed dependency is not up-to-date #​6865.
  • Don't ignore empty strings in params #​6594.
  • Always set dedupe-peer-dependents to false, when running installation during deploy #​6858.
  • When several containers use the same store simultaneously, there's a chance that multiple containers may create a temporary file at the same time. In such scenarios, pnpm could fail to rename the temporary file in one of the containers. This issue has been addressed: pnpm will no longer fail if the temporary file is absent but the destination file exists.
  • Authorization token should be found in the configuration, when the requested URL is explicitly specified with a default port (443 on HTTPS or 80 on HTTP) #​6863.

Our Gold Sponsors

Our Silver Sponsors

v8.6.10

Compare Source

Patch Changes

  • Installation succeeds if a non-optional dependency of an optional dependency has failing installation scripts #​6822.
  • The length of the temporary file names in the content-addressable store reduced in order to prevent ENAMETOOLONG errors from happening

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from c8f892a to 5ed818a Compare July 30, 2023 22:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 3471a48 to 4ab3b48 Compare August 7, 2023 09:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 29033ed to 5ddbdf8 Compare August 14, 2023 14:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5ddbdf8 to 201f5c2 Compare August 14, 2023 16:31
@danielroe danielroe merged commit 01d9544 into main Aug 14, 2023
9 checks passed
@danielroe danielroe deleted the renovate/all-minor-patch branch August 14, 2023 20:18
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.

1 participant