Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

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

Merged
merged 1 commit into from
Feb 15, 2022
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 11, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@iconify-json/carbon ^1.0.15 -> ^1.1.0 age adoption passing confidence
@netlify/functions ^0.11.0 -> ^0.11.1 age adoption passing confidence
@rollup/plugin-replace ^3.0.1 -> ^3.1.0 age adoption passing confidence
@types/node ^16.11.24 -> ^16.11.25 age adoption passing confidence
@types/webpack-hot-middleware ^2.25.5 -> ^2.25.6 age adoption passing confidence
@unocss/reset ^0.24.3 -> ^0.24.4 age adoption passing confidence
@vitejs/plugin-vue-jsx ^1.3.4 -> ^1.3.7 age adoption passing confidence
@vue/reactivity ^3.2.30 -> ^3.2.31 age adoption passing confidence
@vue/shared ^3.2.30 -> ^3.2.31 age adoption passing confidence
eslint (source) ^8.8.0 -> ^8.9.0 age adoption passing confidence
eslint-plugin-jsdoc ^37.8.2 -> ^37.9.1 age adoption passing confidence
execa ^6.0.0 -> ^6.1.0 age adoption passing confidence
playwright (source) ^1.18.1 -> ^1.19.0 age adoption passing confidence
vite ^2.8.1 -> ^2.8.2 age adoption passing confidence
vitest ^0.3.4 -> ^0.3.5 age adoption passing confidence
vue 3.2.30 -> 3.2.31 age adoption passing confidence
vue ^3.2.30 -> ^3.2.31 age adoption passing confidence
vue-tsc ^0.31.2 -> ^0.31.4 age adoption passing confidence

Release Notes

netlify/functions

v0.11.1

Compare Source

rollup/plugins

v3.1.0

2022-02-11

Features
  • feat: typeofReplacements option (#​1084)
unocss/unocss

v0.24.4

Compare Source

Bug Fixes
Features
vitejs/vite (@​vitejs/plugin-vue-jsx)

v1.3.7

Bug Fixes

v1.3.5

vuejs/core

v3.2.31

Compare Source

Bug Fixes
  • compiler-ssr: no need to inject resolveDirective calls for setup custom directives (436c500)
  • runtime-core: allow spying on proxy methods (#​4216) (8457d8b)
  • ssr: always hydrate children for HMR (#​5406) (0342fae), closes #​5405
eslint/eslint

v8.9.0

Compare Source

Features
  • 68f64a9 feat: update eslint-scope to ignore "use strict" directives in ES3 (#​15595) (Milos Djermanovic)
  • db57639 feat: add es2016, es2018, es2019, and es2022 environments (#​15587) (Milos Djermanovic)
  • 2dc38aa feat: fix bug with arrow function return types in function-paren-newline (#​15541) (Milos Djermanovic)
  • 6f940c3 feat: Implement FlatRuleTester (#​15519) (Nicholas C. Zakas)
Documentation
  • 570a036 docs: add one-var example with for-loop initializer (#​15596) (Milos Djermanovic)
  • 417191d docs: Remove the $ prefix in terminal commands (#​15565) (Andreas Lewis)
  • 389ff34 docs: add missing Variable#scope property in the scope manager docs (#​15571) (Milos Djermanovic)
  • f63795d docs: no-eval replace dead link with working one (#​15568) (rasenplanscher)
  • 0383591 docs: Remove old Markdown issue template (#​15556) (Brandon Mills)
  • a8dd5a2 docs: add 'when not to use it' section in no-duplicate-case docs (#​15563) (Milos Djermanovic)
  • 1ad439e docs: add missed verb in docs (#​15550) (Jeff Mosawy)
Chores
  • 586d45c chore: Upgrade to espree@9.3.1 (#​15600) (Milos Djermanovic)
  • 623e1e2 chore: Upgrade to eslint-visitor-keys@3.3.0 (#​15599) (Milos Djermanovic)
  • 355b23d chore: fix outdated link to Code of Conduct in PR template (#​15578) (Rich Trott)
  • b10fef2 ci: use Node 16 for browser test (#​15569) (Milos Djermanovic)
  • 92f89fb chore: suggest demo link in bug report template (#​15557) (Brandon Mills)
gajus/eslint-plugin-jsdoc

v37.9.1

Compare Source

Bug Fixes
  • valid-types: require name for tutorial but disallow type (32447f0)

v37.9.0

Compare Source

Features
  • check-values: add checking of kind (eb92080)
sindresorhus/execa

v6.1.0

Compare Source

Microsoft/playwright

v1.19.0

Compare Source

Version 1.19

Playwright Test Updates
Soft assertions

Playwright Test v1.19 now supports soft assertions. Failed soft assertions do not terminate test execution, but mark the test as failed. Read more in our documentation.

// Make a few checks that will not stop the test when failed...
await expect.soft(page.locator('#status')).toHaveText('Success');
await expect.soft(page.locator('#eta')).toHaveText('1 day');

// ... and continue the test to check more things.
await page.locator('#next-page').click();
await expect.soft(page.locator('#title')).toHaveText('Make another order');
Custom error messages

You can now specify a custom error message as a second argument to the expect and expect.soft functions, for example:

await expect(page.locator('text=Name'), 'should be logged in').toBeVisible();

The error would look like this:

    Error: should be logged in

    Call log:
      - expect.toBeVisible with timeout 5000ms
      - waiting for selector "text=Name"

      2 |
      3 | test('example test', async({ page }) => {
    > 4 |   await expect(page.locator('text=Name'), 'should be logged in').toBeVisible();
        |                                                                  ^
      5 | });
      6 |
Parallel mode in file

By default, tests in a single file are run in order. If you have many independent tests in a single file, you can now
run them in parallel with method: test.describe.configure:

import { test } from '@​playwright/test';

test.describe.configure({ mode: 'parallel' });

test('parallel 1', async () => {});
test('parallel 2', async () => {});
⚠️ Potentially breaking change in Playwright Test Global Setup

It is unlikely that this change will affect you, no action is required if your tests keep running as they did.

We've noticed that in rare cases, the set of tests to be executed was configured in the global setup by means of the environment variables. We also noticed some applications that were post processing the reporters' output in the global teardown. If you are doing one of the two, learn more

Locator Updates
Locator now supports a has option that makes sure it contains another locator inside:
await page.locator('article', {
  has: page.locator('.highlight'),
}).locator('button').click();

The snippet above will select article that has highlight in it and will press the button in it.
Read more in locator documentation

Other Updates

Browser Versions

  • Chromium 100.0.4863.0
  • Mozilla Firefox 96.0.1
  • WebKit 15.4

This version was also tested against the following stable channels:

  • Google Chrome 98
  • Microsoft Edge 98

vitejs/vite (vite)

v2.8.2

Compare Source

Features
Performance Improvements
vitest-dev/vitest

v0.3.5

Compare Source

Bug Fixes
Features
johnsoncodehk/volar

v0.31.4

Compare Source

  • perf: faster auto-import completion (#​808)

v0.31.3

Compare Source

  • feat: trigger event auto-complete when input @ (#​949)
  • feat: add v-bind:*, v-on:* to auto-complete (#​949)
  • feat: avoid auto import added in script block first line (#​916)
  • fix: language features not working in symbolic link project (#​914)
  • fix: language server throw in process.env.NODE_ENV === 'production' env (#​915)
  • fix: component type broken by union event key type (#​926)
  • fix: document symbol not working for <script setup> (#​938)

Configuration

📅 Schedule: 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, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@netlify
Copy link

netlify bot commented Feb 11, 2022

✔️ Deploy Preview for nuxt3-docs canceled.

🔨 Explore the source changes: e8f6c3e

🔍 Inspect the deploy log: https://app.netlify.com/sites/nuxt3-docs/deploys/620b77d7db70940009992f54

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from da90bfe to 8fd925a Compare February 12, 2022 00:11
@renovate renovate bot changed the title chore(deps): update devdependency eslint-plugin-jsdoc to ^37.9.0 chore(deps): update all non-major dependencies Feb 12, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from 9e0626c to 52de7dd Compare February 15, 2022 09:47
@pi0 pi0 changed the title chore(deps): update all non-major dependencies rebase! chore(deps): update all non-major dependencies Feb 15, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 52de7dd to e8f6c3e Compare February 15, 2022 09:52
@renovate renovate bot changed the title rebase! chore(deps): update all non-major dependencies chore(deps): update all non-major dependencies Feb 15, 2022
@pi0 pi0 merged commit cc9d525 into main Feb 15, 2022
@pi0 pi0 deleted the renovate/all-minor-patch branch February 15, 2022 09:53
@danielroe danielroe added the 3.x label Jan 19, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants