fix(deps): update all non-major dependencies - #73
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
Contributor
Author
ℹ️ Artifact update noticeFile name: server/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
5 times, most recently
from
May 18, 2026 01:23
bfb5aa4 to
160b406
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
3 times, most recently
from
May 22, 2026 01:02
8a751b4 to
ee20b3e
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
2 times, most recently
from
June 4, 2026 16:07
3d6824c to
8934768
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
6 times, most recently
from
June 10, 2026 21:10
5e07b12 to
287b4d7
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
3 times, most recently
from
June 14, 2026 17:09
269de35 to
e47ffef
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
6 times, most recently
from
June 26, 2026 01:56
0256747 to
b3f3a13
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
3 times, most recently
from
June 28, 2026 13:07
46347c2 to
dfb6637
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
6 times, most recently
from
July 4, 2026 05:58
392598f to
f68867a
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
10 times, most recently
from
July 15, 2026 10:57
34d7c47 to
d904654
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
2 times, most recently
from
July 20, 2026 21:36
d82c3e1 to
dd55d1c
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
6 times, most recently
from
July 28, 2026 07:14
381e17f to
2604249
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
July 29, 2026 15:09
2604249 to
b49e393
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v1.2.0→v1.2.3v0.17.90→v0.17.94v0.28.0→v0.28.1v2.1.0→v2.2.0v2.2.0→v2.4.1v3.8.0→v3.10.1v2.5.33→v2.5.36v1.50.0→v1.55.018.3-alpine→18.4-alpine3.8.1→3.10.1Release Notes
ariga/atlas (ariga.io/atlas)
v1.2.3Compare Source
v1.2.2Compare Source
v1.2.1Compare Source
99designs/gqlgen (github.com/99designs/gqlgen)
v0.17.94Compare Source
v0.17.93Compare Source
What's Changed
Full Changelog: 99designs/gqlgen@v0.17.92...v0.17.93
v0.17.92Compare Source
What's Changed
New Contributors
Full Changelog: 99designs/gqlgen@v0.17.91...v0.17.92
v0.17.91Compare Source
What's Changed
_federationRequiresfor all parents (#4192) by @atzedus in #4193New Contributors
Full Changelog: 99designs/gqlgen@v0.17.90...v0.17.91
evanw/esbuild (github.com/evanw/esbuild)
v0.28.1Compare 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'spath.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.orgby default, but allows theNPM_CONFIG_REGISTRYenvironment variable to override this with a custom package registry. This change means that the esbuild executable served byNPM_CONFIG_REGISTRYmust now match the expected content.Thanks to @sondt99 for reporting this issue.
Avoid inlining
usingandawait usingdeclarations (#4482)Previously esbuild's minifier sometimes incorrectly inlined
usingandawait usingdeclarations into subsequent uses of that declaration, which then fails to dispose of the resource correctly. This bug happened because inlining was done forletandconstdeclarations by avoiding doing it forvardeclarations, which no longer worked when more declaration types were added. Here's an example: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()orrequire()is used to import a module multiple times. The thrown error is supposed to be thrown by every call toimport()orrequire(), not just the first. With this release, esbuild will now throw the same error every time you callimport()orrequire()on a module that throws during its evaluation.Fix some edge cases around the
newoperator (#4477)Previously esbuild incorrectly printed certain edge cases involving complex expressions inside the target of a
newexpression (specifically an optional chain and/or a tagged template literal). The generated code for thenewtarget 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 thenewtarget in parentheses. Here is an example of some affected code:Fix renaming of nested
vardeclarations (#4471)This release fixes a bug where
vardeclarations 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
varinstead ofconstfor certain TypeScript-only constructs for ES5 (#4448)While esbuild doesn't generally support converting
consttovarfor ES5 due to nested scoping rules (which is currently a build-time error), esbuild previously incorrectly converted TypeScript-onlyimportassignment constructs into aconstdeclaration even when targeting ES5. With this release, esbuild will now usevarfor this case instead:oschwald/geoip2-golang (github.com/oschwald/geoip2-golang/v2)
v2.2.0: 2.2.0Compare Source
github.com/oschwald/maxminddb-golang/v2was updated tov2.3.0, whichincludes several performance improvements.
oschwald/maxminddb-golang (github.com/oschwald/maxminddb-golang/v2)
v2.4.1: 2.4.1Compare Source
2.4.1
Result.DecodeandResult.DecodePathafterReader.Closeso staleresults return closed-database errors instead of reading invalidated data.
NetworksandNetworksWithinwithSkipEmptyValuesso malformedpointer cycles return an error instead of looping indefinitely.
Decodevalidation so nil and non-pointer values are rejectedconsistently before custom
Unmarshalerdispatch.ReadMapandReadSliceiterator cleanup so callers that stopiteration early can continue decoding from the correct next value.
offset error instead of risking a panic on 32-bit builds.
mmdbdata.Decodertype for custom unmarshaling.
v2.4.0: 2.4.0Compare Source
decoding a geoip2-style result allocates 20% fewer bytes (saving 48 B/op) and
2 fewer heap allocations per lookup when utilizing pointer-heavy destination
structures.
general lookup throughput by 2.7% to 6.4%.
points reject them consistently instead of following invalid chains.
OpenBytesand
NetworksWithin.removing deprecated type assertion workarounds and unused helper functions.
v2.3.0: 2.3.0Compare Source
city-lookup benchmark decoding a geoip2-style result runs about 15% faster
and allocates about 39% fewer bytes per lookup compared to 2.2.0.
sizes to skip the IPv6 prefix when looking up IPv4 addresses.
caller's backing array instead of allocating a fresh slice, matching
encoding/jsonsemantics. Callers that share slice headers acrossDecodecalls should be aware that the backing memory is now mutated.cache to a lock-free design.
urfave/cli (github.com/urfave/cli/v3)
v3.10.1Compare Source
What's Changed
New Contributors
Full Changelog: urfave/cli@v3.10.0...v3.10.1
v3.10.0Compare Source
What's Changed
Full Changelog: urfave/cli@v3.9.1...v3.10.0
v3.9.1Compare Source
What's Changed
Full Changelog: urfave/cli@v3.9.0...v3.9.1
v3.9.0Compare Source
What's Changed
New Contributors
Full Changelog: urfave/cli@v3.8.0...v3.9.0
vektah/gqlparser (github.com/vektah/gqlparser/v2)
v2.5.36Compare Source
What's Changed
New Contributors
Full Changelog: vektah/gqlparser@v2.5.35...v2.5.36
v2.5.35Compare Source
What's Changed
Full Changelog: vektah/gqlparser@v2.5.34...v2.5.35
v2.5.34Compare Source
What's Changed
New Contributors
Full Changelog: vektah/gqlparser@v2.5.33...v2.5.34
cznic/sqlite (modernc.org/sqlite)
v1.55.0Compare Source
v1.54.0Compare Source
v1.53.0Compare Source
v1.52.0Compare Source
v1.51.0Compare Source
v1.50.1Compare Source
recharts/recharts (recharts)
v3.10.1Compare Source
v3.10.0Compare Source
What's Changed
Legend position
Legend now supports
positionandoffsetprops, same as Label and LabeList. This replaces the previousalignandverticalAlignfor a more convenient positioning, and fixes couple visual bugs too. See https://recharts.github.io/en-US/examples/LegendPosition/XAxis auto height
XAxis now supports height="auto" prop, similar to YAxis width="auto".
Other features
Bugfixes
New Contributors
Full Changelog: recharts/recharts@v3.9.2...v3.10.0
v3.9.2Compare Source
What's Changed
New Contributors
Full Changelog: recharts/recharts@v3.9.1...v3.9.2
v3.9.1Compare Source
What's Changed
New Contributors
Full Changelog: recharts/recharts@v3.9.0...v3.9.1
v3.9.0Compare Source
What's Changed
Animations
3.9 comes with new animations! There are several bug fixes and what's best, all animations are now fully customizable.
See the animations guide on https://recharts.github.io/en-US/guide/animations/
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.