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

Update dependency upgrades - non-major #546

Merged
merged 1 commit into from
Jun 6, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 6, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/plugin-transform-modules-commonjs (source) 7.24.6 -> 7.24.7 age adoption passing confidence
@types/node (source) 20.12.13 -> 20.14.2 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 8.0.0-alpha.24 -> 8.0.0-alpha.28 age adoption passing confidence
@typescript-eslint/parser (source) 8.0.0-alpha.24 -> 8.0.0-alpha.28 age adoption passing confidence
@typescript-eslint/scope-manager (source) 8.0.0-alpha.24 -> 8.0.0-alpha.28 age adoption passing confidence
@typescript-eslint/utils (source) 8.0.0-alpha.24 -> 8.0.0-alpha.28 age adoption passing confidence
eslint (source) 9.3.0 -> 9.4.0 age adoption passing confidence
eslint-config-upleveled 8.1.9 -> 8.2.1 age adoption passing confidence
execa 9.1.0 -> 9.2.0 age adoption passing confidence
pnpm (source) 9.1.4+sha512.9df9cf27c91715646c7d675d1c9c8e41f6fce88246f1318c1aa6a1ed1aeb3c4f032fcdf4ba63cc69c4fe6d634279176b5358727d8f2cc1e65b65f43ce2f8bfb0 -> 9.2.0 age adoption passing confidence
prettier (source) 3.2.5 -> 3.3.1 age adoption passing confidence
tslib (source) 2.6.2 -> 2.6.3 age adoption passing confidence

Release Notes

babel/babel (@​babel/plugin-transform-modules-commonjs)

v7.24.7

Compare Source

🐛 Bug Fix
🏠 Internal
  • babel-helpers, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.0.0-alpha.28

Compare Source

v8.0.0-alpha.27

Compare Source

v8.0.0-alpha.26

Compare Source

v8.0.0-alpha.25

Compare Source

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

v8.0.0-alpha.28

Compare Source

v8.0.0-alpha.27

Compare Source

v8.0.0-alpha.26

Compare Source

v8.0.0-alpha.25

Compare Source

typescript-eslint/typescript-eslint (@​typescript-eslint/scope-manager)

v8.0.0-alpha.28

Compare Source

v8.0.0-alpha.27

Compare Source

v8.0.0-alpha.26

Compare Source

v8.0.0-alpha.25

Compare Source

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

v8.0.0-alpha.28

Compare Source

v8.0.0-alpha.27

Compare Source

v8.0.0-alpha.26

Compare Source

v8.0.0-alpha.25

Compare Source

eslint/eslint (eslint)

v9.4.0

Compare Source

upleveled/eslint-config-upleveled (eslint-config-upleveled)

v8.2.1

Compare Source

v8.2.0

Compare Source

v8.1.10

Compare Source

sindresorhus/execa (execa)

v9.2.0

Compare Source

This release includes a new set of methods to exchange messages between the current process and a Node.js subprocess, also known as "IPC". This allows passing and returning almost any message type to/from a Node.js subprocess. Also, debugging IPC is now much easier.

Moreover, a new gracefulSignal option has also been added to terminate a subprocess gracefully.

For a deeper dive-in, please check and share the release post!

Thanks @​iiroj for your contribution, @​SimonSiefke and @​adymorz for reporting the bugs fixed in this release, and @​karlhorky for improving the documentation!

Deprecations

  • Passing 'ipc' to the stdio option has been deprecated. It will be removed in the next major release. Instead, the ipc: true option should be used. (#​1056)
- await execa('npm', ['run', 'build'], {stdio: ['pipe', 'pipe', 'pipe', 'ipc']});
+ await execa('npm', ['run', 'build'], {ipc: true});
- import {execaCommand} from 'execa';
+ import {execa} from 'execa';

- await execaCommand('npm run build');
+ await execa`npm run build`;

const taskName = 'build';
- await execaCommand(`npm run ${taskName}`);
+ await execa`npm run ${taskName}`;

const commandArguments = ['run', 'task with space'];
await execa`npm ${commandArguments}`;

If the file and/or multiple arguments are supplied as a single string, parseCommandString(command) can split that string into an array. More info. (#​1054)

- import {execaCommand} from 'execa';
+ import {execa, parseCommandString} from 'execa';

const commandString = 'npm run task';
- await execaCommand(commandString);
+ const commandArray = parseCommandString(commandString); // ['npm', 'run', 'task']
+ await execa`${commandArray}`;

// Or alternatively:
const [file, ...commandArguments] = commandArray;
await execa(file, commandArguments);

Features

Types

Bug fixes

pnpm/pnpm (pnpm)

v9.2.0

Compare Source

prettier/prettier (prettier)

v3.3.1

Compare Source

diff

Preserve empty lines in front matter (#​16347 by @​fisker)
<!-- Input -->
---
foo:
  - bar1

  - bar2

  - bar3
---
Markdown

<!-- Prettier 3.3.0 -->

---
foo:
  - bar1
  - bar2
  - bar3
---

Markdown

<!-- Prettier 3.3.1 -->
---
foo:
  - bar1

  - bar2

  - bar3
---

Markdown
Preserve explicit language in front matter (#​16348 by @​fisker)
<!-- Input -->
---yaml
title: Hello
slug: home
---

<!-- Prettier 3.3.0 -->
---
title: Hello
slug: home
---

<!-- Prettier 3.3.1 -->
---yaml
title: Hello
slug: home
---
Avoid line breaks in import attributes (#​16349 by @​fisker)
// Input
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

// Prettier 3.3.0
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type:
  "json" };

// Prettier 3.3.1
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

v3.3.0

Compare Source

diff

🔗 Release Notes

Microsoft/tslib (tslib)

v2.6.3

Compare Source


Configuration

📅 Schedule: Branch creation - "after 4pm on thursday" (UTC), 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 enabled auto-merge (squash) June 6, 2024 16:53
Copy link

codesandbox-ci bot commented Jun 6, 2024

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

Copy link

github-actions bot commented Jun 6, 2024

size-limit report 📦

Path Size
dist/preflight.esm.js 6.29 KB (0%)

Copy link

socket-security bot commented Jun 6, 2024

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/eslint-config-upleveled@8.2.1 None 0 0 B
npm/eslint@9.4.0 environment Transitive: eval, filesystem, shell, unsafe +59 7.77 MB eslintbot
npm/execa@9.2.0 None 0 0 B
npm/prettier@3.3.1 environment, filesystem, unsafe 0 8.25 MB prettier-bot
npm/tslib@2.6.3 None 0 84.9 kB typescript-bot

🚮 Removed packages: npm/eslint-config-upleveled@8.1.9, npm/eslint@9.3.0, npm/execa@9.1.0, npm/prettier@3.2.5, npm/tslib@2.6.2

View full report↗︎

@renovate renovate bot force-pushed the renovate/dependency-upgrades-non-major branch from f022919 to bee481a Compare June 6, 2024 19:17
Copy link

codesandbox-ci bot commented Jun 6, 2024

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

@renovate renovate bot merged commit fddbcef into main Jun 6, 2024
6 of 7 checks passed
@renovate renovate bot deleted the renovate/dependency-upgrades-non-major branch June 6, 2024 21:13
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