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 minor updates #271

Merged
merged 1 commit into from
Apr 5, 2024
Merged

chore(deps): update all minor updates #271

merged 1 commit into from
Apr 5, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 4, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@0no-co/graphqlsp ^1.7.1 -> ^1.8.0 age adoption passing confidence
@aws-sdk/client-s3 (source) ^3.540.0 -> ^3.549.0 age adoption passing confidence
@aws-sdk/client-ses (source) ^3.540.0 -> ^3.549.0 age adoption passing confidence
@aws-sdk/s3-request-presigner (source) ^3.540.0 -> ^3.549.0 age adoption passing confidence
@unovis/ts (source) ^1.3.5 -> ^1.4.0 age adoption passing confidence
@unovis/vue (source) ^1.3.5 -> ^1.4.0 age adoption passing confidence
happy-dom ^14.4.0 -> ^14.5.1 age adoption passing confidence
json-editor-vue ^0.12.0 -> ^0.13.0 age adoption passing confidence
playwright-core (source) ^1.42.1 -> ^1.43.0 age adoption passing confidence

Release Notes

0no-co/GraphQLSP (@​0no-co/graphqlsp)

v1.8.0

Compare Source

Minor Changes
Patch Changes
  • Switch to loading the schema with @gql.tada/internal utilities
    Submitted by @​kitten (See #​277)
aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)

v3.549.0

Compare Source

Note: Version bump only for package @​aws-sdk/client-s3

aws/aws-sdk-js-v3 (@​aws-sdk/client-ses)

v3.549.0

Compare Source

Note: Version bump only for package @​aws-sdk/client-ses

aws/aws-sdk-js-v3 (@​aws-sdk/s3-request-presigner)

v3.549.0

Compare Source

Note: Version bump only for package @​aws-sdk/s3-request-presigner

f5/unovis (@​unovis/ts)

v1.4.0

Compare Source

What's Changed

Full Changelog: f5/unovis@1.3.5...1.4.0

capricorn86/happy-dom (happy-dom)

v14.5.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem with Document.defaultView not referring to the global object when using GlobalRegistrator - By @​capricorn86 in task #​1367

v14.5.0

Compare Source

🎨 Features
  • Adds support for handling "application/x-www-form-urlencoded" in Request.formData() - By @​tt-public in #​1379
cloydlau/json-editor-vue (json-editor-vue)

v0.13.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
microsoft/playwright (playwright-core)

v1.43.0

Compare Source

New APIs

  • Method browserContext.clearCookies() now supports filters to remove only some cookies.

    // Clear all cookies.
    await context.clearCookies();
    // New: clear cookies with a particular name.
    await context.clearCookies({ name: 'session-id' });
    // New: clear cookies for a particular domain.
    await context.clearCookies({ domain: 'my-origin.com' });
  • New mode retain-on-first-failure for testOptions.trace. In this mode, trace is recorded for the first run of each test, but not for retires. When test run fails, the trace file is retained, otherwise it is removed.

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      use: {
        trace: 'retain-on-first-failure',
      },
    });
  • New property testInfo.tags exposes test tags during test execution.

    test('example', async ({ page }) => {
      console.log(test.info().tags);
    });
  • New method locator.contentFrame() converts a Locator object to a FrameLocator. This can be useful when you have a Locator object obtained somewhere, and later on would like to interact with the content inside the frame.

    const locator = page.locator('iframe[name="embedded"]');
    // ...
    const frameLocator = locator.contentFrame();
    await frameLocator.getByRole('button').click();
  • New method frameLocator.owner() converts a FrameLocator object to a Locator. This can be useful when you have a FrameLocator object obtained somewhere, and later on would like to interact with the iframe element.

    const frameLocator = page.frameLocator('iframe[name="embedded"]');
    // ...
    const locator = frameLocator.owner();
    await expect(locator).toBeVisible();

UI Mode Updates

Playwright UI Mode

  • See tags in the test list.
  • Filter by tags by typing @fast or clicking on the tag itself.
  • New shortcuts:
    • F5 to run tests.
    • Shift F5 to stop running tests.
    • Ctrl ` to toggle test output.

Browser Versions

  • Chromium 124.0.6367.29
  • Mozilla Firefox 124.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 123
  • Microsoft Edge 123

Configuration

📅 Schedule: Branch creation - "every 1 month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 changed the title chore(deps): update dependency json-editor-vue to ^0.13.0 chore(deps): update all minor updates Apr 4, 2024
@renovate renovate bot merged commit 4193705 into main Apr 5, 2024
2 checks passed
@renovate renovate bot deleted the renovate/all-minor branch April 5, 2024 01:42
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.

0 participants