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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 14, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@lmc-eu/spirit-design-tokens (source) 2.1.1 -> 2.1.2 age adoption passing confidence devDependencies patch
@lmc-eu/spirit-form-validations (source) 2.0.4 -> 2.0.6 age adoption passing confidence devDependencies patch
@lmc-eu/spirit-web (source) 2.5.0 -> 2.5.1 age adoption passing confidence devDependencies patch
@playwright/test (source) 1.48.0 -> 1.48.1 age adoption passing confidence devDependencies patch
@rollup/plugin-typescript (source) 12.1.0 -> 12.1.1 age adoption passing confidence devDependencies patch
@swc/core (source) 1.7.35 -> 1.7.36 age adoption passing confidence devDependencies patch
@swc/core (source) 1.7.35 -> 1.7.36 age adoption passing confidence dependencies patch
@testing-library/jest-dom 6.5.0 -> 6.6.2 age adoption passing confidence devDependencies minor
@types/node (source) 20.14.9 -> 20.16.13 age adoption passing confidence devDependencies minor
@types/node (source) 20.16.11 -> 20.16.13 age adoption passing confidence devDependencies patch
@types/react (source) 18.3.3 -> 18.3.11 age adoption passing confidence devDependencies patch
@types/react-dom (source) 18.3.0 -> 18.3.1 age adoption passing confidence devDependencies patch
@vitejs/plugin-react (source) 4.3.2 -> 4.3.3 age adoption passing confidence devDependencies patch
coverallsapp/github-action v2.3.1 -> v2.3.3 age adoption passing confidence action patch
eslint-plugin-react-refresh 0.4.12 -> 0.4.13 age adoption passing confidence devDependencies patch
mcr.microsoft.com/playwright v1.48.0-jammy -> v1.48.1-jammy age adoption passing confidence docker patch
netlify-cli 17.37.0 -> 17.37.1 age adoption passing confidence devDependencies patch
npm-run-all2 6.2.3 -> 6.2.4 age adoption passing confidence devDependencies patch
nx (source) 19.7.2 -> 19.8.6 age adoption passing confidence devDependencies minor
react-syntax-highlighter 15.5.0 -> 15.6.1 age adoption passing confidence devDependencies minor
sass 1.79.5 -> 1.80.3 age adoption passing confidence devDependencies minor
tslib (source) 2.7.0 -> 2.8.0 age adoption passing confidence devDependencies minor
typescript (source) 5.6.2 -> 5.6.3 age adoption passing confidence devDependencies patch
yarn (source) 4.5.0 -> 4.5.1 age adoption passing confidence packageManager patch

Release Notes

lmc-eu/spirit-design-system (@​lmc-eu/spirit-design-tokens)

v2.1.2

Compare Source

Dependencies
  • Update all non-major dependencies (949b633)
  • Update dependency vite-plugin-dts to v4 (fa6a656)

Note: Version bump only for package @​lmc-eu/spirit-design-tokens

lmc-eu/spirit-design-system (@​lmc-eu/spirit-form-validations)

v2.0.6

Compare Source

v2.0.5

Compare Source

Dependencies
  • Update all non-major dependencies (949b633)

Note: Version bump only for package @​lmc-eu/spirit-form-validations

lmc-eu/spirit-design-system (@​lmc-eu/spirit-web)

v2.5.1

Compare Source

Chores
  • web: Use outDir to corectly setup output directory (2182419)
Dependencies

Note: Version bump only for package @​lmc-eu/spirit-web

microsoft/playwright (@​playwright/test)

v1.48.1

Compare Source

Highlights

https:/microsoft/playwright/issues/33023 - [Bug]: command line flag --headed has no effect in ui modehttps:/microsoft/playwright/issues/331077 - [REGRESSION]: page.waitForRequest does not get resolved since 1.48.https:/microsoft/playwright/issues/3308585 - [Bug]: WebSocket route does not handle full URLs in Playwrighttps:/microsoft/playwright/issues/33052052 - [Regression]: Inspector not showing recorded sthttps:/microsoft/playwright/issues/331323132 - [Bug]: Wrong Ubuntu release name in Dockerfile.nhttps:/microsoft/playwright/pull/3299632996 - [BUG] Trace attachments have small unusable height

Browser Versions

  • Chromium 130.0.6723.19
  • Mozilla Firefox 130.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 129
  • Microsoft Edge 129
rollup/plugins (@​rollup/plugin-typescript)

v12.1.1

2024-10-16

Bugfixes
  • fix: allow for files to be nested in folders within outDir (#​1783)
swc-project/swc (@​swc/core)

v1.7.36

Compare Source

Bug Fixes
  • (es) Run esnext transforms on esnext target (#​9644) (8a19201)

  • (es/codegen) Emit space after div if rhs has leading comment (#​9631) (f2be26e)

  • (es/lints) Correct the false positive error of TS2309 (#​9635) (f74c1f3)

  • (es/minifier) Only merge last if return (#​9633) (6f52949)

  • (es/minifier) Check type of assignment target before merging assignments (#​9617) (4436621)

Features
Miscellaneous Tasks
testing-library/jest-dom (@​testing-library/jest-dom)

v6.6.2

Compare Source

Bug Fixes

v6.6.1

Compare Source

v6.6.0

Compare Source

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.3.3

Compare Source

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @&#8203;babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@&#8203;babel/plugin-transform-react-jsx-development', {}])
  }

  return {
    plugins: [react({ babel: { plugins: babelPlugins } })],
  }
})
coverallsapp/github-action (coverallsapp/github-action)

v2.3.3

Compare Source

What's Changed

Full Changelog: coverallsapp/github-action@v2...v2.3.3

v2.3.2

Compare Source

What's Changed

New Contributors

Full Changelog: coverallsapp/github-action@v2.3.1...v2.3.2

ArnaudBarre/eslint-plugin-react-refresh (eslint-plugin-react-refresh)

v0.4.13

Compare Source

netlify/cli (netlify-cli)

v17.37.1

Compare Source

Bug Fixes
bcomnes/npm-run-all2 (npm-run-all2)

v6.2.4

Compare Source

Merged
  • Switch to JS-based which command #154
Fixed
  • Switch to JS-based which command #153
nrwl/nx (nx)

v19.8.6

Compare Source

19.8.6 (2024-10-18)
🩹 Fixes
  • core: support NX_NO_CLOUD (#​28366)
  • core: handle neverConnectToCloud property (#​28452)
  • core: neverConnectToCloud should disable connecting to nxCloud (#​28501)
❤️ Thank You

v19.8.5

Compare Source

19.8.5 (2024-10-15)
🚀 Features
  • core: open sqlite databases with SQLITE_OPEN_FULL_MUTEX (#​28276)
  • devkit: bump compatibility to Nx 19 - 21.x (#​28243)
🩹 Fixes
  • core: add busy handler for sqlite (#​28390)
  • react: patch fix for 88f163e to normalize project name without messing up directory (ff23fb0c07)
❤️ Thank You

v19.8.4

Compare Source

19.8.4 (2024-10-04)
🚀 Features
  • core: allow circular project dependencies to execute tasks (#​28227)
  • nx-dev: add nx powerpack to pricing page (#​28232)
  • nx-dev: add nx powerpack gcp & azure mentions (#​28256)
🩹 Fixes
  • angular: ensure @​typescript-eslint/utils is used with eslint flat config (#​28267)
  • core: remove axios import from main code loading (#​28230)
  • core: change getCache signature to only accept options (#​28248)
  • core: allow prompts during nx add (#​28247)
  • core: add stub for conformance:check, add messaging (#​28250)
  • core: filter out task dependencies on itself (#​28261)
  • core: fixing target groups not merging (#​28280)
  • js: resolve VerdaccioWarning on the "logs" configuration property (#​28234)
  • nx-cloud: use create-workspace-v1 endpoint if v2 returns with 404 (#​28015)
  • nx-dev: fix markdoc table data alignment (#​28274)
  • react: host generator should pass normalized name to remote generator (#​28295)
  • testing: add support for playwright --last-failed (#​28161)
❤️ Thank You

v19.8.3

Compare Source

19.8.3 (2024-10-01)
🚀 Features
  • nx-dev: add Powerpack video to the landing page (#​28126)
🩹 Fixes
❤️ Thank You

v19.8.2

Compare Source

19.8.2 (2024-09-26)
🚀 Features
🩹 Fixes
  • core: hide no file server process json log (#​27626)
  • js: @​nx/js:init ensures tslib is installed if importHelpers is true (#​28083)
  • linter: add files entry to angular flat config to avoid applying TS rules to JSON files (#​28102)
❤️ Thank You

v19.8.1

Compare Source

19.8.1 (2024-09-25)
🚀 Features
  • core: allow prompts from init generators during nx init (#​28003)
🩹 Fixes
  • bundling: remove unused babel-plugin-transform-async-to-promises from @nx/rollup (#​27669)
  • core: allow creating a db cache without linking task details (#​28023)
  • core: fix output text for multiple targets (#​28043)
  • core: sort projects after updating from context (#​28024)
  • core: add flag when db is disabled for task history (#​28059)
  • core: set windowsHide: true wherever possible (#​28073)
  • core: support more structured errors in sync generators (#​28075)
  • core: nx add should show errors (#​28079)
  • core: several powerpack fixes (#​28088)
  • core: remove wasi compatibility while db is unsupported in wasi (#​28089)
  • linter: do not generate docs.recommended property (#​28009)
  • linter: ignore dist and use compat helper for eslint-plugin-react-hooks (#​28080)
  • react: vite should be default bundler in app generator (#​28013)
  • release: allow dynamically continuing when current version is unresolvable (#​28034)
  • release: add groupPreVersionCommand to schema, improve logging (#​28087)
❤️ Thank You

v19.8.0

Compare Source

19.8.0 (2024-09-20)
🚀 Features
  • angular: add plugin for inferring nodes from angular.json files (#​27804)
  • core: import warns when source and destination directories are different (#​27875)
  • core: use durations from task history to schedule tasks (#​27783)
  • core: add metagenerator for convert-to-inferred (#​27672)
  • core: able to import gradle project (#​27645)
  • core: split runCommand to return status per project (#​27705)
  • core: handle prettier not installed when running nx format (#​27970)
  • core: add integration with nx powerpack (#​27972)
  • graph: expose functions to render pdv & error page (#​27833)
  • graph: add sync generators to target details in project details view (#​27639)
  • linter: create new workspaces with ESLint v9 and typescript-eslint v8 (#​27404)
  • nx-dev: clean up enterprise section (#​27979)
  • release: allow local dependency version protocols to be preserved, pnpm publish support (#​27787)
  • release: support groupPreVersionCommand for release groups (#​27474)
  • release: support github enterprise server (#​26482)
🩹 Fixes
  • angular: add serve static target more intentionally #​27854 (#​27924, #​27854)
  • angular: dynamic module federation should not reset remoteUrlDefinitions #​27793 (#​27927, #​27793)
  • angular: migrations should use correct namedInputs #​27899 (#​27929, #​27899)
  • angular: license-webpack-plugin should not scan root package.json #​27989 (#​27994, #​27989)
  • core: make sure sharedGlobals is referenced in default namedInputs (#​27813)
  • core: take nx-release-publish target defaults into account for implicit target (#​27764)
  • core: handle sync generator failures (#​27650)
  • core: handle --no-interative for create-nx-workspace (#​27702)
  • core: respect filenames of inputs when computing task hash (#​27873)
  • core: handleErrors should display error cause if it exists (#​27886)
  • core: add flag to disable the db and logs when there are errors … (#​27930)
  • core: import should be rebasable (#​27940)
  • core: import handles argument escaping correctly in Windows (#​27957)
  • core: fix env for running parallel tasks (#​27889)
  • core: nx import detects plugins synchronously (#​27958)
  • core: fix powerpack license report and add back remote cache (#​27983)
  • core: link to sync generators page during sync prompt, and provide more info on docs page for disabling and applyChanges (#​28001)
  • core: fix powerpack fs cache package name (#​27997)
  • core: do not check cache validity when putting into the cache (#​28004)
  • gradle: fix gradle app deps (#​27865)
  • graph: typo (e9fd0a7e2b)
  • js: keep refs to ignored files and allow opting out of pruning stale refs in typescript sync generator (#​27636)
  • js: set compilerOptions correctly when loading .ts that targets ESM (#​27862)
  • js: do not infer typecheck target for root tsconfig.json (#​27950)
  • misc: createNodesV2 plugins should show inference capabilities (#​27896)
  • module-federation: collect secondary entry points from exports #​26878 (#​27999, #​26878)
  • nx-cloud: include nxCloudId when generating connect urls (#​27882)
  • nx-dev: update contributors value (#​27944)
  • react: Add historyApiFallback to webpack config (#​27942)
  • react: normalizing project names for module federation correctly #​27901 (#​27990, #​27901)
  • release: respect updateDependents being explicitly disabled in conventional commits (#​27851)
  • release: ensure git commits containing pipe can be parsed reliably (#​27840)
  • release: ensure default release group has projects on windows (#​27933)
  • release: allow string array for commitArgs and tagArgs (#​27797)
  • remix: vite plugin should be less strict on inference #​27884 (#​27923, #​27884)
  • storybook: do not duplicate cacheable operations #​27866 (#​27951, #​27866)
  • vite: typecheck infer plugin should use correct inputs (#​27922)
  • vite: exit from test if no files found (#​27722)
  • webpack: handle relative paths for additionalEntryPath (#​27885)
❤️ Thank You

v19.7.4

Compare Source

19.7.4 (2024-09-18)

🚀 Features
  • core:

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Oct 14, 2024
Copy link

netlify bot commented Oct 14, 2024

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

Name Link
🔨 Latest commit c7c96a3
🔍 Latest deploy log https://app.netlify.com/sites/spirit-design-system-storybook/deploys/6714527ecae75d0008a4cd56

Copy link

netlify bot commented Oct 14, 2024

Deploy Preview for spirit-design-system failed. Why did it fail? →

Name Link
🔨 Latest commit c7c96a3
🔍 Latest deploy log https://app.netlify.com/sites/spirit-design-system/deploys/6714527edc4c840008339978

@renovate renovate bot force-pushed the dependencies/all-minor-patch branch 7 times, most recently from 167b887 to 7234637 Compare October 16, 2024 23:25
Copy link
Contributor Author

renovate bot commented Oct 16, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: apps/web-twig-demo/yarn.lock
error This project's package.json defines "packageManager": "[email protected]". However the current global version of Yarn is 1.22.22.

Presence of the "packageManager" field indicates that the project is meant to be used with Corepack, a tool included by default with all official Node.js distributions starting from 16.9 and 14.19.
Corepack must currently be enabled by running corepack enable in your terminal. For more information, check out https://yarnpkg.com/corepack.

@renovate renovate bot force-pushed the dependencies/all-minor-patch branch 12 times, most recently from 1f117e6 to ac68c53 Compare October 19, 2024 19:23
@renovate renovate bot force-pushed the dependencies/all-minor-patch branch from ac68c53 to c7c96a3 Compare October 20, 2024 00:44
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.

0 participants