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

Merged
merged 1 commit into from
Nov 21, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 21, 2023

Mend Renovate logo banner

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@commitlint/cli (source) ^18.4.1 -> ^18.4.3 age adoption passing confidence
@commitlint/config-conventional (source) ^18.4.0 -> ^18.4.3 age adoption passing confidence
@playwright/test (source) ^1.39.0 -> ^1.40.0 age adoption passing confidence
@sveltejs/kit (source) ^1.27.5 -> ^1.27.6 age adoption passing confidence
@trpc/client (source) ^10.43.3 -> ^10.43.6 age adoption passing confidence
@trpc/server (source) ^10.43.3 -> ^10.43.6 age adoption passing confidence
@types/node (source) ^20.9.0 -> ^20.9.3 age adoption passing confidence
@typescript-eslint/eslint-plugin ^6.11.0 -> ^6.12.0 age adoption passing confidence
@typescript-eslint/parser ^6.11.0 -> ^6.12.0 age adoption passing confidence
eslint (source) ^8.53.0 -> ^8.54.0 age adoption passing confidence
postcss-load-config ^4.0.1 -> ^4.0.2 age adoption passing confidence
prettier-plugin-svelte ^3.1.0 -> ^3.1.1 age adoption passing confidence
svelte (source) ^4.2.3 -> ^4.2.7 age adoption passing confidence
typescript (source) ^5.2.2 -> ^5.3.2 age adoption passing confidence
vite-plugin-pwa ^0.16.7 -> ^0.17.0 age adoption passing confidence

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v18.4.3

Compare Source

Note: Version bump only for package @​commitlint/cli

v18.4.2

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v18.4.3

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v18.4.2

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

microsoft/playwright (@​playwright/test)

v1.40.0

Compare Source

Test Generator Update

Playwright Test Generator

New tools to generate assertions:

Here is an example of a generated test with assertions:

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

test('test', async ({ page }) => {
  await page.goto('https://playwright.dev/');
  await page.getByRole('link', { name: 'Get started' }).click();
  await expect(page.getByLabel('Breadcrumbs').getByRole('list')).toContainText('Installation');
  await expect(page.getByLabel('Search')).toBeVisible();
  await page.getByLabel('Search').click();
  await page.getByPlaceholder('Search docs').fill('locator');
  await expect(page.getByPlaceholder('Search docs')).toHaveValue('locator');
});

New APIs

Other Changes

Browser Versions

  • Chromium 120.0.6099.28
  • Mozilla Firefox 119.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 119
  • Microsoft Edge 119
sveltejs/kit (@​sveltejs/kit)

v1.27.6

Compare Source

Patch Changes
  • fix: use runes in generated root when detecting Svelte 5 (#​11028)

  • fix: correctly prerender pages that use browser globals and have SSR turned off (#​11032)

  • fix: correctly show 404 for prerendered dynamic routes when navigating client-side without a root layout server load (#​11025)

trpc/trpc (@​trpc/client)

v10.43.6

Compare Source

What's Changed

Full Changelog: trpc/trpc@v10.43.5...v10.43.6

v10.43.5

Compare Source

What's Changed

Full Changelog: trpc/trpc@v10.43.4...v10.43.5

v10.43.4

Compare Source

What's Changed

New Contributors

Full Changelog: trpc/trpc@v10.43.3...v10.43.4

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v6.12.0

Compare Source

Bug Fixes
  • eslint-plugin: [class-methods-use-this] detect a problematic case for private/protected members if ignoreClassesThatImplementAnInterface is set (#​7705) (155aa1f)
  • eslint-plugin: [no-unnecessary-condition] fix false positive with computed member access and branded key type (#​7706) (f151b26)
  • eslint-plugin: [switch-exhaustiveness-check] enum members with new line or single quotes are not being fixed correctly (#​7806) (a034d0a), closes #​7768
Features
  • [member-ordering] add accessor support for member-ordering (#​7927) (3c8312d)
  • eslint-plugin: [switch-exhaustiveness-check] add requireDefaultForNonUnion option (#​7880) (4cfcd45)

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v6.12.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

You can read about our versioning strategy and releases on our website.

eslint/eslint (eslint)

v8.54.0

Compare Source

Features

  • a7a883b feat: for-direction rule add check for condition in reverse order (#​17755) (Angelo Annunziata)
  • 1452dc9 feat: Add suggestions to no-console (#​17680) (Joel Mathew Koshy)
  • 21ebf8a feat: update no-array-constructor rule (#​17711) (Francesco Trotta)

Bug Fixes

  • 98926e6 fix: Ensure that extra data is not accidentally stored in the cache file (#​17760) (Milos Djermanovic)
  • e8cf9f6 fix: Make dark scroll bar in dark theme (#​17753) (Pavel)
  • 3cbeaad fix: Use cwd constructor option as config basePath in Linter (#​17705) (Milos Djermanovic)

Documentation

  • becfdd3 docs: Make clear when rules are removed (#​17728) (Nicholas C. Zakas)
  • 05d6e99 docs: update "Submit a Pull Request" page (#​17712) (Francesco Trotta)
  • eb2279e docs: display info about deprecated rules (#​17749) (Percy Ma)
  • d245326 docs: Correct working in migrating plugin docs (#​17722) (Filip Tammergård)

Chores

postcss/postcss-load-config (postcss-load-config)

v4.0.2

Compare Source

Bug Fixes
  • src/index: added support for .cts files (#​252)
  • deps: updated lilconfig (#​253)
sveltejs/prettier-plugin-svelte (prettier-plugin-svelte)

v3.1.1

Compare Source

  • (fix) handle types on each/await contexts
sveltejs/svelte (svelte)

v4.2.7

Compare Source

Patch Changes
  • fix: handle spreads within static strings (#​9554)

v4.2.6

Compare Source

Patch Changes
  • fix: adjust static attribute regex (#​9551)

v4.2.5

Compare Source

Patch Changes
  • fix: ignore expressions in top level script/style tag attributes (#​9498)

v4.2.4

Compare Source

Patch Changes
  • fix: handle closing tags inside attribute values (#​9486)
Microsoft/TypeScript (typescript)

v5.3.2: TypeScript 5.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

vite-pwa/vite-plugin-pwa (vite-plugin-pwa)

v0.17.0

Compare Source

   🚨 Breaking Changes
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - "after 5:00pm on Monday" in timezone America/New_York, 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 force-pushed the renovate/all-minor-patch branch from fc9cf8f to 86425fc Compare November 21, 2023 03:51
@renovate renovate bot merged commit 1815abf into master Nov 21, 2023
1 check passed
@renovate renovate bot deleted the renovate/all-minor-patch branch November 21, 2023 06:50
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