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: bump up all non-major dependencies #32

Merged
merged 1 commit into from
Jul 7, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 24, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
infer dependencies minor 0.15 -> 0.16 age adoption passing confidence
oxlint (source) devDependencies minor ^0.3.1 -> ^0.5.0 age adoption passing confidence
yarn (source) packageManager minor 4.2.2 -> 4.3.1 age adoption passing confidence

Release Notes

bojand/infer (infer)

v0.16.0

Compare Source

Changelog

v0.16.0 - 2024-05-31

Build
Features
  • aa9a9d1 add support for DjVu image format
Commits
oxc-project/oxc (oxlint)

v0.5.0: oxlint v0.5.0

Compare Source

[0.5.0] - 2024-06-27
Features
Bug Fixes
Refactor
  • 7302429 linter/prefer_number_properties: Remove the unused IdentifierName check (#​3822) (Boshen)

v0.4.4: oxlint v0.4.4

Compare Source

[0.4.4] - 2024-06-14

Highlights

Sort imports via oxlint --fix -D sort-imports

Features
Bug Fixes

v0.4.3: oxlint v0.4.3

Compare Source

[0.4.3] - 2024-06-07

Features
  • 1fb9d23 linter: Add fixer for no-useless-fallback-in-spread rule (#​3544) (Don Isaac)
  • 6506d08 linter: Add fixer for no-single-promise-in-promise-methods (#​3531) (Don Isaac)
  • daf559f linter: Eslint-plugin-jest/no-large-snapshot (#​3436) (cinchen)
  • 4c17bc6 linter: Eslint/no-constructor-return (#​3321) (谭光志)
  • 4a075cc linter/jsdoc: Implement require-param rule (#​3554) (Yuji Sugiura)
  • 747500a linter/jsdoc: Implement require-returns-type rule (#​3458) (Yuji Sugiura)
  • 6b39654 linter/tree-shaking: Support options (#​3504) (Wang Wenzhe)
Bug Fixes
  • b188778 linter/eslint: Fix require-await false positives in ForOfStatement. (#​3457) (rzvxa)
  • 350cd91 parser: Should parser error when function declaration has no name (#​3461) (Dunqing)

v0.4.2: oxlint v0.4.2

Compare Source

What's Changed

Linter
Parser

New Contributors

Full Changelog: oxc-project/oxc@oxlint_v0.4.1...oxlint_v0.4.2

v0.4.1: oxlint v0.4.1

Compare Source

What's Changed

The previous version refactored some parsing code around arrow expressions, which failed to parse the following snippet correctly

(/\./.exec())

Full Changelog: oxc-project/oxc@oxlint_v0.4.0...oxlint_v0.4.1

v0.4.0: oxlint v0.4.0

Compare Source

Potential Breaking Changes

enforce rule severity from the cli and configuration file by @​Boshen in https://github.com/oxc-project/oxc/pull/3337

The --deny or -D flag in the CLI, and the "error" severity setting in the configuration file will now set linter diagnostics to be an "error" and exit the program with exit code 1.

Previously, these flags had no effect, and all linter diagnostics were reported as warnings.

This means in CI, oxlint --deny-warnings is no longer needed for exit code 1 if oxlint -D correctness is set.

To restore the previous "report as warning" behaviour, the --warn or -W flag is added to the CLI, and the "warn" severity in the configuration file will take into effect.

merge deepscan rules into oxc rules by @​Boshen in https://github.com/oxc-project/oxc/pull/3327

deepscan rules are now "oxc" rules, because there is no "deepscan" plugin in the eslint ecosystem and this caused some confusion.

Ecosystem CI

We added the Oxlint Ecosystem CI to maximize ecosystem compatibility, reduce churn, and minimize break-after-release

New Features

The default rule set enables some plugins by default, the following CLI arguments are added for disabling them:

  • --disable-react-plugin
  • --disable-unicorn-plugin
  • --disable-oxc-plugin
  • --disable-typescript-plugin

New Rules

Two notable new rules that are under experiment but worth a try:

No Barrel File

oxlint --import-plugin -D no-barrel-file

Loading a lot of modules is slow for runtimes and bundlers.

image

To change the threshhold:

oxlint -c oxlintrc.json --import-plugin -D no-barrel-file

{
  "rules": {
    "oxc/no-barrel-file": ["error", {
      "threshold": 10
    }]
  }
}

See Speeding up the JavaScript ecosystem - The barrel file debacle for background reading.

Rule of Hooks

oxlint -D rules-of-hooks

Enforce the React Rules of Hooks.

Bug Fixes

Performance Improvements

What's coming next

Full Changelog: oxc-project/oxc@oxlint_v0.3.5...oxlint_v0.4.0

v0.3.5: oxlint v0.3.5

Compare Source

What's Changed

New Contributors

Full Changelog: oxc-project/oxc@oxlint_v0.3.4...oxlint_v0.3.5

v0.3.4: oxlint v0.3.4

Compare Source

What's Changed

Full Changelog: oxc-project/oxc@oxlint_v0.3.3...oxlint_v0.3.4


From v0.3.3

What's Changed

Features
New Rules
Bug Fixes

New Contributors

Full Changelog: oxc-project/oxc@oxlint_v0.3.2...oxlint_v0.3.3

v0.3.3: oxlint v0.3.3

Compare Source

What's Changed

Features
New Rules
Bug Fixes

New Contributors

Full Changelog: oxc-project/oxc@oxlint_v0.3.2...oxlint_v0.3.3

v0.3.2: oxlint v0.3.2

Compare Source

What's Changed

Oxlint Import Plugin Alpha Release

New Contributors

Full Changelog: oxc-project/oxc@oxlint_v0.3.1...oxlint_v0.3.2

yarnpkg/berry (yarn)

v4.3.1

Compare Source

v4.3.0

Compare Source


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.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 095d314 to 60c2ff8 Compare June 1, 2024 02:51
@renovate renovate bot changed the title chore: bump up oxlint version to ^0.4.0 chore: bump up all non-major dependencies Jun 1, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 60c2ff8 to 25c8140 Compare June 10, 2024 22:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 25c8140 to e2b4a51 Compare June 21, 2024 10:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e2b4a51 to 88b7153 Compare June 27, 2024 09:16
@Brooooooklyn Brooooooklyn merged commit d72d154 into main Jul 7, 2024
33 checks passed
@Brooooooklyn Brooooooklyn deleted the renovate/all-minor-patch branch July 7, 2024 16:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant