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

Merged
merged 5 commits into from
Jan 28, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 12, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/eslint-parser (source) 7.23.3 -> 7.23.9 age adoption passing confidence
prettier (source) 3.1.1 -> 3.2.4 age adoption passing confidence

Release Notes

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

v7.23.9

Compare Source

🐛 Bug Fix
  • babel-helper-transform-fixture-test-runner, babel-plugin-transform-function-name, babel-plugin-transform-modules-systemjs, babel-preset-env
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
  • babel-plugin-proposal-decorators, babel-plugin-transform-async-generator-functions, babel-plugin-transform-runtime, babel-preset-env
  • babel-traverse
  • Other
🏠 Internal
🏃‍♀️ Performance
🔬 Output optimization
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-pipeline-operator, babel-plugin-transform-class-properties, babel-plugin-transform-class-static-block, babel-plugin-transform-new-target, babel-plugin-transform-parameters, babel-plugin-transform-private-methods, babel-preset-env
  • babel-helpers, babel-plugin-proposal-explicit-resource-management, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
prettier/prettier (prettier)

v3.2.4

Compare Source

diff

Fix incorrect parser inference (#​15947 by @​fisker)

Files like .eslintrc.json were incorrectly formatted as JSONC files.

// Input
prettier --file-info .eslintrc.json
{ "ignored": false, "inferredParser": "jsonc" }

// Prettier 3.2.4
prettier --file-info .eslintrc.json
{ "ignored": false, "inferredParser": "json" }

v3.2.3

Compare Source

diff

Throw errors for invalid code (#​15881 by @​fisker, @​Josh-Cena, @​auvred)
// Input
1++;

// Prettier 3.2.2
1++;

// Prettier 3.2.3
SyntaxError: Invalid left-hand side expression in unary operation (1:1)
> 1 | 1++;
    | ^
// Input
try {} catch (error = 1){}

// Prettier 3.2.2
try {
} catch (error) {}

// Prettier 3.2.3
SyntaxError: Catch clause variable cannot have an initializer. (1:23)
> 1 | try {} catch (error = 1){}
    |                       ^
Fix parser inference (#​15927 by @​fisker)
// Prettier 3.2.2
prettier --file-info tsconfig.json
{ "ignored": false, "inferredParser": "json" }

// Prettier 3.2.3
prettier --file-info tsconfig.json
{ "ignored": false, "inferredParser": "jsonc" }

v3.2.2

Compare Source

diff

Fix crash when parsing template literal CSS in a JSX style tag using a spread attribute (#​15896 by @​eelco)

For example this code would crash before:

<style {...spread}>{`.{}`}</style>
Fix formatting error on optional call expression and member chain (#​15920 by @​sosukesuzuki)
// Input
a(() => {}, c?.d());

// Prettier 3.2.1
TypeError: Cannot read properties of undefined (reading 'type')

// Prettier 3.2.2
a(() => {}, c?.d());

v3.2.1

Compare Source

diff

Fix formatting error on member chain (#​15915 by @​sosukesuzuki)
// Input
test().test2().test2(thing?.something);

// Prettier 3.2.0
TypeError: Cannot read properties of undefined (reading 'type')

// Prettier 3.2.1
test().test2().test2(thing?.something);

v3.2.0

Compare Source

diff

🔗 Release Notes


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

Copy link
Contributor

github-actions bot commented Jan 12, 2024

🦙 MegaLinter status: ⚠️ WARNING

Descriptor Linter Files Fixed Errors Elapsed time
⚠️ ACTION actionlint 4 2 0.03s
✅ COPYPASTE jscpd yes no 1.55s
✅ JAVASCRIPT eslint 10 0 1.57s
✅ JSON eslint-plugin-jsonc 8 0 1.1s
✅ JSON jsonlint 8 0 0.21s
✅ JSON npm-package-json-lint yes no 0.76s
⚠️ JSON prettier 8 1 1.17s
✅ JSON v8r 8 0 22.03s
⚠️ MARKDOWN markdownlint 6 5 1.1s
✅ MARKDOWN markdown-link-check 6 0 28.67s
⚠️ MARKDOWN markdown-table-formatter 6 1 0.54s
✅ REPOSITORY checkov yes no 10.7s
✅ REPOSITORY gitleaks yes no 0.35s
✅ REPOSITORY git_diff yes no 0.01s
✅ REPOSITORY grype yes no 10.53s
✅ REPOSITORY secretlint yes no 0.96s
✅ REPOSITORY trivy yes no 3.81s
✅ REPOSITORY trivy-sbom yes no 2.67s
✅ REPOSITORY trufflehog yes no 6.08s
✅ SPELL cspell 39 0 3.69s
✅ SPELL lychee 24 0 3.95s
⚠️ YAML prettier 8 1 0.63s
✅ YAML v8r 8 0 7.2s
✅ YAML yamllint 8 0 0.36s

See detailed report in MegaLinter reports

MegaLinter is graciously provided by OX Security

@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.2.1 chore(deps): update dependency prettier to v3.2.2 Jan 14, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fa1e735 to 28e8ad8 Compare January 14, 2024 03:47
@codecov-commenter
Copy link

codecov-commenter commented Jan 14, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (d85d5e0) 90.45% compared to head (653b7b2) 90.45%.

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #62   +/-   ##
=======================================
  Coverage   90.45%   90.45%           
=======================================
  Files           3        3           
  Lines         220      220           
=======================================
  Hits          199      199           
  Misses         21       21           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 28e8ad8 to 653b7b2 Compare January 17, 2024 06:58
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.2.2 chore(deps): update dependency prettier to v3.2.3 Jan 17, 2024
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.2.3 chore(deps): update dependency prettier to v3.2.4 Jan 17, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 653b7b2 to 90b3b53 Compare January 17, 2024 12:06
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.2.4 chore(deps): update all non-major dependencies Jan 25, 2024
@nvuillam nvuillam merged commit a046a16 into main Jan 28, 2024
7 checks passed
@nvuillam nvuillam deleted the renovate/all-minor-patch branch January 28, 2024 23:14
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.

2 participants