Skip to content

Commit 6ffb465

Browse files
chore(deps): update all non-major dependencies (#1082)
This PR contains the following updates: | Package | Type | Update | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---|---|---| | [esbuild](https://redirect.github.com/evanw/esbuild) | | patch | `0.25.4` -> `0.25.5` | [![age](https://developer.mend.io/api/mc/badges/age/hermit/esbuild/0.25.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/hermit/esbuild/0.25.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/hermit/esbuild/0.25.4/0.25.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/hermit/esbuild/0.25.4/0.25.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/alecthomas/chroma/v2](https://redirect.github.com/alecthomas/chroma) | require | minor | `v2.17.2` -> `v2.18.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2falecthomas%2fchroma%2fv2/v2.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2falecthomas%2fchroma%2fv2/v2.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2falecthomas%2fchroma%2fv2/v2.17.2/v2.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2falecthomas%2fchroma%2fv2/v2.17.2/v2.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [go](https://redirect.github.com/golang/go) | | patch | `1.24.3` -> `1.24.4` | [![age](https://developer.mend.io/api/mc/badges/age/hermit/go/1.24.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/hermit/go/1.24.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/hermit/go/1.24.3/1.24.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/hermit/go/1.24.3/1.24.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [go](https://go.dev/) ([source](https://redirect.github.com/golang/go)) | toolchain | patch | `1.24.3` -> `1.24.4` | [![age](https://developer.mend.io/api/mc/badges/age/golang-version/go/1.24.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/golang-version/go/1.24.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/golang-version/go/1.24.3/1.24.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/golang-version/go/1.24.3/1.24.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [watchexec](https://redirect.github.com/watchexec/watchexec) | | patch | `2.3.1` -> `2.3.2` | [![age](https://developer.mend.io/api/mc/badges/age/hermit/watchexec/2.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/hermit/watchexec/2.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/hermit/watchexec/2.3.1/2.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/hermit/watchexec/2.3.1/2.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>evanw/esbuild (esbuild)</summary> ### [`v0.25.5`](https://redirect.github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0255) [Compare Source](https://redirect.github.com/evanw/esbuild/compare/v0.25.4...v0.25.5) - Fix a regression with `browser` in `package.json` ([#&#8203;4187](https://redirect.github.com/evanw/esbuild/issues/4187)) The fix to [#&#8203;4144](https://redirect.github.com/evanw/esbuild/issues/4144) in version 0.25.3 introduced a regression that caused `browser` overrides specified in `package.json` to fail to override relative path names that end in a trailing slash. That behavior change affected the `axios@0.30.0` package. This regression has been fixed, and now has test coverage. - Add support for certain keywords as TypeScript tuple labels ([#&#8203;4192](https://redirect.github.com/evanw/esbuild/issues/4192)) Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a `?` modifier. These labels included `function`, `import`, `infer`, `new`, `readonly`, and `typeof`. With this release, these keywords will now be parsed correctly. Here's an example of some affected code: ```ts type Foo = [ value: any, readonly?: boolean, // This is now parsed correctly ] ``` - Add CSS prefixes for the `stretch` sizing value ([#&#8203;4184](https://redirect.github.com/evanw/esbuild/issues/4184)) This release adds support for prefixing CSS declarations such as `div { width: stretch }`. That CSS is now transformed into this depending on what the `--target=` setting includes: ```css div { width: -webkit-fill-available; width: -moz-available; width: stretch; } ``` </details> <details> <summary>alecthomas/chroma (github.com/alecthomas/chroma/v2)</summary> ### [`v2.18.0`](https://redirect.github.com/alecthomas/chroma/releases/tag/v2.18.0) [Compare Source](https://redirect.github.com/alecthomas/chroma/compare/v2.17.2...v2.18.0) ##### Changelog - [`7f0057b`](https://redirect.github.com/alecthomas/chroma/commit/7f0057b) feat: support for dark mode in chromad - [`d87cb47`](https://redirect.github.com/alecthomas/chroma/commit/d87cb47) chore(deps): update all non-major dependencies ([#&#8203;1077](https://redirect.github.com/alecthomas/chroma/issues/1077)) - [`79dde77`](https://redirect.github.com/alecthomas/chroma/commit/79dde77) Added IBM RPG lexer ([#&#8203;1078](https://redirect.github.com/alecthomas/chroma/issues/1078)) - [`1b932ec`](https://redirect.github.com/alecthomas/chroma/commit/1b932ec) chore: disable gorilla/csrf upgrades temporarily </details> <details> <summary>golang/go (go)</summary> ### [`v1.24.4`](https://redirect.github.com/golang/go/compare/go1.24.3...go1.24.4) </details> <details> <summary>watchexec/watchexec (watchexec)</summary> ### [`v2.3.2`](https://redirect.github.com/watchexec/watchexec/releases/tag/v2.3.2): CLI v2.3.2 [Compare Source](https://redirect.github.com/watchexec/watchexec/compare/watchexec-v2.3.1...watchexec-v2.3.2) Change the `--wrap-process` default on Mac to pre-1.24 behaviour (`session`, instead of `group`). Please chime in [#&#8203;864](https://redirect.github.com/watchexec/watchexec/issues/864) if that breaks your usage. </details> --- ### 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](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/alecthomas/chroma). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xNi4wIiwidXBkYXRlZEluVmVyIjoiNDAuNDAuMyIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 2c20473 commit 6ffb465

File tree

9 files changed

+8
-8
lines changed

9 files changed

+8
-8
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

bin/esbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.esbuild-0.25.4.pkg
1+
.esbuild-0.25.5.pkg

bin/go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.go-1.24.3.pkg
1+
.go-1.24.4.pkg

bin/gofmt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.go-1.24.3.pkg
1+
.go-1.24.4.pkg

bin/watchexec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.watchexec-2.3.1.pkg
1+
.watchexec-2.3.2.pkg

cmd/chroma/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ module github.com/alecthomas/chroma/v2/cmd/chroma
22

33
go 1.22
44

5-
toolchain go1.24.3
5+
toolchain go1.24.4
66

77
replace github.com/alecthomas/chroma/v2 => ../../
88

99
require (
10-
github.com/alecthomas/chroma/v2 v2.17.2
10+
github.com/alecthomas/chroma/v2 v2.18.0
1111
github.com/alecthomas/kong v1.11.0
1212
github.com/mattn/go-colorable v0.1.14
1313
github.com/mattn/go-isatty v0.0.20

cmd/chromad/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ module github.com/alecthomas/chroma/v2/cmd/chromad
22

33
go 1.22
44

5-
toolchain go1.24.3
5+
toolchain go1.24.4
66

77
require (
8-
github.com/alecthomas/chroma/v2 v2.17.2
8+
github.com/alecthomas/chroma/v2 v2.18.0
99
github.com/alecthomas/kong v1.11.0
1010
github.com/alecthomas/kong-hcl v1.0.1
1111
github.com/gorilla/csrf v1.7.2

0 commit comments

Comments
 (0)