From fbce34f1b8374693d0f4aa01c5f8ff06bcebfc6d Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Sun, 6 Oct 2024 23:53:20 +1100
Subject: [PATCH] chore(deps): update all non-major dependencies (#997)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This PR contains the following updates:
| Package | Type | Update | Change | Age | Adoption | Passing |
Confidence |
|---|---|---|---|---|---|---|---|
| [esbuild](https://redirect.github.com/evanw/esbuild) | | minor |
`0.23.1` -> `0.24.0` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/alecthomas/assert/v2](https://redirect.github.com/alecthomas/assert)
| require | minor | `v2.10.0` -> `v2.11.0` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [go](https://redirect.github.com/golang/go) | | patch | `1.23.0` ->
`1.23.2` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
---
### Release Notes
evanw/esbuild (esbuild)
###
[`v0.24.0`](https://redirect.github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0240)
[Compare
Source](https://redirect.github.com/evanw/esbuild/compare/v0.23.1...v0.24.0)
***This release deliberately contains backwards-incompatible changes.***
To avoid automatically picking up releases like this, you should either
be pinning the exact version of `esbuild` in your `package.json` file
(recommended) or be using a version range syntax that only accepts patch
upgrades such as `^0.23.0` or `~0.23.0`. See npm's documentation about
[semver](https://docs.npmjs.com/cli/v6/using-npm/semver/) for more
information.
- Drop support for older platforms
([#3902](https://redirect.github.com/evanw/esbuild/pull/3902))
This release drops support for the following operating system:
- macOS 10.15 Catalina
This is because the Go programming language dropped support for this
operating system version in Go 1.23, and this release updates esbuild
from Go 1.22 to Go 1.23. Go 1.23 now requires macOS 11 Big Sur or later.
Note that this only affects the binary esbuild executables that are
published to the esbuild npm package. It's still possible to compile
esbuild's source code for these older operating systems. If you need to,
you can compile esbuild for yourself using an older version of the Go
compiler (before Go version 1.23). That might look something like this:
git clone https://github.com/evanw/esbuild.git
cd esbuild
go build ./cmd/esbuild
./esbuild --version
- Fix class field decorators in TypeScript if `useDefineForClassFields`
is `false`
([#3913](https://redirect.github.com/evanw/esbuild/issues/3913))
Setting the `useDefineForClassFields` flag to `false` in `tsconfig.json`
means class fields use the legacy TypeScript behavior instead of the
standard JavaScript behavior. Specifically they use assign semantics
instead of define semantics (e.g. setters are triggered) and fields
without an initializer are not initialized at all. However, when this
legacy behavior is combined with standard JavaScript decorators,
TypeScript switches to always initializing all fields, even those
without initializers. Previously esbuild incorrectly continued to omit
field initializers for this edge case. These field initializers in this
case should now be emitted starting with this release.
- Avoid incorrect cycle warning with `tsconfig.json` multiple
inheritance
([#3898](https://redirect.github.com/evanw/esbuild/issues/3898))
TypeScript 5.0 introduced multiple inheritance for `tsconfig.json` files
where `extends` can be an array of file paths. Previously esbuild would
incorrectly treat files encountered more than once when processing
separate subtrees of the multiple inheritance hierarchy as an
inheritance cycle. With this release, `tsconfig.json` files containing
this edge case should work correctly without generating a warning.
- Handle Yarn Plug'n'Play stack overflow with `tsconfig.json`
([#3915](https://redirect.github.com/evanw/esbuild/issues/3915))
Previously a `tsconfig.json` file that `extends` another file in a
package with an `exports` map could cause a stack overflow when Yarn's
Plug'n'Play resolution was active. This edge case should work now
starting with this release.
- Work around more issues with Deno 1.31+
([#3917](https://redirect.github.com/evanw/esbuild/pull/3917))
This version of Deno broke the `stdin` and `stdout` properties on
command objects for inherited streams, which matters when you run
esbuild's Deno module as the entry point (i.e. when `import.meta.main`
is `true`). Previously esbuild would crash in Deno 1.31+ if you ran
esbuild like that. This should be fixed starting with this release.
This fix was contributed by
[@Joshix-1](https://redirect.github.com/Joshix-1).
alecthomas/assert (github.com/alecthomas/assert/v2)
###
[`v2.11.0`](https://redirect.github.com/alecthomas/assert/compare/v2.10.0...v2.11.0)
[Compare
Source](https://redirect.github.com/alecthomas/assert/compare/v2.10.0...v2.11.0)
golang/go (go)
###
[`v1.23.2`](https://redirect.github.com/golang/go/compare/go1.23.1...go1.23.2)
[Compare
Source](https://redirect.github.com/golang/go/compare/go1.23.1...go1.23.2)
###
[`v1.23.1`](https://redirect.github.com/golang/go/compare/go1.23.0...go1.23.1)
---
### Configuration
📅 **Schedule**: Branch creation - "before 4am on Monday" (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.
---
- [ ] 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).
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
---
bin/{.esbuild-0.23.1.pkg => .esbuild-0.24.0.pkg} | 0
bin/{.go-1.23.0.pkg => .go-1.23.2.pkg} | 0
bin/esbuild | 2 +-
bin/go | 2 +-
bin/gofmt | 2 +-
go.mod | 2 +-
go.sum | 2 ++
7 files changed, 6 insertions(+), 4 deletions(-)
rename bin/{.esbuild-0.23.1.pkg => .esbuild-0.24.0.pkg} (100%)
rename bin/{.go-1.23.0.pkg => .go-1.23.2.pkg} (100%)
diff --git a/bin/.esbuild-0.23.1.pkg b/bin/.esbuild-0.24.0.pkg
similarity index 100%
rename from bin/.esbuild-0.23.1.pkg
rename to bin/.esbuild-0.24.0.pkg
diff --git a/bin/.go-1.23.0.pkg b/bin/.go-1.23.2.pkg
similarity index 100%
rename from bin/.go-1.23.0.pkg
rename to bin/.go-1.23.2.pkg
diff --git a/bin/esbuild b/bin/esbuild
index 349837f..a6517a5 120000
--- a/bin/esbuild
+++ b/bin/esbuild
@@ -1 +1 @@
-.esbuild-0.23.1.pkg
\ No newline at end of file
+.esbuild-0.24.0.pkg
\ No newline at end of file
diff --git a/bin/go b/bin/go
index 4602254..4644de3 120000
--- a/bin/go
+++ b/bin/go
@@ -1 +1 @@
-.go-1.23.0.pkg
\ No newline at end of file
+.go-1.23.2.pkg
\ No newline at end of file
diff --git a/bin/gofmt b/bin/gofmt
index 4602254..4644de3 120000
--- a/bin/gofmt
+++ b/bin/gofmt
@@ -1 +1 @@
-.go-1.23.0.pkg
\ No newline at end of file
+.go-1.23.2.pkg
\ No newline at end of file
diff --git a/go.mod b/go.mod
index 153dc89..2ab323f 100644
--- a/go.mod
+++ b/go.mod
@@ -3,7 +3,7 @@ module github.com/alecthomas/chroma/v2
go 1.19
require (
- github.com/alecthomas/assert/v2 v2.10.0
+ github.com/alecthomas/assert/v2 v2.11.0
github.com/alecthomas/repr v0.4.0
github.com/dlclark/regexp2 v1.11.4
)
diff --git a/go.sum b/go.sum
index 1dbd163..3430252 100644
--- a/go.sum
+++ b/go.sum
@@ -10,6 +10,8 @@ github.com/alecthomas/assert/v2 v2.7.0 h1:QtqSACNS3tF7oasA8CU6A6sXZSBDqnm7RfpLl9
github.com/alecthomas/assert/v2 v2.7.0/go.mod h1:Bze95FyfUr7x34QZrjL+XP+0qgp/zg8yS+TtBj1WA3k=
github.com/alecthomas/assert/v2 v2.10.0 h1:jjRCHsj6hBJhkmhznrCzoNpbA3zqy0fYiUcYZP/GkPY=
github.com/alecthomas/assert/v2 v2.10.0/go.mod h1:Bze95FyfUr7x34QZrjL+XP+0qgp/zg8yS+TtBj1WA3k=
+github.com/alecthomas/assert/v2 v2.11.0 h1:2Q9r3ki8+JYXvGsDyBXwH3LcJ+WK5D0gc5E8vS6K3D0=
+github.com/alecthomas/assert/v2 v2.11.0/go.mod h1:Bze95FyfUr7x34QZrjL+XP+0qgp/zg8yS+TtBj1WA3k=
github.com/alecthomas/repr v0.2.0 h1:HAzS41CIzNW5syS8Mf9UwXhNH1J9aix/BvDRf1Ml2Yk=
github.com/alecthomas/repr v0.2.0/go.mod h1:Fr0507jx4eOXV7AlPV6AVZLYrLIuIeSOWtW57eE/O/4=
github.com/alecthomas/repr v0.3.0 h1:NeYzUPfjjlqHY4KtzgKJiWd6sVq2eNUPTi34PiFGjY8=