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

Merged
merged 1 commit into from
Nov 20, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 20, 2023

Mend Renovate logo banner

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) ^1.39.0 -> ^1.40.0 age adoption passing confidence
@remix-run/css-bundle (source) ^2.1.0 -> ^2.3.0 age adoption passing confidence
@remix-run/dev (source) ^2.1.0 -> ^2.3.0 age adoption passing confidence
@remix-run/eslint-config ^2.1.0 -> ^2.3.0 age adoption passing confidence
@remix-run/node ^2.1.0 -> ^2.3.0 age adoption passing confidence
@remix-run/react ^2.1.0 -> ^2.3.0 age adoption passing confidence
@remix-run/serve ^2.1.0 -> ^2.3.0 age adoption passing confidence
@typescript-eslint/eslint-plugin ^6.10.0 -> ^6.11.0 age adoption passing confidence
@typescript-eslint/parser ^6.10.0 -> ^6.11.0 age adoption passing confidence
chromatic (source) ^9.0.0 -> ^9.1.0 age adoption passing confidence
eslint (source) ^8.53.0 -> ^8.54.0 age adoption passing confidence
wait-on ^7.1.0 -> ^7.2.0 age adoption passing confidence

Release Notes

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
remix-run/remix (@​remix-run/css-bundle)

v2.3.0

Compare Source

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.3.0.

remix-run/remix (@​remix-run/dev)

v2.3.0

Compare Source

Patch Changes
  • Support rendering of LiveReload component after Scripts in Vite dev (#​7919)
  • fix(vite): fix "react-refresh/babel" resolution for custom server with pnpm (#​7904)
  • Support JSX usage in .jsx files without manual React import in Vite (#​7888)
  • Support optional rendering of LiveReload component in Vite dev (#​7919)
  • Fix Vite production builds when plugins that have different local state between development and production modes are present, e.g. @mdx-js/rollup. (#​7911)
  • Cache resolution of Remix Vite plugin options (#​7908)
  • Support Vite 5 (#​7846)
  • Allow process.env.NODE_ENV values other than "development" in Vite dev (#​7980)
  • Attach CSS from shared chunks to routes in Vite build (#​7952)
  • fix(vite): Let Vite handle serving files outside of project root via /@​fs (#​7913)
    • This fixes errors when using default client entry or server entry in a pnpm project where those files may be outside of the project root, but within the workspace root.
    • By default, Vite prevents access to files outside the workspace root (when using workspaces) or outside of the project root (when not using workspaces) unless user explicitly opts into it via Vite's server.fs.allow.
  • Improve performance of LiveReload proxy in Vite dev (#​7883)
  • fix(vite): deduplicate @remix-run/react (#​7926)
    • Pre-bundle Remix dependencies to avoid Remix router duplicates.
    • Our remix-react-proxy plugin does not process default client and
    • server entry files since those come from within node_modules.
    • That means that before Vite pre-bundles dependencies (e.g. first time dev server is run) mismatching Remix routers cause Error: You must render this element inside a <Remix> element.
  • Fix React Fast Refresh error on load when using defer in Vite dev server (#​7842)
  • Handle multiple "Set-Cookie" headers in Vite dev server (#​7843)
  • Fix flash of unstyled content on initial page load in Vite dev when using a custom Express server (#​7937)
  • Emit assets that were only referenced in the server build into the client assets directory in Vite build (#​7892, cherry-picked in 8cd31d65)
  • Populate process.env from .env files on the server in Vite dev (#​7958)
  • Fix FutureConfig type (#​7895)
  • Updated dependencies:
remix-run/remix (@​remix-run/eslint-config)

v2.3.0

Compare Source

No significant changes to this package were made in this release. See the repo CHANGELOG.md for an overview of all changes in v2.3.0.

remix-run/remix (@​remix-run/node)

v2.3.0

Compare Source

Patch Changes
remix-run/remix (@​remix-run/react)

v2.3.0

Compare Source

Minor Changes
  • Remove the unstable_ prefix from the useBlocker hook as it's been in use for enough time that we are confident in the API. We do not plan to remove the prefix from unstable_usePrompt due to differences in how browsers handle window.confirm that prevent React Router from guaranteeing consistent/correct behavior. (#​7882)
Patch Changes
remix-run/remix (@​remix-run/serve)

v2.3.0

Compare Source

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

v6.11.0

Compare Source

Bug Fixes
  • eslint-plugin: [explicit-function-return-type] support JSX attributes in allowTypedFunctionExpressions (#​7553) (be2777c)
  • eslint-plugin: [no-unnecessary-qualifier] handle nested namespace id (#​7883) (a668f5b)
Features

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

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

v6.11.0

Compare Source

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

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

chromaui/chromatic-cli (chromatic)

v9.1.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
⚠️ Pushed to main
Authors: 3

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

jeffbski/wait-on (wait-on)

v7.2.0

Compare Source

Update axios from 0.27.2 to latest 1.6.1 which fixes security vulnerability CVE-2023-45857.

Thanks @​AndrewMax for the PR #​147 and also for those that confirmed it.


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.

@renovate renovate bot requested review from a team, hisuida, goyanespaula and kwatkins-ld November 20, 2023 01:10
Copy link

changeset-bot bot commented Nov 20, 2023

⚠️ No Changeset found

Latest commit: c0f82da

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor

Size Change: -2 B (0%)

Total Size: 189 kB

Filename Size Change
packages/tokens/dist/index.es.js 3.08 kB -1 B (0%)
packages/tokens/dist/index.js 3.08 kB -1 B (0%)
ℹ️ View Unchanged
Filename Size
packages/alert/dist/index.es.js 1.37 kB
packages/alert/dist/index.js 1.44 kB
packages/alert/dist/style.css 1.58 kB
packages/avatar/dist/index.es.js 1.17 kB
packages/avatar/dist/index.js 1.23 kB
packages/avatar/dist/style.css 469 B
packages/banner/dist/index.es.js 644 B
packages/banner/dist/index.js 714 B
packages/banner/dist/style.css 548 B
packages/box/dist/index.es.js 6.32 kB
packages/box/dist/index.js 6.41 kB
packages/box/dist/style.css 2.48 kB
packages/button/dist/index.es.js 1.88 kB
packages/button/dist/index.js 1.95 kB
packages/button/dist/style.css 3.83 kB
packages/card/dist/index.es.js 707 B
packages/card/dist/index.js 775 B
packages/card/dist/style.css 758 B
packages/chip/dist/index.es.js 676 B
packages/chip/dist/index.js 745 B
packages/chip/dist/style.css 569 B
packages/clipboard/dist/index.es.js 1.51 kB
packages/clipboard/dist/index.js 1.59 kB
packages/clipboard/dist/style.css 839 B
packages/collapsible/dist/index.es.js 856 B
packages/collapsible/dist/index.js 926 B
packages/collapsible/dist/style.css 94 B
packages/columns/dist/index.es.js 619 B
packages/columns/dist/index.js 692 B
packages/columns/dist/style.css 354 B
packages/core/dist/index.es.js 1.14 kB
packages/core/dist/index.js 1.53 kB
packages/counter/dist/index.es.js 334 B
packages/counter/dist/index.js 397 B
packages/counter/dist/style.css 262 B
packages/data-table/dist/index.es.js 2.46 kB
packages/data-table/dist/index.js 2.52 kB
packages/data-table/dist/style.css 388 B
packages/drawer/dist/index.es.js 1.73 kB
packages/drawer/dist/index.js 2.29 kB
packages/drawer/dist/style.css 580 B
packages/dropdown/dist/index.es.js 1.15 kB
packages/dropdown/dist/index.js 1.21 kB
packages/filter/dist/index.es.js 2.3 kB
packages/filter/dist/index.js 2.38 kB
packages/filter/dist/style.css 1.01 kB
packages/focus-trap/dist/index.es.js 270 B
packages/focus-trap/dist/index.js 333 B
packages/form/dist/index.es.js 4.23 kB
packages/form/dist/index.js 4.34 kB
packages/form/dist/style.css 2.77 kB
packages/icons/dist/index.es.js 1.35 kB
packages/icons/dist/index.js 1.42 kB
packages/icons/dist/style.css 528 B
packages/inline-edit/dist/index.es.js 1.56 kB
packages/inline-edit/dist/index.js 1.65 kB
packages/inline-edit/dist/style.css 359 B
packages/inline/dist/index.es.js 565 B
packages/inline/dist/index.js 637 B
packages/inline/dist/style.css 299 B
packages/markdown/dist/index.es.js 960 B
packages/markdown/dist/index.js 1.03 kB
packages/markdown/dist/style.css 241 B
packages/menu/dist/index.es.js 3.8 kB
packages/menu/dist/index.js 3.88 kB
packages/menu/dist/style.css 1.1 kB
packages/modal/dist/index.es.js 3.03 kB
packages/modal/dist/index.js 3.59 kB
packages/modal/dist/style.css 1.04 kB
packages/navigation/dist/index.es.js 2.79 kB
packages/navigation/dist/index.js 2.86 kB
packages/navigation/dist/style.css 1.26 kB
packages/overlay/dist/index.es.js 1 kB
packages/overlay/dist/index.js 1.06 kB
packages/pagination/dist/index.es.js 1.17 kB
packages/pagination/dist/index.js 1.24 kB
packages/pagination/dist/style.css 363 B
packages/popover/dist/index.es.js 3.07 kB
packages/popover/dist/index.js 3.58 kB
packages/popover/dist/style.css 631 B
packages/portal/dist/index.es.js 393 B
packages/portal/dist/index.js 453 B
packages/progress-bubbles/dist/index.es.js 1.76 kB
packages/progress-bubbles/dist/index.js 1.83 kB
packages/progress-bubbles/dist/style.css 971 B
packages/progress/dist/index.es.js 1.02 kB
packages/progress/dist/index.js 1.09 kB
packages/progress/dist/style.css 272 B
packages/select/dist/index.es.js 5.92 kB
packages/select/dist/index.js 6.01 kB
packages/select/dist/style.css 1.34 kB
packages/slider/dist/index.es.js 580 B
packages/slider/dist/index.js 645 B
packages/slider/dist/style.css 676 B
packages/snackbar/dist/index.es.js 1.18 kB
packages/snackbar/dist/index.js 1.73 kB
packages/snackbar/dist/style.css 602 B
packages/split-button/dist/index.es.js 945 B
packages/split-button/dist/index.js 1.01 kB
packages/split-button/dist/style.css 535 B
packages/stack/dist/index.es.js 494 B
packages/stack/dist/index.js 565 B
packages/stack/dist/style.css 226 B
packages/tab-list/dist/index.es.js 737 B
packages/tab-list/dist/index.js 809 B
packages/tab-list/dist/style.css 460 B
packages/table/dist/index.es.js 1.02 kB
packages/table/dist/index.js 1.1 kB
packages/table/dist/style.css 912 B
packages/tag/dist/index.es.js 2.83 kB
packages/tag/dist/index.js 2.91 kB
packages/tag/dist/style.css 821 B
packages/toast/dist/index.es.js 980 B
packages/toast/dist/index.js 1.53 kB
packages/toast/dist/style.css 552 B
packages/toggle/dist/index.es.js 764 B
packages/toggle/dist/index.js 843 B
packages/toggle/dist/style.css 1.53 kB
packages/tokens/dist/index.css 2.46 kB
packages/tokens/dist/media-queries.css 114 B
packages/tokens/dist/themes.css 1.72 kB
packages/tooltip/dist/index.es.js 515 B
packages/tooltip/dist/index.js 590 B
packages/tooltip/dist/style.css 370 B
packages/vars/dist/index.es.js 2.56 kB
packages/vars/dist/index.js 2.63 kB

compressed-size-action

@Niznikr Niznikr added the skip changeset To indicate a pull request does not need a changeset label Nov 20, 2023
@Niznikr Niznikr merged commit dc25d14 into main Nov 20, 2023
@Niznikr Niznikr deleted the renovate/all-minor-patch branch November 20, 2023 14:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
skip changeset To indicate a pull request does not need a changeset
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant