Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 30, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@codemirror/autocomplete ^0.20.1 -> ^0.20.3 age adoption passing confidence devDependencies patch
@codemirror/state ^0.20.0 -> ^0.20.1 age adoption passing confidence devDependencies patch
@codemirror/view ^0.20.6 -> ^0.20.7 age adoption passing confidence devDependencies patch
lint-staged ^12.4.1 -> ^12.5.0 age adoption passing confidence devDependencies minor
playwright-chromium (source) ^1.22.2 -> ^1.23.0 age adoption passing confidence devDependencies minor
prettier (source) ^2.6.2 -> ^2.7.1 age adoption passing confidence devDependencies minor
python 3.10.4-slim-buster -> 3.10.5-slim-buster age adoption passing confidence final patch
uvicorn (source, changelog) ==0.17.6 -> ==0.18.2 age adoption passing confidence minor
uvu ^0.5.3 -> ^0.5.4 age adoption passing confidence devDependencies patch
vite ^2.9.9 -> ^2.9.13 age adoption passing confidence devDependencies patch
vite-plugin-windicss ^1.8.4 -> ^1.8.5 age adoption passing confidence devDependencies patch
vue ^3.2.36 -> ^3.2.37 age adoption passing confidence devDependencies patch
windicss ^3.5.4 -> ^3.5.5 age adoption passing confidence devDependencies patch

Release Notes

codemirror/autocomplete

v0.20.3

Compare Source

Bug fixes

Add an aria-label to the completion listbox.

Fix a regression that caused transactions generated for completion to not have a userEvent annotation.

v0.20.2

Compare Source

New features

The package now exports an insertCompletionText helper that implements the default behavior for applying a completion.

codemirror/state

v0.20.1

Compare Source

New features

EditorView.phrase now accepts additional arguments, which it will interpolate into the phrase in the place of $ markers.

codemirror/view

v0.20.7

Compare Source

Bug fixes

Fix an issue on Chrome Android where the DOM could fail to display the actual document after backspace.

Avoid an issue on Chrome Android where DOM changes were sometimes inappropriately replace by a backspace key effect due to spurious beforeinput events.

Fix a problem where the content element's width didn't cover the width of the actual content.

Work around a bug in Chrome 102 which caused wheel scrolling of the editor to be interrupted every few lines.

okonet/lint-staged

v12.5.0

Compare Source

Bug Fixes
  • include all files when using --config <path> (641d1c2)
  • skip backup stash when using the --diff option (d4da24d)
Features
  • add --diff-filter option for overriding list of (staged) files (753ef72)
  • add --diff option for overriding list of (staged) files (35fcce9)

v12.4.3

Compare Source

Bug Fixes
  • deps: downgrade yaml@1.10.2 to support Node.js 12 (383a96e)
  • deps: update commander@^9.2.0 (22ebf52)
  • deps: update yaml@^2.0.1 (ec73af0)

v12.4.2

Compare Source

Bug Fixes
  • correctly handle --max-arg-length cli option (1db5f26)
Microsoft/playwright

v1.23.0

Compare Source

Network Replay

Now you can record network traffic into a HAR file and re-use the data in your tests.

To record network into HAR file:

npx playwright open --save-har=github.har.zip https://github.com/microsoft

Alternatively, you can record HAR programmatically:

const context = await browser.newContext({
  recordHar: { path: 'github.har.zip' }
});
// ... do stuff ...
await context.close();

Use the new methods page.routeFromHAR() or browserContext.routeFromHAR() to serve matching responses from the HAR file:

await context.routeFromHAR('github.har.zip');

Read more in our documentation.

Advanced Routing

You can now use route.fallback() to defer routing to other handlers.

Consider the following example:

// Remove a header from all requests.
test.beforeEach(async ({ page }) => {
  await page.route('**/*', route => {
    const headers = route.request().headers();
    delete headers['if-none-match'];
    route.fallback({ headers });
  });
});

test('should work', async ({ page }) => {
  await page.route('**/*', route => {
    if (route.request().resourceType() === 'image')
      route.abort();
    else
      route.fallback();
  });
});

Note that the new methods page.routeFromHAR() and browserContext.routeFromHAR() also participate in routing and could be deferred to.

Web-First Assertions Update
Component Tests Update

Read more about component testing with Playwright.

Miscellaneous
  • If there's a service worker that's in your way, you can now easily disable it with a new context option serviceWorkers:
    // playwright.config.ts
    export default {
      use: {
        serviceWorkers: 'block',
      }
    }
  • Using .zip path for recordHar context option automatically zips the resulting HAR:
    const context = await browser.newContext({
      recordHar: {
        path: 'github.har.zip',
      }
    });
  • If you intend to edit HAR by hand, consider using the "minimal" HAR recording mode
    that only records information that is essential for replaying:
    const context = await browser.newContext({
      recordHar: {
        path: 'github.har.zip',
        mode: 'minimal',
      }
    });
  • Playwright now runs on Ubuntu 22 amd64 and Ubuntu 22 arm64. We also publish new docker image mcr.microsoft.com/playwright:v1.23.0-focal.
⚠️ Breaking Changes ⚠️

WebServer is now considered "ready" if request to the specified port has any of the following HTTP status codes:

  • 200-299
  • 300-399 (new)
  • 400, 401, 402, 403 (new)
prettier/prettier

v2.7.1

Compare Source

diff

Keep useful empty lines in description (#​13013 by @​chimurai)

v2.7.0

Compare Source

"""
First line
Second Line
"""
type Person {
name: String
}

lukeed/uvu

v0.5.4

Compare Source

Patches


Full Changelog: lukeed/uvu@v0.5.3...v0.5.4

vitejs/vite

v2.9.13

Compare Source

Please refer to CHANGELOG.md for details.

v2.9.12

Compare Source

v2.9.11

Compare Source

v2.9.10

Compare Source

antfu/vite-plugin-windicss

v1.8.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
vuejs/core

v3.2.37

Compare Source

Bug Fixes
windicss/windicss

v3.5.5

Compare Source


Configuration

📅 Schedule: Branch creation - "before 3am on Monday" (UTC), 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, click this checkbox.

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

@renovate renovate bot added the dependencies Pull requests that update the dependencies label May 30, 2022
@netlify
Copy link

netlify bot commented May 30, 2022

Deploy Preview for python-playground ready!

Name Link
🔨 Latest commit 3b63b2a
🔍 Latest deploy log https://app.netlify.com/sites/python-playground/deploys/62ba224ce32b230008aaf0f3
😎 Deploy Preview https://deploy-preview-105--python-playground.netlify.app/
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site settings.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 149ca1c to ebebb12 Compare June 2, 2022 10:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 0f09639 to dbeb3be Compare June 10, 2022 16:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 753fc65 to 7fcb5bd Compare June 16, 2022 11:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from f7c9f99 to 4e8cf07 Compare June 27, 2022 12:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4e8cf07 to 3b63b2a Compare June 27, 2022 21:34
@jeffydc jeffydc closed this Sep 6, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update the dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant