fix(deps): update all non-major dependencies #260
+33
−31
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.16.3
->v1.16.4
1.23.2
->1.23.3
16.0.1
->16.1.1
16.1.2
^0.6.1
->^0.7.0
^0.31.0
->^0.32.0
Release Notes
swaggo/swag (github.com/swaggo/swag)
v1.16.4
Compare Source
Changelog
85254b4
Added multiline support for @description attribute for securityDefinitions (#1786)7204462
Added suport for parsing comments inside of function bodies (#1824)d323b48
Feat: Add support for parenthesis in router patterns (#1859)15dae35
Feat: multi-arch docker image (#1756)83fe3ca
Fix generics used with function scoped types (#1883)ff50cd6
Fix global overrides for any/interface ref types (#1835)1d730c5
Fix param comment escaping issue (#1890)697572a
Fixes Issue 1829 (#1830)28de14c
Flags to parse internal and dependency package (#1894)4c2f8dd
Handle case of empty GOROOT (#1798)87e7d9c
Update docker go build version to 1.21 (#1758)4fd8a36
Update docs for request and response headers (#1825)56fde5c
Update operation.go (#1753)807dd1f
[Issue 1812] fix misalignment in expected.json and api.go messing with parser_test (#1836)91624ad
add support for "title" tag (#1762)f32d4d3
adds support for complex types with function scope (#1813)c7f1cd8
adds support for pointer function scoped fields (#1841)8a47dcb
bump go version (#1797)0834357
chore(deps): bump golang.org/x/net from 0.17.0 to 0.23.0 (#1793)1bb1445
chore(deps): bump golang.org/x/net in /example/celler (#1794)6aa6613
chore(deps): bump golang.org/x/net in /example/go-module-support (#1795)d5af957
chore(deps): bump golang.org/x/net in /example/markdown (#1792)0368d7d
chore(deps): bump golang.org/x/net in /example/object-map-example (#1796)b8662de
chore(deps): bump google.golang.org/protobuf (#1773)4a11e23
chore(deps): bump google.golang.org/protobuf (#1774)937c239
chore(deps): bump google.golang.org/protobuf in /example/celler (#1775)103ac42
chore: Update ci.yml (#1902)90aa46f
chore: fix some typos in comments (#1788)e55c557
feat: read from stdin, write to stdout (#1831) (#1832)fd2fa83
fix issue: #1780: filter $GOROOT path (#1827)10030b0
fix parse nested structs and aliases (#1866)7159b0f
fix: failing assert in enums test on 32bit (#1634)928264c
fix: remove dropped tags from general infos (#1764)a74d34c
fix:parse all field names declared in a row (#1872)0b9e347
new release (#1901)a3c6d12
support markdown description for declaration (#1893)9069105
update README (#1856)golang/go (go)
v1.23.3
bitnami/charts (postgresql)
v16.1.1
v16.1.0
namespaceOverride
(#30113)v16.0.6
v16.0.5
v16.0.4
v16.0.3
v16.0.2
astral-sh/ruff (ruff)
v0.7.2
Compare Source
Preview features
pyupgrade
] Add PEP 646Unpack
conversion to*
with fix (UP044
) (#13988)Rule changes
known_stdlibs.rs
with stdlibs 2024.10.25 (#13963)flake8-no-pep420
] Skip namespace package enforcement for PEP 723 scripts (INP001
) (#13974)Server
Bug fixes
flake8-type-checking
] Fix false positive forsingledispatchmethod
(TCH003
) (#13941)flake8-type-checking
] Treat return type ofsingledispatch
as runtime-required (TCH003
) (#13957)Documentation
flake8-simplify
] Include caveats of enablingif-else-block-instead-of-if-exp
(SIM108
) (#14019)v0.7.1
Compare Source
Preview features
E221
andE222
to flag missing or extra whitespace around==
operator (#13890)pylint
] Restrictiteration-over-set
to only work on sets of literals (PLC0208
) (#13731)Rule changes
flake8-type-checking
] Support auto-quoting when annotations contain quotes (#11811)Server
Bug fixes
ARG002
compatible withEM101
when raisingNotImplementedError
(#13714)Other changes
v0.7.0
Compare Source
Check out the blog post for a migration guide and overview of the changes!
Breaking changes
PT001
andPT023
now default to omitting the decorator parentheses when there are no arguments(#12838, #13292).
This was a change that we attempted to make in Ruff v0.6.0, but only partially made due to an error on our part.
See the blog post for more details.
useless-try-except
rule (in ourtryceratops
category) has been recoded fromTRY302
toTRY203
(#13502). This ensures Ruff's code is consistent withthe same rule in the
tryceratops
linter.lint.allow-unused-imports
setting has been removed (#13677). Uselint.pyflakes.allow-unused-imports
instead.
Formatter preview style
Preview linter features
refurb
] implementhardcoded-string-charset
(FURB156) (#13530)refurb
] Count codepoints not bytes forslice-to-remove-prefix-or-suffix (FURB188)
(#13631)Rule changes
pylint
] MarkPLE1141
fix as unsafe (#13629)flake8-async
] Consider async generators to be "checkpoints" forcancel-scope-no-checkpoint
(ASYNC100
) (#13639)flake8-bugbear
] Do not suggest setting parameterstrict=
toFalse
inB905
diagnostic message (#13656)flake8-todos
] Only flag the word "TODO", not words starting with "todo" (TD006
) (#13640)pycodestyle
] Fix whitespace-related false positives and false negatives inside type-parameter lists (E231
,E251
) (#13704)flake8-simplify
] Stabilize preview behavior forSIM115
so that the rule can detect filesbeing opened from a wider range of standard-library functions (#12959).
CLI
--statistics
command (#13774)Bug fixes
pyflakes
] Allowipytest
cell magic (F401
) (#13745)flake8-use-pathlib
] FixPTH123
false positive whenopen
is passed a file descriptor (#13616)flake8-bandit
] Detect patterns from multi line SQL statements (S608
) (#13574)flake8-pyi
] - Fix dropped expressions inPYI030
autofix (#13727)v0.6.9
Compare Source
Preview features
refurb
] MarkFURB118
fix as unsafe (#13613)Rule changes
pydocstyle
] Don't raiseD208
when last line is non-empty (#13372)pylint
] Preserve trivia (i.e. comments) inPLR5501
autofix (#13573)Configuration
pyflakes
] Addallow-unused-imports
setting forunused-import
rule (F401
) (#13601)Bug fixes
flake8-bugbear
] Avoid short circuitingB017
for multiple context managers (#13609)pylint
] Do not offer an invalid fix forPLR1716
when the comparisons contain parenthesis (#13527)pyupgrade
] FixUP043
to apply tocollections.abc.Generator
andcollections.abc.AsyncGenerator
(#13611)refurb
] Fix handling of slices in tuples forFURB118
, e.g.,x[:, 1]
(#13518)Documentation
astral-sh/ruff-action
(#13551)encode/uvicorn (uvicorn)
v0.32.0
Compare Source
Added
max_request_limit
is exceeded (#2430)v0.31.1
Compare Source
Fixed
[*]
in trusted hosts (#2480)PathLike[str]
type hint forssl_keyfile
(#2481)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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.
Thanks for the PR!
Deployments, as required, will be available below:
Please create PRs in draft mode. Mark as ready to enable:
After merge, new images are deployed in: