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

Deps: Update all non-major dependencies #1104

Merged
merged 2 commits into from
Oct 23, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 23, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@babel/core (source) 7.23.0 -> 7.23.2 age adoption passing confidence devDependencies patch
@babel/preset-env (source) 7.22.20 -> 7.23.2 age adoption passing confidence devDependencies minor
@babel/preset-typescript (source) 7.23.0 -> 7.23.2 age adoption passing confidence devDependencies patch
@commitlint/cli (source) 17.7.2 -> 17.8.1 age adoption passing confidence devDependencies minor
@floating-ui/react (source) 0.26.0 -> 0.26.1 age adoption passing confidence devDependencies patch
@nrwl/nx-cloud 16.4.0 -> 16.5.2 age adoption passing confidence devDependencies minor
@​omlet/cli 1.0.1-beta.37 -> 1.0.1-beta.38 age adoption passing confidence devDependencies patch
@playwright/test (source) 1.38.1 -> 1.39.0 age adoption passing confidence devDependencies minor
@rollup/plugin-replace (source) 5.0.3 -> 5.0.4 age adoption passing confidence devDependencies patch
@swc/core (source) 1.3.92 -> 1.3.94 age adoption passing confidence devDependencies patch
@symfony/webpack-encore 4.4.0 -> 4.5.0 age adoption passing confidence devDependencies minor
@testing-library/jest-dom 6.1.3 -> 6.1.4 age adoption passing confidence devDependencies patch
@types/jest (source) 29.5.5 -> 29.5.6 age adoption passing confidence devDependencies patch
@types/node (source) 20.8.3 -> 20.8.7 age adoption passing confidence devDependencies patch
@types/react (source) 18.2.26 -> 18.2.31 age adoption passing confidence devDependencies patch
@types/react (source) 18.2.26 -> 18.2.31 age adoption passing confidence resolutions patch
@types/react-dom (source) 18.2.11 -> 18.2.14 age adoption passing confidence resolutions patch
@types/react-dom (source) 18.2.11 -> 18.2.14 age adoption passing confidence devDependencies patch
@types/react-transition-group (source) 4.4.7 -> 4.4.8 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin 6.7.4 -> 6.8.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser 6.7.4 -> 6.8.0 age adoption passing confidence devDependencies minor
actions/checkout v4.1.0 -> v4.1.1 age adoption passing confidence action patch
core-js 3.33.0 -> 3.33.1 age adoption passing confidence devDependencies patch
coverallsapp/github-action v2.2.1 -> v2.2.3 age adoption passing confidence action patch
eslint (source) 8.51.0 -> 8.52.0 age adoption passing confidence devDependencies minor
eslint-plugin-import 2.28.1 -> 2.29.0 age adoption passing confidence devDependencies minor
mcr.microsoft.com/playwright v1.38.1-jammy -> v1.39.0-jammy age adoption passing confidence container minor
sass 1.69.0 -> 1.69.4 age adoption passing confidence devDependencies patch
stylelint (source) 15.10.3 -> 15.11.0 age adoption passing confidence devDependencies minor
vite (source) 4.4.11 -> 4.5.0 age adoption passing confidence devDependencies minor
webpack 5.88.2 -> 5.89.0 age adoption passing confidence devDependencies minor
webpack-merge 5.9.0 -> 5.10.0 age adoption passing confidence devDependencies minor

Release Notes

babel/babel (@​babel/core)

v7.23.2

Compare Source

🐛 Bug Fix
  • babel-traverse
  • babel-preset-typescript
  • babel-helpers
  • babel-helpers, babel-plugin-transform-modules-commonjs, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
conventional-changelog/commitlint (@​commitlint/cli)

v17.8.1

Compare Source

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

v17.8.0

Compare Source

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

17.7.2 (2023-09-28)

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

17.7.1 (2023-08-10)

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

floating-ui/floating-ui (@​floating-ui/react)

v0.26.1

Compare Source

Patch Changes
  • ac17abb: feat(Composite): allow controlled mode with activeIndex and
    onNavigate props
  • c3bfd04: fix(useFocus): improve visibleOnly detection
  • 43725a2: feat(useDismiss): add capture option and default outsidePress to
    true
microsoft/playwright (@​playwright/test)

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
rollup/plugins (@​rollup/plugin-replace)

v5.0.4

Compare Source

2023-10-15

Bugfixes
  • fix: bump magic-string version #​1596
swc-project/swc (@​swc/core)

v1.3.94

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
Refactor

v1.3.93

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
  • (es/minifier) Fix script for extracting test cases from next.js app (#​8092) (a2d0779)
Refactor
symfony/webpack-encore (@​symfony/webpack-encore)

v4.5.0: Node min version to 16 & other dependency updates

Compare Source

Hey packagers!

Upgrading

Run:

npm install "@​symfony/webpack-encore@^4.5.0" --save-dev

Or:

yarn upgrade "@​symfony/webpack-encore@^4.5.0"

Changes: symfony/webpack-encore@v4.4.0...v4.5.0

Happy Packing!

testing-library/jest-dom (@​testing-library/jest-dom)

v6.1.4

Compare Source

Bug Fixes
  • upgrade @adobe/css-tools to 4.3.1 to address vulnerability (#​532) (44f1eab)
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v6.8.0

Compare Source

Bug Fixes
  • eslint-plugin: [consistent-type-imports] import assertion checks added (#​7722) (afdae37)
  • eslint-plugin: [no-shadow] fix static class generics for class expressions (#​7724) (e5ea1d0)
  • eslint-plugin: [no-unsafe-member-access] report on only the accessed property (#​7717) (f81a2da)
  • eslint-plugin: [no-useless-empty-export] exempt .d.ts (#​7718) (ac397f1)
Features
  • eslint-plugin: add new extended rule prefer-destructuring (#​7117) (3c6379b)

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

6.7.5 (2023-10-09)

Bug Fixes
  • eslint-plugin: [prefer-string-starts-ends-with] only report slice/substring with correct range (#​7712) (db40a0a)

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

6.7.4 (2023-10-02)

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

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

6.7.3 (2023-09-25)

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

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

6.7.2 (2023-09-18)

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

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

6.7.1 (2023-09-18)

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

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

v6.7.5

Compare Source

Bug Fixes
  • eslint-plugin: [prefer-string-starts-ends-with] only report slice/substring with correct range (#​7712) (db40a0a)

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

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

v6.8.0

Compare Source

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

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

6.7.5 (2023-10-09)

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

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

6.7.4 (2023-10-02)

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

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

6.7.3 (2023-09-25)

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

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

6.7.2 (2023-09-18)

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

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

6.7.1 (2023-09-18)

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

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

v6.7.5

Compare Source

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

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

actions/checkout (actions/checkout)

v4.1.1

Compare Source

What's Changed
New Contributors

Full Changelog: actions/checkout@v4.1.0...v4.1.1

zloirock/core-js (core-js)

v3.33.1

Compare Source

coverallsapp/github-action (coverallsapp/github-action)

v2.2.3

Compare Source

v2.2.2

Compare Source

eslint/eslint (eslint)

v8.52.0

Compare Source

Features

  • 70648ee feat: report-unused-disable-directive to report unused eslint-enable (#​17611) (Yosuke Ota)

Bug Fixes

  • 5de9637 fix: Ensure shared references in rule configs are separated (#​17666) (Nicholas C. Zakas)
  • dcfe573 fix: add preceding semicolon in suggestions of no-object-constructor (#​17649) (Francesco Trotta)

Documentation

  • 476d58a docs: Add note about invalid CLI flags when using flat config. (#​17664) (Nicholas C. Zakas)
  • 660ed3a docs: Plugin flat config migration guide (#​17640) (Nicholas C. Zakas)
  • a58aa20 docs: fix examples for several rules (#​17645) (Milos Djermanovic)
  • 179929b docs: Remove trailing newline from the code of Playground links (#​17641) (Francesco Trotta)
  • f8e5c30 docs: Update README (GitHub Actions Bot)
  • b7ef2f3 docs: Enable pretty code formatter output (#​17635) (Nicholas C. Zakas)
  • 0bcb9a8 docs: Fix syntax errors in rule examples (#​17633) (Francesco Trotta)
  • 61b9083 docs: Make no-continue example code work (#​17643) (Zhongyuan Zhou)
  • 9fafe45 docs: upgrade to 11ty 2.0 (#​17632) (Percy Ma)
  • ff8e4bf docs: Update README (GitHub Actions Bot)
  • fab249a docs: Update README (GitHub Actions Bot)
  • 392305b docs: Update no-irregular-whitespace and fix examples (#​17626) (Francesco Trotta)
  • 6b8acfb docs: Add real whitespace to no-trailing-spaces examples (#​17630) (Francesco Trotta)
  • 1000187 docs: Fix examples in unicode-bom (

Configuration

📅 Schedule: Branch creation - "after 9am and before 5pm on the 2nd and 4th day instance 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 added the dependencies Pull requests that update a dependency file label Oct 23, 2023
@netlify
Copy link

netlify bot commented Oct 23, 2023

Deploy Preview for spirit-design-system-storybook canceled.

Name Link
🔨 Latest commit ce06a03
🔍 Latest deploy log https://app.netlify.com/sites/spirit-design-system-storybook/deploys/653678a9b4b0e900093d0b8d

@netlify
Copy link

netlify bot commented Oct 23, 2023

Deploy Preview for spirit-design-system-react canceled.

Name Link
🔨 Latest commit ce06a03
🔍 Latest deploy log https://app.netlify.com/sites/spirit-design-system-react/deploys/653678a93757eb0008778f72

@netlify
Copy link

netlify bot commented Oct 23, 2023

Deploy Preview for spirit-design-system-validations canceled.

Name Link
🔨 Latest commit ce06a03
🔍 Latest deploy log https://app.netlify.com/sites/spirit-design-system-validations/deploys/653678a98353af00084b837a

@netlify
Copy link

netlify bot commented Oct 23, 2023

Deploy Preview for spirit-design-system-demo canceled.

Name Link
🔨 Latest commit ce06a03
🔍 Latest deploy log https://app.netlify.com/sites/spirit-design-system-demo/deploys/653678a9cafe340008a25f1d

@nx-cloud
Copy link

nx-cloud bot commented Oct 23, 2023

☁️ Nx Cloud Report

CI is running/has finished running commands for commit ce06a03. As they complete they will appear below. Click to see the status, the terminal output, and the build insights.

📂 See all runs for this CI Pipeline Execution


✅ Successfully ran 1 target

Sent with 💌 from NxCloud.

@renovate renovate bot force-pushed the dependencies/all-minor-patch branch 2 times, most recently from e17ae84 to 2e74619 Compare October 23, 2023 12:14
@literat literat force-pushed the dependencies/all-minor-patch branch from 3c35a85 to ce06a03 Compare October 23, 2023 13:44
@renovate
Copy link
Contributor Author

renovate bot commented Oct 23, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@literat literat merged commit 44e9a59 into main Oct 23, 2023
19 checks passed
@literat literat deleted the dependencies/all-minor-patch branch October 23, 2023 13:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant