Skip to content

fix(deps): update all non-major dependencies#15

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch
Open

fix(deps): update all non-major dependencies#15
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented May 6, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence Type Update
github.com/a-h/templ v0.3.1001v0.3.1020 age confidence require patch
github.com/evanw/esbuild v0.28.0v0.28.1 age confidence require patch
github.com/tdewolff/parse/v2 v2.8.12v2.8.13 age confidence require patch
golang.org/x/mod v0.35.0v0.37.0 age confidence require minor
golang.org/x/text v0.36.0v0.38.0 age confidence require minor
golangci/golangci-lint v2.12.1v2.12.2 age confidence uses-with patch

Release Notes

a-h/templ (github.com/a-h/templ)

v0.3.1020

Compare Source

Changelog

evanw/esbuild (github.com/evanw/esbuild)

v0.28.1

Compare Source

  • Disallow \ in local development server HTTP requests (GHSA-g7r4-m6w7-qqqr)

    This release fixes a security issue where HTTP requests to esbuild's local development server could traverse outside of the serve directory on Windows using a \ backslash character. It happened due to the use of Go's path.Clean() function, which only handles Unix-style / characters. HTTP requests with paths containing \ are no longer allowed.

    Thanks to @​dellalibera for reporting this issue.

  • Add integrity checks to the Deno API (GHSA-gv7w-rqvm-qjhr)

    The previous release of esbuild added integrity checks to esbuild's npm install script. This release also adds integrity checks to esbuild's Deno install script. Now esbuild's Deno API will also fail with an error if the downloaded esbuild binary contains something other than the expected content.

    Note that esbuild's Deno API installs from registry.npmjs.org by default, but allows the NPM_CONFIG_REGISTRY environment variable to override this with a custom package registry. This change means that the esbuild executable served by NPM_CONFIG_REGISTRY must now match the expected content.

    Thanks to @​sondt99 for reporting this issue.

  • Avoid inlining using and await using declarations (#​4482)

    Previously esbuild's minifier sometimes incorrectly inlined using and await using declarations into subsequent uses of that declaration, which then fails to dispose of the resource correctly. This bug happened because inlining was done for let and const declarations by avoiding doing it for var declarations, which no longer worked when more declaration types were added. Here's an example:

    // Original code
    {
      using x = new Resource()
      x.activate()
    }
    
    // Old output (with --minify)
    new Resource().activate();
    
    // New output (with --minify)
    {using e=new Resource;e.activate()}
  • Fix module evaluation when an error is thrown (#​4461, #​4467)

    If an error is thrown during module evaluation, esbuild previously didn't preserve the state of the module for subsequent module references. This was observable if import() or require() is used to import a module multiple times. The thrown error is supposed to be thrown by every call to import() or require(), not just the first. With this release, esbuild will now throw the same error every time you call import() or require() on a module that throws during its evaluation.

  • Fix some edge cases around the new operator (#​4477)

    Previously esbuild incorrectly printed certain edge cases involving complex expressions inside the target of a new expression (specifically an optional chain and/or a tagged template literal). The generated code for the new target was not correctly wrapped with parentheses, and either contained a syntax error or had different semantics. These edge cases have been fixed so that they now correctly wrap the new target in parentheses. Here is an example of some affected code:

    // Original code
    new (foo()`bar`)()
    new (foo()?.bar)()
    
    // Old output
    new foo()`bar`();
    new (foo())?.bar();
    
    // New output
    new (foo())`bar`();
    new (foo()?.bar)();
  • Fix renaming of nested var declarations (#​4471)

    This release fixes a bug where var declarations in nested scopes that are hoisted up to module scope were not correctly being renamed during bundling. That could previously lead to name collisions when minification was disabled, which could potentially cause a behavior change. The bug has been fixed so that these hoisted declarations are now considered to be module-level symbols during the name collision avoidance pass.

  • Emit var instead of const for certain TypeScript-only constructs for ES5 (#​4448)

    While esbuild doesn't generally support converting const to var for ES5 due to nested scoping rules (which is currently a build-time error), esbuild previously incorrectly converted TypeScript-only import assignment constructs into a const declaration even when targeting ES5. With this release, esbuild will now use var for this case instead:

    // Original code
    import x = require('y')
    
    // Old output (with --target=es5)
    const x = require("y");
    
    // New output (with --target=es5)
    var x = require("y");
tdewolff/parse (github.com/tdewolff/parse/v2)

v2.8.13

Compare Source

golangci/golangci-lint (golangci/golangci-lint)

v2.12.2

Compare Source

Released on 2026-05-06

  1. Linters bug fixes
    • gomodguard_v2: fix blocked configuration
    • gomodguard_v2: from 2.1.0 to 2.1.3
    • iface: from 1.4.1 to 1.4.2

Configuration

📅 Schedule: (UTC)

  • 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot changed the title chore(deps): update dependency golangci/golangci-lint to v2.12.2 fix(deps): update all non-major dependencies May 8, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from e7c8efc to 81a9fe6 Compare May 10, 2026 12:56
@renovate

renovate Bot commented May 10, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: e2e/testdata/catchallapp/go.sum
Command failed: go get -t ./...
go: downloading github.com/a-h/templ v0.3.1020
go: downloading github.com/nicksnyder/go-i18n/v2 v2.6.1
go: downloading golang.org/x/text v0.36.0
go: example.com/no-js-e2e/catchallapp/cmd/server imports
	example.com/no-js-e2e/catchallapp/web/generated: cannot find module providing package example.com/no-js-e2e/catchallapp/web/generated

File name: e2e/testdata/clientassetsapp/go.sum
Command failed: go get -t ./...
go: example.com/no-js-e2e/clientassetsapp/cmd/server imports
	example.com/no-js-e2e/clientassetsapp/web/generated: cannot find module providing package example.com/no-js-e2e/clientassetsapp/web/generated

File name: e2e/testdata/clientassetsslotgroupapp/go.sum
Command failed: go get -t ./...
go: example.com/no-js-e2e/clientassetsslotgroupapp/cmd/server imports
	example.com/no-js-e2e/clientassetsslotgroupapp/web/generated: cannot find module providing package example.com/no-js-e2e/clientassetsslotgroupapp/web/generated

File name: e2e/testdata/customruntimeapp/go.sum
Command failed: go get -t ./...
go: example.com/no-js-e2e/customruntimeapp/cmd/server imports
	example.com/no-js-e2e/customruntimeapp/web/generated: cannot find module providing package example.com/no-js-e2e/customruntimeapp/web/generated

File name: e2e/testdata/docsfeatureapp/go.sum
Command failed: go get -t ./...
go: example.com/no-js-e2e/docsfeatureapp/cmd/server imports
	example.com/no-js-e2e/docsfeatureapp/web/generated: cannot find module providing package example.com/no-js-e2e/docsfeatureapp/web/generated
go: example.com/no-js-e2e/docsfeatureapp/web/resolvers imports
	example.com/no-js-e2e/docsfeatureapp/web/generated/i18n: cannot find module providing package example.com/no-js-e2e/docsfeatureapp/web/generated/i18n
go: example.com/no-js-e2e/docsfeatureapp/web/view imports
	example.com/no-js-e2e/docsfeatureapp/web/components/profile: cannot find module providing package example.com/no-js-e2e/docsfeatureapp/web/components/profile
go: example.com/no-js-e2e/docsfeatureapp/web/view imports
	example.com/no-js-e2e/docsfeatureapp/web/generated/i18n/messages: cannot find module providing package example.com/no-js-e2e/docsfeatureapp/web/generated/i18n/messages

File name: e2e/testdata/groupednamespaceapp/go.sum
Command failed: go get -t ./...
go: example.com/no-js-e2e/groupednamespaceapp/cmd/server imports
	example.com/no-js-e2e/groupednamespaceapp/web/generated: cannot find module providing package example.com/no-js-e2e/groupednamespaceapp/web/generated
go: example.com/no-js-e2e/groupednamespaceapp/web/view imports
	example.com/no-js-e2e/groupednamespaceapp/web/components/discovercard: cannot find module providing package example.com/no-js-e2e/groupednamespaceapp/web/components/discovercard

File name: e2e/testdata/i18nprefixalwaysapp/go.sum
Command failed: go get -t ./...
go: example.com/no-js-e2e/i18nprefixalwaysapp/cmd/server imports
	example.com/no-js-e2e/i18nprefixalwaysapp/web/generated: cannot find module providing package example.com/no-js-e2e/i18nprefixalwaysapp/web/generated
go: example.com/no-js-e2e/i18nprefixalwaysapp/web/resolvers imports
	example.com/no-js-e2e/i18nprefixalwaysapp/web/generated/i18n: cannot find module providing package example.com/no-js-e2e/i18nprefixalwaysapp/web/generated/i18n
go: example.com/no-js-e2e/i18nprefixalwaysapp/web/view imports
	example.com/no-js-e2e/i18nprefixalwaysapp/web/generated/i18n/messages: cannot find module providing package example.com/no-js-e2e/i18nprefixalwaysapp/web/generated/i18n/messages

File name: e2e/testdata/methodmatrixapp/go.sum
Command failed: go get -t ./...
go: example.com/no-js-e2e/methodmatrixapp/cmd/server imports
	example.com/no-js-e2e/methodmatrixapp/web/generated: cannot find module providing package example.com/no-js-e2e/methodmatrixapp/web/generated

File name: e2e/testdata/namespacedtemplcssapp/go.sum
Command failed: go get -t ./...
go: example.com/no-js-e2e/namespacedtemplcssapp/cmd/server imports
	example.com/no-js-e2e/namespacedtemplcssapp/web/generated: cannot find module providing package example.com/no-js-e2e/namespacedtemplcssapp/web/generated
go: example.com/no-js-e2e/namespacedtemplcssapp/web/view imports
	example.com/no-js-e2e/namespacedtemplcssapp/web/components/statchip: cannot find module providing package example.com/no-js-e2e/namespacedtemplcssapp/web/components/statchip

File name: e2e/testdata/notfoundmetadataapp/go.sum
Command failed: go get -t ./...
go: example.com/no-js-e2e/notfoundmetadataapp/cmd/server imports
	example.com/no-js-e2e/notfoundmetadataapp/web/generated: cannot find module providing package example.com/no-js-e2e/notfoundmetadataapp/web/generated

File name: e2e/testdata/optionalcatchallapp/go.sum
Command failed: go get -t ./...
go: example.com/no-js-e2e/optionalcatchallapp/cmd/server imports
	example.com/no-js-e2e/optionalcatchallapp/web/generated: cannot find module providing package example.com/no-js-e2e/optionalcatchallapp/web/generated

File name: e2e/testdata/routepagecssapp/go.sum
Command failed: go get -t ./...
go: example.com/no-js-e2e/routepagecssapp/cmd/server imports
	example.com/no-js-e2e/routepagecssapp/web/generated: cannot find module providing package example.com/no-js-e2e/routepagecssapp/web/generated

File name: e2e/testdata/templcssapp/go.sum
Command failed: go get -t ./...
go: example.com/no-js-e2e/templcssapp/cmd/server imports
	example.com/no-js-e2e/templcssapp/web/generated: cannot find module providing package example.com/no-js-e2e/templcssapp/web/generated
go: example.com/no-js-e2e/templcssapp/web/view imports
	example.com/no-js-e2e/templcssapp/web/components/hero: cannot find module providing package example.com/no-js-e2e/templcssapp/web/components/hero

File name: e2e/testdata/templrulesapp/go.sum
Command failed: go get -t ./...
go: example.com/no-js-e2e/templrulesapp/cmd/server imports
	example.com/no-js-e2e/templrulesapp/web/generated: cannot find module providing package example.com/no-js-e2e/templrulesapp/web/generated
go: example.com/no-js-e2e/templrulesapp/web/view imports
	example.com/no-js-e2e/templrulesapp/web/components/progress: cannot find module providing package example.com/no-js-e2e/templrulesapp/web/components/progress

File name: e2e/testdata/typedmodelsapp/go.sum
Command failed: go get -t ./...
go: example.com/no-js-e2e/typedmodelsapp/cmd/server imports
	example.com/no-js-e2e/typedmodelsapp/web/generated: cannot find module providing package example.com/no-js-e2e/typedmodelsapp/web/generated

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 81a9fe6 to e157a5b Compare May 27, 2026 17:15
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f26655d to 47a0677 Compare June 15, 2026 01:58
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 47a0677 to c6c557f Compare June 15, 2026 07:11
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.

0 participants