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

build(deps): bump the dependencies group with 11 updates #249

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 4, 2023

Bumps the dependencies group with 11 updates:

Package From To
i18next 23.7.6 23.7.7
i18next-http-backend 2.4.1 2.4.2
vue 3.3.8 3.3.10
@playwright/test 1.39.0 1.40.1
@vitejs/plugin-vue 4.4.1 4.5.1
postcss 8.4.31 8.4.32
typescript 5.2.2 5.3.2
vite 4.5.0 5.0.5
vite-plugin-pages 0.31.0 0.32.0
vite-plugin-pwa 0.16.7 0.17.2
vue-tsc 1.8.22 1.8.24

Updates i18next from 23.7.6 to 23.7.7

Release notes

Sourced from i18next's releases.

v23.7.7

  • optimize TypeScript V4 export
Changelog

Sourced from i18next's changelog.

23.7.7

  • optimize TypeScript V4 export
Commits

Updates i18next-http-backend from 2.4.1 to 2.4.2

Changelog

Sourced from i18next-http-backend's changelog.

2.4.2

  • fix: mjs typings export
Commits

Updates vue from 3.3.8 to 3.3.10

Release notes

Sourced from vue's releases.

v3.3.10

Please refer to CHANGELOG.md for details.

v3.3.9

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vue's changelog.

3.3.10 (2023-12-04)

Bug Fixes

  • app: prevent template from being cached between apps with different options (#9724) (ec71585), closes #9618
  • compiler-sfc: avoid passing forEach index to genMap (f12db7f)
  • compiler-sfc: deindent pug/jade templates (6345197), closes #3231 #3842 #7723
  • compiler-sfc: fix :where and :is selector in scoped mode with multiple selectors (#9735) (c3e2c55), closes #9707
  • compiler-sfc: generate more treeshaking friendly code (#9507) (8d74ca0), closes #9500
  • compiler-sfc: support inferring generic types (#8511) (eb5e307), closes #8482
  • compiler-sfc: support resolving components from props (#8785) (7cbcee3)
  • compiler-sfc: throw error when failing to load TS during type resolution (#8883) (4936d2e)
  • cssVars: cssVar names should be double-escaped when generating code for ssr (#8824) (5199a12), closes #7823
  • deps: update compiler to ^7.23.4 (#9681) (31f6ebc)
  • runtime-core: Suspense get anchor properly in Transition (#9309) (65f3fe2), closes #8105
  • runtime-dom: set width/height with units as attribute (#8781) (bfc1838)
  • ssr: avoid computed being accidentally cached before server render (#9688) (30d5d93), closes #5300
  • types: expose emits as props in functional components (#9234) (887e54c)
  • types: fix reactive collection types (#8960) (ad27473), closes #8904
  • types: improve return type withKeys and withModifiers (#9734) (43c3cfd)

Performance Improvements

  • optimize on* prop check (38aaa8c)
  • runtime-dom: cache modifier wrapper functions (da4a4fb), closes #8882
  • v-on: constant handlers with modifiers should not be treated as dynamic (4d94ebf)

3.3.9 (2023-11-25)

Bug Fixes

... (truncated)

Commits
  • d5a88ef release: v3.3.10
  • c3e2c55 fix(compiler-sfc): fix :where and :is selector in scoped mode with multiple s...
  • bf7269a chore(deps): update compiler (#9745)
  • ec71585 fix(app): prevent template from being cached between apps with different opti...
  • f2f5f76 chore(deps): update all non-major dependencies (#9744)
  • f4ec0b3 chore: fix typos in CHANGELOG.md (#9746) [ci skip]
  • 65f3fe2 fix(runtime-core): Suspense get anchor properly in Transition (#9309)
  • f12db7f fix(compiler-sfc): avoid passing forEach index to genMap
  • 43c3cfd fix(types): improve return type withKeys and withModifiers (#9734)
  • 9ea2b86 chore(template-explorer): fix overflow screen problem (#7282) [ci skip]
  • Additional commits viewable in compare view

Updates @playwright/test from 1.39.0 to 1.40.1

Release notes

Sourced from @​playwright/test's releases.

v1.40.1

Highlights

microsoft/playwright#28319 - [REGRESSION]: Version 1.40.0 Produces corrupted traces microsoft/playwright#28371 - [BUG] The color of the 'ok' text did not change to green in the vs code test results section microsoft/playwright#28321 - [BUG] Ambiguous test outcome and status for serial mode microsoft/playwright#28362 - [BUG] Merging blobs ends up in Error: Cannot create a string longer than 0x1fffffe8 characters microsoft/playwright#28239 - fix: collect all errors in removeFolders

Browser Versions

  • Chromium 120.0.6099.28
  • Mozilla Firefox 119.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 119
  • Microsoft Edge 119

v1.40.0

Test Generator Update

Playwright Test Generator

New tools to generate assertions:

Here is an example of a generated test with assertions:

import { test, expect } from '@playwright/test';
test('test', async ({ page }) => {
await page.goto('https://playwright.dev/');
await page.getByRole('link', { name: 'Get started' }).click();
await expect(page.getByLabel('Breadcrumbs').getByRole('list')).toContainText('Installation');
await expect(page.getByLabel('Search')).toBeVisible();
await page.getByLabel('Search').click();
await page.getByPlaceholder('Search docs').fill('locator');
await expect(page.getByPlaceholder('Search docs')).toHaveValue('locator');
});

New APIs

Other Changes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by dgozman-ms, a new releaser for @​playwright/test since your current version.


Updates @vitejs/plugin-vue from 4.4.1 to 4.5.1

Release notes

Sourced from @​vitejs/plugin-vue's releases.

plugin-vue@4.5.1

Please refer to CHANGELOG.md for details.

plugin-vue@4.5.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from @​vitejs/plugin-vue's changelog.

4.5.1 (2023-12-01)

  • fix: respect vite base config for absolute URLs during dev (44d3eb0)

4.5.0 (2023-11-16)

  • chore: update peerDependencies to support Vite 5 (#290) (f92861a), closes #290
  • chore: upgrade deps (c046eba)
  • fix(deps): update all non-major dependencies (#262) (c316d43), closes #262
Commits
  • 977a63a release: plugin-vue@4.5.1
  • 44d3eb0 fix: respect vite base config for absolute URLs during dev
  • 6bd09a1 release: plugin-vue@4.5.0
  • c046eba chore: upgrade deps
  • c316d43 fix(deps): update all non-major dependencies (#262)
  • f92861a chore: update peerDependencies to support Vite 5 (#290)
  • See full diff in compare view

Updates postcss from 8.4.31 to 8.4.32

Release notes

Sourced from postcss's releases.

8.4.32

Changelog

Sourced from postcss's changelog.

8.4.32

  • Fixed postcss().process() types (by Andrew Ferreira).
Commits

Updates typescript from 5.2.2 to 5.3.2

Release notes

Sourced from typescript's releases.

TypeScript 5.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.3 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.3 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on npm.

Commits

Updates vite from 4.5.0 to 5.0.5

Release notes

Sourced from vite's releases.

create-vite@5.0.0

Please refer to CHANGELOG.md for details.

create-vite@5.0.0-beta.1

Please refer to CHANGELOG.md for details.

create-vite@5.0.0-beta.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.0.5 (2023-12-04)

5.0.4 (2023-11-29)

5.0.3 (2023-11-28)

5.0.2 (2023-11-21)

5.0.1 (2023-11-21)

... (truncated)

Commits

Updates vite-plugin-pages from 0.31.0 to 0.32.0

Release notes

Sourced from vite-plugin-pages's releases.

v0.32.0

   🚨 Breaking Changes

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v0.32.0-beta.0

   🚨 Breaking Changes

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • a638fe3 chore: release v0.32.0
  • 93ec69b chore: release v0.32.0-beta.0
  • 876d8ab chore(deps): lock file maintenance (#428)
  • 0b0d2d2 chore(deps): update actions/setup-node action to v4 (#442)
  • 6652943 chore(deps): update actions/checkout action to v4 (#439)
  • 605c609 chore: remove vue-module example
  • 66e5f94 feat: node v20
  • 3a11318 chore: migrate devcontainer settings
  • cba117b feat!: migrate to type module and use @​antfu/eslint-config
  • 7659066 chore: update deps
  • Additional commits viewable in compare view

Updates vite-plugin-pwa from 0.16.7 to 0.17.2

Release notes

Sourced from vite-plugin-pwa's releases.

v0.17.2

   🐞 Bug Fixes

    View changes on GitHub

v0.17.1

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v0.17.0

   🚨 Breaking Changes

    View changes on GitHub
Commits
  • 4d3b1d0 chore: release v0.17.2
  • ceab94a fix: expose injectRegister in pwa info (#611)
  • 3ceab95 chore: release v0.17.1
  • df8b4b0 fix: remove sw cache storage entries when using self destroying option (#609)
  • 194fb59 chore: upgrade to latest eslint config (#600)
  • f183340 feat: add 'script-defer' option for injectRegister script (#605)
  • 7aca990 chore: update examples + lint
  • f2051c5 chore: release v0.17.0
  • 54b7ab9 feat!: support Vite 5 (#598)
  • d4c053b chore: bump to pnpm v8.10.3
  • Additional commits viewable in compare view

Updates vue-tsc from 1.8.22 to 1.8.24

Changelog

Sourced from vue-tsc's changelog.

1.8.24 (2023/11/29)

  • refactor(component-type-helpers): vue 2 types now move to vue-component-type-helpers/vue2 (#3404)
  • feat(language-core): expose defineEmits's arg and typeArg in parseScriptSetupRanges (#3710) - thanks @​so1ve
  • fix(language-core): strictTemplates fails to report unknown components (#3539)
  • fix(language-core): script syntax breaks if script options does not have trailing comma (#3755)
  • fix(language-core): script syntax breaks if options are enclosed in parentheses (#3756)
  • fix(language-core): allow using as with multiple <script> blocks (#3733) - thanks @​so1ve
  • fix(language-core): component type narrowing not working in template
  • fix(language-core): incremental insertion incorrect if input <script setup> tag above <script> tag (#3743) - thanks @​so1ve
  • fix(language-core): don't camelize attributes for plain elements (#3750) - thanks @​rchl
  • fix(vscode): syntax highlighting for .prop shorthand (#3729) - thanks @​so1ve

Volar.js 1.11.1 updates:

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 dependencies group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [i18next](https://github.com/i18next/i18next) | `23.7.6` | `23.7.7` |
| [i18next-http-backend](https://github.com/i18next/i18next-http-backend) | `2.4.1` | `2.4.2` |
| [vue](https://github.com/vuejs/core) | `3.3.8` | `3.3.10` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.39.0` | `1.40.1` |
| [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue) | `4.4.1` | `4.5.1` |
| [postcss](https://github.com/postcss/postcss) | `8.4.31` | `8.4.32` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.2.2` | `5.3.2` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `4.5.0` | `5.0.5` |
| [vite-plugin-pages](https://github.com/hannoeru/vite-plugin-pages) | `0.31.0` | `0.32.0` |
| [vite-plugin-pwa](https://github.com/vite-pwa/vite-plugin-pwa) | `0.16.7` | `0.17.2` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `1.8.22` | `1.8.24` |


Updates `i18next` from 23.7.6 to 23.7.7
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v23.7.6...v23.7.7)

Updates `i18next-http-backend` from 2.4.1 to 2.4.2
- [Changelog](https://github.com/i18next/i18next-http-backend/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next-http-backend@v2.4.1...v2.4.2)

Updates `vue` from 3.3.8 to 3.3.10
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.3.8...v3.3.10)

Updates `@playwright/test` from 1.39.0 to 1.40.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.39.0...v1.40.1)

Updates `@vitejs/plugin-vue` from 4.4.1 to 4.5.1
- [Release notes](https://github.com/vitejs/vite-plugin-vue/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-vue/blob/plugin-vue@4.5.1/packages/plugin-vue/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-vue/commits/plugin-vue@4.5.1/packages/plugin-vue)

Updates `postcss` from 8.4.31 to 8.4.32
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.31...8.4.32)

Updates `typescript` from 5.2.2 to 5.3.2
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.2.2...v5.3.2)

Updates `vite` from 4.5.0 to 5.0.5
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.0.5/packages/vite)

Updates `vite-plugin-pages` from 0.31.0 to 0.32.0
- [Release notes](https://github.com/hannoeru/vite-plugin-pages/releases)
- [Commits](hannoeru/vite-plugin-pages@v0.31.0...v0.32.0)

Updates `vite-plugin-pwa` from 0.16.7 to 0.17.2
- [Release notes](https://github.com/vite-pwa/vite-plugin-pwa/releases)
- [Commits](vite-pwa/vite-plugin-pwa@v0.16.7...v0.17.2)

Updates `vue-tsc` from 1.8.22 to 1.8.24
- [Release notes](https://github.com/vuejs/language-tools/releases)
- [Changelog](https://github.com/vuejs/language-tools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/language-tools/commits/v1.8.24/packages/tsc)

---
updated-dependencies:
- dependency-name: i18next
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: i18next-http-backend
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: vue
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@vitejs/plugin-vue"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: vite-plugin-pages
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: vite-plugin-pwa
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: vue-tsc
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 4, 2023
Copy link

sonarqubecloud bot commented Dec 4, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 11, 2023

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Dec 11, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-f449738cb9 branch December 11, 2023 14: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.

0 participants