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 non-major dependencies #263

Merged
merged 1 commit into from
Apr 12, 2024

Conversation

renovate-bot
Copy link
Contributor

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@biomejs/biome (source) ^1.6.3 -> ^1.6.4 age adoption passing confidence
@lerna-lite/cli (source) ^3.3.1 -> ^3.3.2 age adoption passing confidence
@lerna-lite/publish (source) ^3.3.1 -> ^3.3.2 age adoption passing confidence
@lerna-lite/watch (source) ^3.3.1 -> ^3.3.2 age adoption passing confidence
@playwright/test (source) ^1.42.1 -> ^1.43.0 age adoption passing confidence
@types/node (source) ^20.12.2 -> ^20.12.7 age adoption passing confidence
dompurify ^3.0.11 -> ^3.1.0 age adoption passing confidence
pnpm (source) 8.15.5 -> 8.15.6 age adoption passing confidence
pnpm (source) ^8.15.5 -> ^8.15.6 age adoption passing confidence
sass ^1.72.0 -> ^1.75.0 age adoption passing confidence
typescript (source) 5.4.3 -> 5.4.5 age adoption passing confidence
vite (source) ^5.2.7 -> ^5.2.8 age adoption passing confidence

Release Notes

biomejs/biome (@​biomejs/biome)

v1.6.4

Compare Source

Analyzer
Bug fixes
  • An operator with no spaces around in a binary expression no longer breaks the js analyzer (#​2243). Contributed by @​Sec-ant
CLI
Bug fixes
Configuration
Bug fixes
  • Correctly calculate enabled rules in lint rule groups. Now a specific rule belonging to a group can be enabled even if its group-level preset option recommended or all is false (#​2191). Contributed by @​Sec-ant
Editors
Bug fixes
  • Fix the unexpected code deletion and repetition when quickfix.biome is enabled and some import-related rules are applied (#​2222, #​688, #​1015). Contributed by @​Sec-ant
Linter
Bug fixes
  • Fix #​2211. noChildrenProp should work fine when children pass as a prop in a new line. Contributed by @​fireairforce

  • Fix #​2248. lint/a11y/useButtonType should not trigger when button element with spread attribute. Contributed by @​fireairforce

  • Fix #​2216. lint/style/useNamingConvention should not ignore JSX Component name binding. Contributed by @​fireairforce

Enhancements
  • Add support for object property members in the rule useSortedClasses. Contributed by @​ematipico
Parser
  • The parser doesn't throw any error when the frontmatter of .astro files contains an illegal return:
lerna-lite/lerna-lite (@​lerna-lite/cli)

v3.3.2

Compare Source

Note: Version bump only for package @​lerna-lite/cli

lerna-lite/lerna-lite (@​lerna-lite/publish)

v3.3.2

Compare Source

Note: Version bump only for package @​lerna-lite/publish

lerna-lite/lerna-lite (@​lerna-lite/watch)

v3.3.2

Compare Source

Note: Version bump only for package @​lerna-lite/watch

microsoft/playwright (@​playwright/test)

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
cure53/DOMPurify (dompurify)

v3.1.0: DOMPurify 3.1.0

Compare Source

  • Added new setting SAFE_FOR_XML to enable better control over comment scrubbing
  • Updated README to warn about happy-dom not being safe for use with DOMPurify yet
  • Updated the LICENSE file to show the accurate year number
  • Updated several build and test dependencies
pnpm/pnpm (pnpm)

v8.15.6

Compare Source

Patch Changes

  • The exit code of the child process should be preserved on pnpm run #​7817.
  • When sorting packages in a workspace, take into account workspace dependencies specified as peerDependencies #​7813.
  • Add --ignore-scripts argument to prune command #​7836.

Platinum Sponsors

Gold Sponsors

Silver Sponsors

sass/dart-sass (sass)

v1.75.0

Compare Source

  • Fix a bug in which stylesheet canonicalization could be cached incorrectly
    when custom importers or the Node.js package importer made decisions based on
    the URL of the containing stylesheet.
JS API
  • Allow importer to be passed without url in StringOptionsWithImporter.

v1.74.1

Compare Source

  • No user-visible changes.
Microsoft/TypeScript (typescript)

v5.4.5: TypeScript 5.4.5

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.4.4: TypeScript 5.4.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

vitejs/vite (vite)

v5.2.8

Compare Source


Configuration

📅 Schedule: Branch creation - "every 2 weeks on Friday" (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, check this box

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

Copy link

stackblitz bot commented Apr 12, 2024

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

Copy link

Playwright E2E Test Results

78 tests  ±0   78 ✅ ±0   1m 50s ⏱️ -3s
69 suites ±0    0 💤 ±0 
 1 files   ±0    0 ❌ ±0 

Results for commit 70cdbef. ± Comparison against base commit c06ba2a.

@ghiscoding ghiscoding merged commit 82cb906 into ghiscoding:main Apr 12, 2024
3 checks passed
@renovate-bot renovate-bot deleted the renovate/all-minor-patch branch April 12, 2024 01:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants