Skip to content

chore(deps): update devdependencies #1020

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

Merged
merged 1 commit into from
May 29, 2022
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 29, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
esbuild ~0.14.41 -> ~0.14.42 age adoption passing confidence
simple-git-hooks ~2.7.0 -> ~2.8.0 age adoption passing confidence

Release Notes

evanw/esbuild

v0.14.42

Compare Source

  • Fix a parser hang on invalid CSS (#​2276)

    Previously invalid CSS with unbalanced parentheses could cause esbuild's CSS parser to hang. An example of such an input is the CSS file :x(. This hang has been fixed.

  • Add support for custom log message levels

    This release allows you to override the default log level of esbuild's individual log messages. For example, CSS syntax errors are treated as warnings instead of errors by default because CSS grammar allows for rules containing syntax errors to be ignored. However, if you would like for esbuild to consider CSS syntax errors to be build errors, you can now configure that like this:

    • CLI

      $ esbuild example.css --log-override:css-syntax-error=error
    • JS API

      let result = await esbuild.build({
        entryPoints: ['example.css'],
        logOverride: {
          'css-syntax-error': 'error',
        },
      })
    • Go API

      result := api.Build(api.BuildOptions{
        EntryPoints: []string{"example.ts"},
        LogOverride: map[string]api.LogLevel{
          "css-syntax-error": api.LogLevelError,
        },
      })

    You can also now use this feature to silence warnings that you are not interested in. Log messages are referred to by their identifier. Each identifier is stable (i.e. shouldn't change over time) except there is no guarantee that the log message will continue to exist. A given log message may potentially be removed in the future, in which case esbuild will ignore log levels set for that identifier. The current list of supported log level identifiers for use with this feature can be found below:

    JavaScript:

    • assign-to-constant
    • call-import-namespace
    • commonjs-variable-in-esm
    • delete-super-property
    • direct-eval
    • duplicate-case
    • duplicate-object-key
    • empty-import-meta
    • equals-nan
    • equals-negative-zero
    • equals-new-object
    • html-comment-in-js
    • impossible-typeof
    • private-name-will-throw
    • semicolon-after-return
    • suspicious-boolean-not
    • this-is-undefined-in-esm
    • unsupported-dynamic-import
    • unsupported-jsx-comment
    • unsupported-regexp
    • unsupported-require-call

    CSS:

    • css-syntax-error
    • invalid-@​charset
    • invalid-@​import
    • invalid-@​nest
    • invalid-@​layer
    • invalid-calc
    • js-comment-in-css
    • unsupported-@​charset
    • unsupported-@​namespace
    • unsupported-css-property

    Bundler:

    • different-path-case
    • ignored-bare-import
    • ignored-dynamic-import
    • import-is-undefined
    • package.json
    • require-resolve-not-external
    • tsconfig.json

    Source maps:

    • invalid-source-mappings
    • sections-in-source-map
    • missing-source-map
    • unsupported-source-map-comment

    Documentation about which identifiers correspond to which log messages will be added in the future, but hasn't been written yet. Note that it's not possible to configure the log level for a build error. This is by design because changing that would cause esbuild to incorrectly proceed in the building process generate invalid build output. You can only configure the log level for non-error log messages (although you can turn non-errors into errors).

toplenboren/simple-git-hooks

v2.8.0

Compare Source

What's Changed

New Contributors

Full Changelog: toplenboren/simple-git-hooks@2.7.0...2.8.0


Configuration

📅 Schedule: "before 2am" (UTC).

🚦 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, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from a team as a code owner May 29, 2022 01:02
@renovate renovate bot added the c: dependencies Pull requests that adds/updates a dependency label May 29, 2022
@codecov
Copy link

codecov bot commented May 29, 2022

Codecov Report

Merging #1020 (042fcaa) into main (e57419f) will decrease coverage by 0.00%.
The diff coverage is n/a.

@@            Coverage Diff             @@
##             main    #1020      +/-   ##
==========================================
- Coverage   99.67%   99.67%   -0.01%     
==========================================
  Files        2115     2115              
  Lines      227025   227025              
  Branches      983      982       -1     
==========================================
- Hits       226280   226277       -3     
- Misses        725      728       +3     
  Partials       20       20              
Impacted Files Coverage Δ
src/modules/finance/index.ts 99.31% <0.00%> (-0.69%) ⬇️

@ejcheng ejcheng added this to the v7 - Current Major milestone May 29, 2022
ejcheng
ejcheng previously approved these changes May 29, 2022
@ejcheng ejcheng requested a review from a team May 29, 2022 01:52
@renovate renovate bot changed the title chore(deps): update dependency simple-git-hooks to ~2.8.0 chore(deps): update devdependencies May 29, 2022
@renovate renovate bot force-pushed the renovate/devdependencies branch from 733de40 to 7eef3ec Compare May 29, 2022 10:26
Shinigami92
Shinigami92 previously approved these changes May 29, 2022
@renovate renovate bot force-pushed the renovate/devdependencies branch from 7eef3ec to fd9847e Compare May 29, 2022 14:29
Shinigami92
Shinigami92 previously approved these changes May 29, 2022
@renovate renovate bot force-pushed the renovate/devdependencies branch from fd9847e to 042fcaa Compare May 29, 2022 16:30
@Shinigami92 Shinigami92 enabled auto-merge (squash) May 29, 2022 16:38
@Shinigami92 Shinigami92 merged commit 5ded656 into main May 29, 2022
@ST-DDT ST-DDT deleted the renovate/devdependencies branch May 29, 2022 16:40
Minozzzi pushed a commit to Minozzzi/faker that referenced this pull request Jul 19, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c: dependencies Pull requests that adds/updates a dependency
Projects
No open projects
Status: Done
Development

Successfully merging this pull request may close these issues.

4 participants