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

fix(deps): обновление зависимостей #181

Merged
merged 4 commits into from
Jan 15, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 7, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxt/kit (source) 3.9.0 -> 3.9.1 age adoption passing confidence
@nuxt/schema (source) 3.9.0 -> 3.9.1 age adoption passing confidence
@vueuse/core (source) 10.7.1 -> 10.7.2 age adoption passing confidence
happy-dom 12.10.3 -> 13.1.1 age adoption passing confidence
isomorphic-dompurify ~2.0.0 -> ~2.2.0 age adoption passing confidence
maska (source) 2.1.10 -> 2.1.11 age adoption passing confidence
nuxt (source) 3.9.0 -> 3.9.1 age adoption passing confidence
pnpm (source) 8.13.1 -> 8.14.1 age adoption passing confidence
vitepress (source) 1.0.0-rc.33 -> 1.0.0-rc.36 age adoption passing confidence
vitest (source) 1.1.0 -> 1.2.0 age adoption passing confidence

Release Notes

nuxt/nuxt (@​nuxt/kit)

v3.9.1

Compare Source

3.9.1 is a regularly scheduled patch release.

✅ Upgrading

As usual, our recommendation for upgrading is to run:

nuxi upgrade --force

This will refresh your lockfile as well, and ensures that you pull in updates from other dependencies that Nuxt relies on, particularly in the vue and unjs ecosystems.

👉 Changelog

compare changes

🔥 Performance
  • nuxt: Avoid multiple iterations in useRequestHeaders (#​24853)
  • kit,schema,nuxt: Refactor startsWith to array access (#​24744)
  • nuxt: Use single iteration when normalising routes (#​24946)
  • nuxt: Remove some line breaks when rendering html (#​24888)
🩹 Fixes
  • nuxt: Catch error in NuxtErrorBoundary with ssr: false (#​24896)
  • kit: Show correct error when module can't be loaded (#​24957)
  • nuxt: Deeply watch island props (#​24986)
  • nuxt: Don't show transition on initial page load (#​24935)
  • nuxt: Clone cookie to detect changes within object (#​25007)
  • nuxt: Do not warn about missing layouts on error page (#​25008)
  • nuxt: Ignore plugins typed as any in inferred injections (#​25010)
  • nuxt: Reuse intermediate setup state in <ClientOnly> (#​25009)
  • nuxt: Skip scanning layout/middleware without name (#​25015)
  • nuxt: Wrap universal router currentRoute in Ref (#​25026)
  • nuxt: Stop loading indicator if page keys are the same (#​24931)
💅 Refactors
  • nuxt: Remove old reference to nuxt-config-schema (#​25067)
📖 Documentation
  • Switch features/future docs (f5676fba5)
  • Corrected json syntax in 7.esm.md (#​24937)
  • Specify yarn pnp opt-out for install (#​24923)
  • Capitalise hash for vue-router docs link (#​24948)
  • Add badge for callOnce utility (792cf6713)
  • Warn about hydration issue with URL fragment (#​24961)
  • Mention readValidatedBody and getValidatedQuery (#​24990)
  • Add missing imports for nitro examples (#​25003)
  • Add an example of provide with object syntax plugins (#​24993)
  • Update EOL date for Nuxt 2 (afbc4080b)
  • Add callout for getValidatedRouterParams (#​25057)
  • Warn about ref unwrapping when providing refs from plugin (#​25054)
🏡 Chore
  • Add bullet for adding tests in pr template (2bda817ea)
✅ Tests
❤️ Contributors
vueuse/vueuse (@​vueuse/core)

v10.7.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
capricorn86/happy-dom (happy-dom)

v13.1.1

Compare Source

👷‍♂️ Patch fixes
  • Normalize whitespace in processing of DOMTokenList. (#​1168)

Thank you @​takenspc for your contribution!

v13.1.0

Compare Source

🎨 Features
  • Makes properties getters and setters in Node classes according to spec. (#​1188)
  • Adds support for adopted stylesheets to Window.getComputedStyle(). (#​1188)

v13.0.7

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue related to using fake timers in Vitest making the test get stuck. (#​1210)

v13.0.6

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem related to exception thrown when creating a Node in the constructor of a custom element. (#​1207)

v13.0.5

Compare Source

👷‍♂️ Patch fixes

v13.0.4

Compare Source

👷‍♂️ Patch fixes
  • Adds support for fallback values when declaring a CSS variable (e.g. "var(--my-var, #FFF)"). (#​1192)

v13.0.3

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem with clearTimeout(), clearInterval() and cancelAnimationFrame() not supporting number values. (#​1201)

v13.0.2

Compare Source

👷‍♂️ Patch fixes
  • Removes unused browser setting. (#​1199)

v13.0.1

Compare Source

🎨 Features
  • Adds support for BrowserFrame.viewport. (#​466)
  • Adds support for Window.resizeTo(). (#​466)
  • Adds support for Window.resizeBy(). (#​466)
👷‍♂️ Patch fixes
  • Fixes issues related to viewport not being kept when navigating to new a URL. (#​466)

v13.0.0

Compare Source

💣 Breaking Changes
  • This is a big release where a lot of the code has been refactored to improve security and to be able to support the new Browser API. A big release is always a potential risk for bugs and therefore it make sense to make this a major release to avoid that consumers automatically updates to it. (#​466)
🎨 Features
  • Adds support for a Browser API similar to Puppeteer and Playwright. With the Browser API, it is for example possible to create new pages and navigate in them. You can read more about it in the Happy DOM Wiki. (#​466)
  • Improves security by not exposing sensitive internal logic to scripts running within the Happy DOM Browser. (#​466)
  • Improves support for CORS management. It now supports "OPTIONS" requests to detect if the client is allowed to proceed with a cross origin request. (#​466)
  • Adds support for HTTP response cache. The cache is in memory, but the plan is to add support for storing it on disk in the future. (#​466)
  • Improves support for XMLHttpRequest. It now supports the GZip, Deflate and Brotli encodings. (#​466)
  • Adds support for adding a process level error event listener for capturing errors. This is useful when using the Browser API, but will not work in environments such as Jest and Vitest, as it collides with their error listener. (#​466)
  • Adds support for Ẁindow.open(). (#​466)
  • Adds support for Ẁindow.close(). This function should now be used when tearing down the environment. (#​466)
  • Improves support for cookies. (#​466)
  • Improves support for HTMLIFrameElement. (#​466)
  • Changes export of types to use "import type" and "export type" in "index.js". This will allow transpilers/compilers to optimize better. (#​466)
  • Adds support for navigating when clicking on an anchor link. (#​466)
  • Adds support for navigating when setting Location.href. (#​466)
  • Improves support for MutationObserver. It will not collect multiple records with a microtask. It now also supports MutationObserver.takeRecords() for records that has not yet been published. (#​466)
  • Deprecates "@​happy-dom/uncaught-exception-observer" as the functionality is supported by "happy-dom" out of the box now. (#​466)
  • Uses Symbol for public internal properties instead of using "_" as a prefix, so that internal properties won't be enumerable. This will also make sure that these properties won't clash with properties defined by the consumer. (#​466)
👷‍♂️ Patch fixes
  • Improves the check for if the property is a class to avoid that it gets bound in "@​happy-dom/global-registrator". We only want functions to get bound to the global context. (#​466)
  • Fixes bug where new Document() did'nt work according to spec. (#​466)
  • Fixes bug where several Element classes wheren't available as properties on Window. (#​466)
  • Fixes bug in Document.importNode() where it didn't change ownerDocument on child nodes. (#​466)
  • Resets static ownerDocument state used when creating Node instances, so that it can be garbage collected if not used anymore. (#​466)

Merry Christmas and a Happy New Year! 🎅 ✨

This release took some time as I didn't want to release the Browser API without applying security fixes. I've also stumbled across a few other issues along the way that I felt I needed to address.

I hope you will enjoy the release!

kkomelin/isomorphic-dompurify (isomorphic-dompurify)

v2.2.0: Updated dependencies

Compare Source

Changelog
  • Updated dompurify and other dependencies.

See the complete changelog for more details.

Release

2.2.0

v2.1.0: Updated dependencies

Compare Source

Changelog

See the complete changelog for more details.

Release

2.1.0

beholdr/maska (maska)

v2.1.11

Compare Source

Fixed bug with multiple token by @​asselin in #​183

pnpm/pnpm (pnpm)

v8.14.1

Compare Source

Patch Changes

  • Resolve the current working directory to its real location before doing any operations #​6524.
  • Allow using token helpers in pnpm publish #​7316.
  • Handle Git repository names containing capital letters #​7488.
  • When hoisted-workspace-packages is true don't hoist the root package even if it has a name. Otherwise we would create a circular symlink.

Our Gold Sponsors

Our Silver Sponsors

v8.14.0

Compare Source

Minor Changes
  • A new option added for hoisting packages from the workspace. When hoist-workspace-packages is set to true, packages from the workspace are symlinked to either <workspace_root>/node_modules/.pnpm/node_modules or to <workspace_root>/node_modules depending on other hoisting settings (hoist-pattern and public-hoist-pattern) #​7451.
  • The pnpm dedupe command now accepts more command line options that the pnpm install command also accepts. Example: pnpm dedupe --store-dir=local-store-dir
Patch Changes
  • The package information output by cat-index should be sorted by key.
  • pnpm deploy should not touch the target directory if it already exists and isn't empty #​7351.
  • pnpm add a-module-already-in-dev-deps will show a message to notice the user that the package was not moved to "dependencies" #​926 and fix #​7319.
  • Don't install Node.js when use-node-version is set in a WebContainer #​7478.
  • Fix copy-on-write on Windows Dev Drives #​7468.
Our Gold Sponsors
Our Silver Sponsors
vuejs/vitepress (vitepress)

v1.0.0-rc.36

Compare Source

Bug Fixes
  • avoid pushing to history when clicking on the current link (#​3405) (d279e63)
  • theme/regression: external link icon not working (c236570), closes #​3424
  • theme/regression: inter getting bundled even importing without-fonts entry (#​3412) (b03fb83)

v1.0.0-rc.35

Compare Source

Bug Fixes
Features
Performance Improvements
  • localSearch: add concurrency pooling, cleanup logic, improve performance (#​3374) (ac5881e)

v1.0.0-rc.34

Compare Source

Bug Fixes
  • build: clear cache after build (9568fea), closes #​3363
  • default-theme: remove use of reactify for search i18n (8687b86)
  • print errors when importing an invalid dynamic route (#​3201) (6d89a08)
  • remove double title from home pages (9f1f04e), closes #​3375
  • theme/i18n: support customizing dark mode switch titles (#​3311) (50c9758)
Features
vitest-dev/vitest (vitest)

v1.2.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.1.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.1.2

Compare Source

   🐞 Bug Fixes

Configuration

📅 Schedule: Branch creation - "after 1am and before 5am on monday" in timezone Europe/Moscow, 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 requested a review from a team as a code owner January 7, 2024 23:00
@renovate renovate bot requested a review from f4lz January 7, 2024 23:00
@renovate renovate bot force-pushed the renovate/zavisimostej branch 9 times, most recently from 91e1424 to 4480918 Compare January 14, 2024 16:04
| datasource | package              | from        | to          |
| ---------- | -------------------- | ----------- | ----------- |
| npm        | @nuxt/kit            | 3.9.0       | 3.9.1       |
| npm        | @nuxt/schema         | 3.9.0       | 3.9.1       |
| npm        | @vueuse/core         | 10.7.1      | 10.7.2      |
| npm        | happy-dom            | 12.10.3     | 13.1.1      |
| npm        | isomorphic-dompurify | 2.0.0       | 2.2.0       |
| npm        | maska                | 2.1.10      | 2.1.11      |
| npm        | nuxt                 | 3.9.0       | 3.9.1       |
| npm        | pnpm                 | 8.13.1      | 8.14.1      |
| npm        | vitepress            | 1.0.0-rc.33 | 1.0.0-rc.36 |
| npm        | vitest               | 1.1.0       | 1.2.0       |
Copy link
Contributor Author

renovate bot commented Jan 15, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@ExEr7um ExEr7um merged commit 116c34e into main Jan 15, 2024
3 checks passed
@ExEr7um ExEr7um deleted the renovate/zavisimostej branch January 15, 2024 00:07
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