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 #768

Merged
merged 1 commit into from
Oct 16, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 16, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) ^18.18.4 -> ^18.18.5 age adoption passing confidence
carbon-components-svelte ^0.80.0 -> ^0.81.0 age adoption passing confidence
eslint-plugin-n ^16.1.0 -> ^16.2.0 age adoption passing confidence
eslint-plugin-prettier ^5.0.0 -> ^5.0.1 age adoption passing confidence
magic-string ^0.30.4 -> ^0.30.5 age adoption passing confidence
playwright-core (source) ~1.38.1 -> ~1.39.0 age adoption passing confidence
pnpm (source) 8.9.0 -> 8.9.2 age adoption passing confidence
sass ^1.69.1 -> ^1.69.3 age adoption passing confidence
vite (source) ^5.0.0-beta.5 -> ^5.0.0-beta.7 age adoption passing confidence
vite (source) ^5.0.0-beta.4 -> ^5.0.0-beta.7 age adoption passing confidence
vitefu ^0.2.4 -> ^0.2.5 age adoption passing confidence

Release Notes

carbon-design-system/carbon-components-svelte (carbon-components-svelte)

v0.81.0

Compare Source

eslint-community/eslint-plugin-n (eslint-plugin-n)

v16.2.0

Compare Source

Features

  • feat: detect non-member expressions in n/no-sync (#​127) (6d02512)

Bugfixes

  • fix: Normalise package.json#files before checking ignores and whitelist (#​123) (fixes #​122) (2d43f48)

Docs & Chores

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.0.1

Compare Source

Patch Changes
rich-harris/magic-string (magic-string)

v0.30.5

Compare Source

Bug Fixes
microsoft/playwright (playwright-core)

v1.39.0

Compare Source

Add custom matchers to your expect

You can extend Playwright assertions by providing custom matchers. These matchers will be available on the expect object.

import { expect as baseExpect } from '@​playwright/test';
export const expect = baseExpect.extend({
  async toHaveAmount(locator: Locator, expected: number, options?: { timeout?: number }) {
    // ... see documentation for how to write matchers.
  },
});

test('pass', async ({ page }) => {
  await expect(page.getByTestId('cart')).toHaveAmount(5);
});

See the documentation for a full example.

Merge test fixtures

You can now merge test fixtures from multiple files or modules:

import { mergeTests } from '@​playwright/test';
import { test as dbTest } from 'database-test-utils';
import { test as a11yTest } from 'a11y-test-utils';

export const test = mergeTests(dbTest, a11yTest);
import { test } from './fixtures';

test('passes', async ({ database, page, a11y }) => {
  // use database and a11y fixtures.
});

Merge custom expect matchers

You can now merge custom expect matchers from multiple files or modules:

import { mergeTests, mergeExpects } from '@​playwright/test';
import { test as dbTest, expect as dbExpect } from 'database-test-utils';
import { test as a11yTest, expect as a11yExpect } from 'a11y-test-utils';

export const test = mergeTests(dbTest, a11yTest);
export const expect = mergeExpects(dbExpect, a11yExpect);
import { test, expect } from './fixtures';

test('passes', async ({ page, database }) => {
  await expect(database).toHaveDatabaseUser('admin');
  await expect(page).toPassA11yAudit();
});

Hide implementation details: box test steps

You can mark a test.step() as "boxed" so that errors inside it point to the step call site.

async function login(page) {
  await test.step('login', async () => {
    // ...
  }, { box: true });  // Note the "box" option here.
}
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
  ... error details omitted ...

  14 |   await page.goto('https://github.com/login');
> 15 |   await login(page);
     |         ^
  16 | });

See test.step() documentation for a full example.

New APIs

Browser Versions

  • Chromium 119.0.6045.9
  • Mozilla Firefox 118.0.1
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 118
  • Microsoft Edge 118
pnpm/pnpm (pnpm)

v8.9.2

Compare Source

Patch Changes

  • Don't use reflink on Windows #​7186.
  • Do not run node-gyp rebuild if preinstall lifecycle script is present #​7206.

Our Gold Sponsors

Our Silver Sponsors

v8.9.1

Compare Source

Patch Changes

  • Optimize selection result output of pnpm update --interactive 7109
  • When shared-workspace-lockfile is set to false, read the pnpm settings from package.json files that are nested. This was broken in pnpm v8.9.0 #​7184.
  • Fix file cloning to node_modules on Windows Dev Drives #​7186. This is a fix to a regression that was shipped with v8.9.0.
  • pnpm dlx should ignore any settings that are in a package.json file found in the current working directory #​7198.

Our Gold Sponsors

Our Silver Sponsors

sass/dart-sass (sass)

v1.69.3

Compare Source

Embedded Sass
  • Fix TypeScript type locations in package.json.

v1.69.2

Compare Source

JS API
  • Fix a bug where Sass crashed when running in the browser if there was a global
    variable named process.
vitejs/vite (vite)

v5.0.0-beta.7

Compare Source

v5.0.0-beta.6

Compare Source

svitejs/vitefu (vitefu)

v0.2.5

Compare Source

  • Align findDepPkgJsonPath implementation with Vite
  • Allow Vite 5 peer dependency

Configuration

📅 Schedule: Branch creation - "before 4am 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, check this box

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

@bluwy bluwy merged commit 003597d into main Oct 16, 2023
@bluwy bluwy deleted the renovate/all-minor-patch branch October 16, 2023 05:23
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.

1 participant