Skip to content

chore(deps): update all non-major dependencies #1077

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 16, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 5, 2025

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
esbuild patch 0.25.3 -> 0.25.4 age adoption passing confidence
github.com/alecthomas/chroma/v2 require patch v2.17.0 -> v2.17.2 age adoption passing confidence
github.com/alecthomas/kong require minor v1.10.0 -> v1.11.0 age adoption passing confidence
go patch 1.24.2 -> 1.24.3 age adoption passing confidence
go (source) toolchain patch 1.24.2 -> 1.24.3 age adoption passing confidence
watchexec patch 2.3.0 -> 2.3.1 age adoption passing confidence

Release Notes

evanw/esbuild (esbuild)

v0.25.4

Compare Source

  • Add simple support for CORS to esbuild's development server (#​4125)

    Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as "debugging in production" by having your production website load code from localhost where the esbuild development server is running.

    To enable this use case, esbuild is adding a feature to allow Cross-Origin Resource Sharing (a.k.a. CORS) for simple requests. Specifically, passing your origin to the new cors option will now set the Access-Control-Allow-Origin response header when the request has a matching Origin header. Note that this currently only works for requests that don't send a preflight OPTIONS request, as esbuild's development server doesn't currently support OPTIONS requests.

    Some examples:

    • CLI:

      esbuild --servedir=. --cors-origin=https://example.com
      
    • JS:

      const ctx = await esbuild.context({})
      await ctx.serve({
        servedir: '.',
        cors: {
          origin: 'https://example.com',
        },
      })
    • Go:

      ctx, _ := api.Context(api.BuildOptions{})
      ctx.Serve(api.ServeOptions{
        Servedir: ".",
        CORS: api.CORSOptions{
          Origin: []string{"https://example.com"},
        },
      })

    The special origin * can be used to allow any origin to access esbuild's development server. Note that this means any website you visit will be able to read everything served by esbuild.

  • Pass through invalid URLs in source maps unmodified (#​4169)

    This fixes a regression in version 0.25.0 where sources in source maps that form invalid URLs were not being passed through to the output. Version 0.25.0 changed the interpretation of sources from file paths to URLs, which means that URL parsing can now fail. Previously URLs that couldn't be parsed were replaced with the empty string. With this release, invalid URLs in sources should now be passed through unmodified.

  • Handle exports named __proto__ in ES modules (#​4162, #​4163)

    In JavaScript, the special property name __proto__ sets the prototype when used inside an object literal. Previously esbuild's ESM-to-CommonJS conversion didn't special-case the property name of exports named __proto__ so the exported getter accidentally became the prototype of the object literal. It's unclear what this affects, if anything, but it's better practice to avoid this by using a computed property name in this case.

    This fix was contributed by @​magic-akari.

alecthomas/chroma (github.com/alecthomas/chroma/v2)

v2.17.2

Compare Source

Changelog
  • 66b90e7 fix: downgrade gorilla/csrf temporarily

v2.17.1

Compare Source

Changelog
  • 2cbcfa9 fix: a bunch of styles did not correctly fallback to parent styles
  • 8f4cf56 fix(zig): add rule for function calls (#​1075)
  • abf98e0 chore(deps): update all non-major dependencies (#​1074)
alecthomas/kong (github.com/alecthomas/kong)

v1.11.0

Compare Source

golang/go (go)

v1.24.3

watchexec/watchexec (watchexec)

v2.3.1: CLI v2.3.1

Compare Source

Internal dependency updates, no changed functionality.


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), 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 force-pushed the renovate/all-minor-patch branch from 6e7ad4e to b08f6d8 Compare May 6, 2025 04:00
@renovate renovate bot changed the title chore(deps): update module github.com/alecthomas/chroma/v2 to v2.17.2 chore(deps): update all non-major dependencies May 6, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b63a0cb to 40b199a Compare May 7, 2025 07:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 40b199a to 1c4d0ec Compare May 15, 2025 12:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1c4d0ec to fc9a0fe Compare May 16, 2025 06:55
@alecthomas alecthomas merged commit d87cb47 into master May 16, 2025
2 checks passed
@alecthomas alecthomas deleted the renovate/all-minor-patch branch May 16, 2025 10:44
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.

1 participant