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 minor and patch dependencies #62

Merged
merged 3 commits into from
Jan 23, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 5, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@types/eslint (source) 8.56.0 -> 8.56.2 age adoption passing confidence devDependencies patch
@types/node (source) 20.10.6 -> 20.11.5 age adoption passing confidence devDependencies minor
@typescript-eslint/eslint-plugin (source) 6.16.0 -> 6.19.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser (source) 6.16.0 -> 6.19.0 age adoption passing confidence devDependencies minor
axios (source) 1.6.3 -> 1.6.5 age adoption passing confidence devDependencies patch
eslint-plugin-prettier 5.1.2 -> 5.1.3 age adoption passing confidence devDependencies patch
fast-xml-parser 4.3.2 -> 4.3.3 age adoption passing confidence devDependencies patch
node 20.10.0 -> 20.11.0 age adoption passing confidence minor
node (source) 20.10.0 -> 20.11.0 age adoption passing confidence minor
prettier (source) 3.1.1 -> 3.2.4 age adoption passing confidence devDependencies minor
typesync 0.12.0 -> 0.12.1 age adoption passing confidence devDependencies patch
vitest (source) 1.1.0 -> 1.2.1 age adoption passing confidence devDependencies minor

Release Notes

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

v6.19.0

Compare Source

🚀 Features
  • eslint-plugin: [prefer-promise-reject-errors] add rule

  • eslint-plugin: [no-array-delete] add new rule

  • eslint-plugin: [no-useless-template-literals] add fix suggestions

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-assertion] detect unnecessary non-null-assertion on a call expression

  • eslint-plugin: [no-unnecesary-type-assertion] treat unknown/any as nullable

❤️ Thank You
  • auvred
  • Brad Zacher
  • Josh Goldberg ✨
  • Joshua Chen
  • LJX
  • Steven
  • StyleShit

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

v6.18.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-non-null-assertion] provide valid fix when member access is on next line

  • eslint-plugin: [no-unnecessary-condition] improve checking optional callee

  • eslint-plugin: [prefer-readonly] support modifiers of unions and intersections

  • eslint-plugin: [switch-exhaustiveness-check] fix new allowDefaultCaseForExhaustiveSwitch option

❤️ Thank You
  • auvred
  • James
  • Josh Goldberg ✨
  • YeonJuan

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

v6.18.0

Compare Source

🚀 Features
  • typescript-estree: throw on invalid update expressions

  • eslint-plugin: [no-var-requires, no-require-imports] allow option

❤️ Thank You
  • auvred
  • Joshua Chen

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

v6.17.0

Compare Source

Bug Fixes
  • eslint-plugin: [no-restricted-imports] prevent crash when patterns or paths in options are empty (#​8108) (675e987)
Features
  • eslint-plugin: [no-floating-promises] flag result of .map(async) (#​7897) (5857356)
  • eslint-plugin: [switch-exhaustiveness-check] add an option to warn against a default case on an already exhaustive switch (#​7539) (6a219bd)

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

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

v6.19.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

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

v6.18.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

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

v6.18.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

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

v6.17.0

Compare Source

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

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

axios/axios (axios)

v1.6.5

Compare Source

Bug Fixes
Contributors to this release

v1.6.4

Compare Source

Bug Fixes
  • security: fixed formToJSON prototype pollution vulnerability; (#​6167) (3c0c11c)
  • security: fixed security vulnerability in follow-redirects (#​6163) (75af1cd)
Contributors to this release
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.1.3

Compare Source

Patch Changes
NaturalIntelligence/fast-xml-parser (fast-xml-parser)

v4.3.3

Compare Source

nodejs/node (node)

v20.11.0

Compare Source

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

jeffijoe/typesync (typesync)

v0.12.1

Compare Source

  • #​106: Don't throw an error when unable to parse versions; default to the latest available one instead.
  • Upgrade packages.
vitest-dev/vitest (vitest)

v1.2.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.2.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v1.1.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.1.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - "every weekend" in timezone Asia/Tokyo, 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 force-pushed the renovate/minor-and-patch-dependencies branch 3 times, most recently from 72bc8e4 to 324c324 Compare January 7, 2024 10:12
@yamadashy yamadashy force-pushed the renovate/minor-and-patch-dependencies branch from 324c324 to 66abf1c Compare January 7, 2024 10:21
@renovate renovate bot force-pushed the renovate/minor-and-patch-dependencies branch 16 times, most recently from 3f5fc8c to 95eb056 Compare January 14, 2024 05:07
@renovate renovate bot force-pushed the renovate/minor-and-patch-dependencies branch 10 times, most recently from 351a688 to 812766d Compare January 18, 2024 15:27
@renovate renovate bot force-pushed the renovate/minor-and-patch-dependencies branch from 812766d to 339e4d1 Compare January 18, 2024 15:29
@yamadashy
Copy link
Owner

なにかの依存のアプデによってテストが落ちるようになっているので後ほど確認。

Copy link
Contributor Author

renovate bot commented Jan 22, 2024

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.

@yamadashy yamadashy force-pushed the renovate/minor-and-patch-dependencies branch 5 times, most recently from 96808d4 to 85f89e9 Compare January 23, 2024 15:45
@yamadashy yamadashy force-pushed the renovate/minor-and-patch-dependencies branch from 85f89e9 to d79cd3d Compare January 23, 2024 15:54
@yamadashy yamadashy merged commit eaec51d into main Jan 23, 2024
3 checks passed
@yamadashy yamadashy deleted the renovate/minor-and-patch-dependencies branch January 23, 2024 16:00
@yamadashy yamadashy added the dependencies Pull requests that update a dependency file label May 11, 2024
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