Skip to content

chore(deps): update pre-commit hooks - #452

Merged
laurigates-renovate[bot] merged 1 commit into
mainfrom
renovate/pre-commit
Sep 23, 2026
Merged

laurigates-renovate[bot] merged 1 commit into
mainfrom
renovate/pre-commit

Conversation

@laurigates-renovate

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
JohnnyMorganz/StyLua repository minor v2.1.0 → v2.5.2
compilerla/conventional-pre-commit repository minor v4.2.0 → v4.4.0
gitleaks/gitleaks repository patch v8.30.0 → v8.30.1
rhysd/actionlint repository patch v1.7.7 → v1.7.12

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.

Note: The pre-commit manager in Renovate is not supported by the pre-commit maintainers or community. Please do not report any problems there, instead create a Discussion in the Renovate repository if you have any questions.


Release Notes

JohnnyMorganz/StyLua (JohnnyMorganz/StyLua)

v2.5.2

Compare Source

There were no code changes in this release, it was just a fix to npm publishing, see https://github.com/JohnnyMorganz/StyLua/releases/tag/v2.5.0 for the main updates

[2.5.2] - 2026-05-16

Fixed
  • Fixed npm publishing failing provenance validation due to normalization of repository URL

Full Changelog: JohnnyMorganz/StyLua@v2.5.1...v2.5.2

v2.5.1

Compare Source

There were no code changes in this release, it was an attempt to fix npm publishing, see https://github.com/JohnnyMorganz/StyLua/releases/tag/v2.5.0 for the main updates

[2.5.1] - 2026-05-16

Fixed
  • Fixed npm publishing by bumping Node.js from 22 to 24 in CI workflows to support npm trusted publishing

Full Changelog: JohnnyMorganz/StyLua@v2.5.0...v2.5.1

v2.5.0

Compare Source

[2.5.0] - 2026-05-16

Added
  • Luau: Added support for const variable assignments (const x = 1) and const function declarations (#​1102)
Changed
  • The npm package @johnnymorganz/stylua-bin now ships pre-built binaries via platform-specific optional packages (@johnnymorganz/stylua-bin-linux-x64, -linux-arm64, -darwin-x64, -darwin-arm64, -win32-x64) instead of downloading the binary at install time. This makes the packages self-contained with no extra dependencies.
Fixed
  • Fixed npm publishing by bumping Node.js from 16 to 22 in CI workflows to support npm trusted publishing
  • Luau: Fixed union/intersection type definitions not being hung when the type alone fits within the column width but the full line (including =) exceeds it (#​1104)
  • Luau: Fixed stray leading newlines not being removed from local function and const function declarations that have attributes (e.g. @native) at the start of a block (#​1109)

Full Changelog: JohnnyMorganz/StyLua@v2.4.1...v2.5.0

v2.4.1

Compare Source

[2.4.1] - 2026-04-06

Fixed
  • Luau: Fixed panic when formatting explicit type instantiation (f<<T>>()) inside a nested function call argument (e.g. as a callback) (#​1088)
  • Luau: Fixed parentheses being incorrectly removed from single-element type packs in explicit type instantiation, e.g. f<<(number)>>(10) becoming f<<number>>(10) (#​1089)

Full Changelog: JohnnyMorganz/StyLua@v2.4.0...v2.4.1

v2.4.0

Compare Source

[2.4.0] - 2026-03-07

Added
  • Added flag --no-ignore-vcs to continue formatting files listed in a .gitignore file, instead of skipping over them (#​895)
  • Support call_parentheses = Input in editorconfig (#​1057)
  • Luau: Support formatting explicit type instantiations (f<<T>>(), obj:method<<T>>())
  • Support stylua_syntax and stylua_block_newline_gaps properties in editorconfig (#​1054)
Fixed
  • Fixed syntax error in output when a single-line comment appears between an index suffix and a table call argument, e.g. foo.bar -- comment { } (#​873)
  • Fixed malformed formatting when a binary expression inside of a function call with comments around the operators is incorrectly collapsed onto one line (#​996)
  • Fixed repeated unary minus on long lines being collapsed into a comment, e.g. - - - - -5 becoming -----5 (#​1075)
  • Fixed --preserve-block-newline-gaps CLI flag not being applied as a config override
  • Fixed LSP not respecting .stylua.toml on Windows due to incorrect file URI to path conversion (#​1051)

External Contributions

New Contributors

Full Changelog: JohnnyMorganz/StyLua@v2.3.1...v2.4.0

v2.3.1

Compare Source

[2.3.1] - 2025-11-01

Fixed
  • Use character-wised diff instead of byte-wise diff in the LSP server so that it can handle multi-byte characters (#​1042, #​1043).

External Contributions

New Contributors

Full Changelog: JohnnyMorganz/StyLua@v2.3.0...v2.3.1

v2.3.0

Compare Source

[2.3.0] - 2025-09-27

Added
  • The language server has an initialization option called respect_editor_formatting_options.
    If it's true, the formatting handler will override the configurations indent-width and indent-type with values from FormattingOptions
Changed
  • In language server mode, compute the difference between the unformatted and formatted document and only respond with the changes, rather than sending an edit for the whole file
  • Include serverInfo in the language server's InitializeResponse
Fixed
  • Fixed comments lost from expression after parentheses are removed when we are attempting to "hang" the expression. (#​1033)
  • Fixed document_range_formatting_provider capability missing from ServerCapabilities in language server mode
  • Fixed current working directory incorrectly used as config search root in language server mode -- now, the root of the opened workspace is used instead (#​1032)
  • Language server mode now correctly respects .styluaignore files (#​1035)
  • Luau: Fixed parentheses incorrectly removed on a single type that is the default for a variadic generic parameter (#​1038)

External Contributions

New Contributors

Full Changelog: JohnnyMorganz/StyLua@v2.2.0...v2.3.0

v2.2.0

Compare Source

[2.2.0] - 2025-09-14

Added
  • Added option block_newline_gaps to determine whether newline gaps at the start / end of blocks should be preserved. Defaults to Never, which is the original behaviour. (#​857)
  • StyLua can now run in a language server mode. Start StyLua with stylua --lsp and connect with a language client. (#​936)
Changed
  • Luau: Improved union of tables formatting to hang the union type rather than attempt to hug all the tables together (#​958)
Fixed
  • Fixed formatting of index containing brackets string in parentheses (#​992)
  • Fixed goto not being recognised for LuaJIT (#​986)
  • Fixed semicolon removed after a statement ending with an if-expression leading to ambiguous syntax when the next line begins with parentheses (#​1010)
  • Luau: Fixed malformed formatting when there is a comment after a type specifier in a local assignment (#​995)
  • Luau: Fixed long type union formatted onto a single line if there is a comment in between the equals sign and the type union in a type declaration (#​1007)
  • Fixed StyLua installation via pip / uv for Windows (#​1018)

External Contributions

New Contributors

Full Changelog: JohnnyMorganz/StyLua@v2.1.0...v2.2.0

compilerla/conventional-pre-commit (compilerla/conventional-pre-commit)

v4.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: compilerla/conventional-pre-commit@v4.3.0...v4.4.0

v4.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: compilerla/conventional-pre-commit@v4.2.0...v4.3.0

gitleaks/gitleaks (gitleaks/gitleaks)

v8.30.1

Compare Source

Changelog

rhysd/actionlint (rhysd/actionlint)

v1.7.12

Compare Source

[Changes][v1.7.12]

v1.7.11

Compare Source

  • Support the case() function in ${{ }} expressions which was recently added to GitHub Actions. (#​612, #​614, thanks @​heppu)
    env:
      # ERROR: case() requires an odd number of arguments
      ENVIRONMENT: |-
        ${{ case(
          github.ref == 'refs/heads/main', 'production',
          github.ref == 'refs/heads/staging', 'staging'
        ) }}
  • Support new macos-26-large and windows-2025-vs2026 runner labels. See the GitHub's announce for more details. (#​615, thanks @​hugovk and @​muzimuzhi)
  • Enable Artifact attestations for the released binaries. From v1.7.11 gh command can verify the integrity of the downloaded binaries as follows. The verification is highly recommended in terms of supply chain security. (#​608, thanks @​takaram)
    $ gh release download --repo rhysd/actionlint --pattern '*_darwin_amd64.tar.gz' v1.7.11
    $ gh attestation verify --repo rhysd/actionlint actionlint_1.7.11_darwin_amd64.tar.gz
    Loaded digest sha256:17ffc17fed8f0258ef6ad4aed932d3272464c7ef7d64e1cb0d65aa97c9752107 for file://actionlint_1.7.11_darwin_amd64.tar.gz
    Loaded 1 attestation from GitHub API
    
    The following policy criteria will be enforced:
    - Predicate type must match:................ https://slsa.dev/provenance/v1
    - Source Repository Owner URI must match:... https://github.com/rhysd
    - Source Repository URI must match:......... https://github.com/rhysd/actionlint
    - Subject Alternative Name must match regex: (?i)^https://github.com/rhysd/actionlint/
    - OIDC Issuer must match:................... https://token.actions.githubusercontent.com
    
    ✓ Verification succeeded!
    
    The following 1 attestation matched the policy criteria
    
    - Attestation #&#8203;1
      - Build repo:..... rhysd/actionlint
      - Build workflow:. .github/workflows/release.yaml@refs/tags/v1.7.11
      - Signer repo:.... rhysd/actionlint
      - Signer workflow: .github/workflows/release.yaml@refs/tags/v1.7.11
  • Report path filters with ./ as error because they never match anything. (#​521)
    on:
      push:
        paths:
          # ERROR: This never matches anything. `foo/bar.txt` is correct.
          - ./foo/bar.txt
  • Fix comparing matrix items when an item is a super set of another item. (#​523, #​613, thanks @​michaelgruenewald)
  • Fix stack overflow crash by a recursive anchor in matrix items. (#​610)
  • Fix an unassigned variable false positive from shellcheck by disabling SC2153 rule. (#​573)
  • Reduce the number of memory allocations on resolving anchors.
  • Update the popular actions data set to the latest.
  • Update Go dependencies to the latest.
  • Remove legacy Homebrew formula in rhysd/actionlint repository in favor of the cask package. Note that this change does not affect Homebrew's official formula.
  • Add a link to the release page of the version in the playground.

[Changes][v1.7.11]

v1.7.10

Compare Source

  • Support YAML anchors and aliases (&anchor and *anchor) in workflow files. In addition to parsing YAML anchors correctly, actionlint checks unused and undefined anchors. See the document for more details. (#​133, thanks @​srz-zumix for the initial implementation at #​568 and @​alexaandru for trying another approach at #​557)
    jobs:
      test:
        runs-on: ubuntu-latest
        services:
          nginx:
            image: nginx:latest
            credentials: &credentials
              username: ${{ secrets.user }}
              password: ${{ secrets.password }}
        steps:
          - run: ./download.sh
            # OK: Valid alias to &credentials
            env: *credentials
          - run: ./check.sh
            # ERROR: Undefined anchor 'credential'
            env: *credential
          - run: ./upload.sh
            # ERROR: Unused anchor 'credentials'
            env: &credentials
  • Remove support for *-xl macOS runner labels because they were dropped. (#​592, thanks @​muzimuzhi)
  • Remove support for the macOS 13 runner labels because they were dropped on Dec 4, 2025. (#​593, thanks @​muzimuzhi)
    • macos-13
    • macos-13-large
    • macos-13-xlarge
  • Increase the maximum number of inputs in the workflow_dispatch event from 10 to 25 because the limitation was recently relaxed. (#​598, thanks @​Haegi)
  • Support artifact-metadata permission for workflow permissions. (#​602, thanks @​martincostello)
  • Detect more complicated constants at if: conditions as error. See the rule document for more details.
  • Refactor the workflow parser with Go iterators. This slightly improves the performance and memory usage.
  • Fix parsing extra { and } characters in format string of format() function call. For example v1.7.9 didn't parse "{{0} {1} {2}}" correctly.
  • Detect an invalid value at type in workflow call inputs as error.
  • Report YAML merge key << as error because GitHub Actions doesn't support the syntax.
  • Check available contexts in expressions at jobs.<job_id>.snapshot.if.
    snapshot:
      image-name: my-custom-image
      # ERROR: `env` context is not allowed here
      if: ${{ env.USE_SNAPSHOT == 'true' }}
  • Fix the instruction to install actionlint with mise in the installation document. (#​591, thanks @​risu729)
  • Update the popular actions data set to the latest to include new major versions of the actions.

[Changes][v1.7.10]

v1.7.9

Compare Source

  • Add support for ubuntu-slim runner label. (#​585, thanks @​cestorer)
  • Check input deprecation in action by checking deprecationMessage property. Using a deprecated input is reported as error if it is not marked as required. See the document for more details. (#​580)
    - uses: reviewdog/action-actionlint@v1
      with:
        # ERROR: Using a deprecated input
        fail_on_error: true
  • Add support for the Custom images feature.
  • Report constant conditions at if: like if: true as error. Only very simple expressions like true or false are detected for now. See the document for more details.
  • Check unexpected keys in inputs in action metadata.
    inputs:
      some_input:
        # Error: `type` is not supported for inputs in action metadata
        type: boolean
  • Fix some invalid permissions are not reported as error in id-token and models scopes. (#​582, thanks @​holtkampjs)
  • Fix args and entrypoint inputs are not recognized at uses: when it's not a Docker action. (#​550)
  • Set correct column in source position of YAML parse error.
  • Fix credentials cannot be configured with ${{ }}. (#​590)
  • Improve messages in syntax errors on parsing steps (run: and uses:). Available keys suggestion is now more accurate and unexpected keys are detected more accurately.
  • Fix the order of errors can be non-deterministic when multiple errors are caused at the same source positions.
  • Improve error messages showing suggestions on detecting invalid permissions.
  • Add instruction for installing actionlint with mise package manager. (#​589, thanks @​jylenhof)
  • Fix outdated URLs in the document.
  • Add new actionlint.AllContexts map constant in Go API that contains the information about all context availability.
  • Update popular actions data set to the latest with several major versions of actions and the following new actions.
    • anthropics/claude-code-action
    • openai/codex-action
    • google-github-actions/run-gemini-cli
  • Add make cov task to easily generate a code coverage report.
  • Make installing the formula version of actionlint pacakge from tap of this repository with Homebrew a hard error. Install the cask version instead following the instruction in the error message.

[Changes][v1.7.9]

v1.7.8

Compare Source

[Changes][v1.7.8]


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

@laurigates-renovate laurigates-renovate Bot added dependencies Pull requests that update a dependency file renovate labels Sep 23, 2026
@github-actions github-actions Bot added security Security-related fix or improvement size/xs and removed dependencies Pull requests that update a dependency file labels Sep 23, 2026
@laurigates-renovate
laurigates-renovate Bot enabled auto-merge (squash) September 23, 2026 18:24
@laurigates-renovate
laurigates-renovate Bot merged commit 45f075c into main Sep 23, 2026
8 checks passed
@laurigates-renovate
laurigates-renovate Bot deleted the renovate/pre-commit branch September 23, 2026 18:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

renovate security Security-related fix or improvement size/xs

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants