Upcoming Release Changes - #4080
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/master
branch
10 times, most recently
from
August 11, 2026 15:38
695ede3 to
b158b35
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
August 11, 2026 15:46
b158b35 to
1d3de22
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 was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.
Releases
fets@0.8.9
Patch Changes
#4078
e3be332Thanks @ardatan! - Fix TS2615 circular reference errors for OpenAPI
schemas that use
anyOf/oneOfwith recursive$refsSchemas that model recursive unions (for example a
FilterGroupwhosefiltersitems areanyOf: [FilterGroup, SoloFilter]) previously failed type-checking with TypeScript errorTS2615 ("Type of property X circularly references itself in mapped type") when used with
NormalizeOAS,OASModel,OASOutput, orcreateClient.json-schema-to-tsexpandsanyOf/oneOfthroughMergeSubSchema, which produces anonymousmapped types that break TypeScript's cycle detection. feTS now detects these circular
anyOf/oneOfgraphs (via the$idmarkers injected by$refresolution) and routes themthrough a named recursive
DirectTypealias that TypeScript can evaluate lazily—the same patternas
type Tree<T> = { value: T; children: Tree<T>[] }.#4078
e3be332Thanks @ardatan! - Fix
globalParamsso standardRequestInitfields (e.g.
credentials,mode) are applied to every requestcreateClient({ globalParams })previously only merged feTS-specific fields (headers,query,params,json,formData,formUrlEncoded). Values likecredentials: 'include'weresilently ignored, even though they are part of
ClientRequestParams/RequestInit.The client now spreads the remaining
RequestInitoptions fromglobalParamsinto each request.Per-request options still win over global ones.
#4078
e3be332Thanks @ardatan! - Preserve
number | bigintforformat: int64fields on recursive / self-referential schemas
When a schema recursively referenced itself (for example
Node.child → Node), feTS disabledjson-schema-to-tsdeserialize mappings to avoid TS2615. That also dropped the int64 widening, sointeger+format: int64incorrectly inferred asnumberinstead ofnumber | bigint.Recursive schemas now go through
DirectType, which mapsformat: int64(andformat: binary)the same way non-circular schemas do via deserialize.
#4078
e3be332Thanks @ardatan! - Coerce TypeBox query parameter values from
strings before validation
Query strings always arrive as strings (
?limit=10→{ limit: '10' }). TypeBox schemas such asType.Number()/Type.Integer()/Type.Boolean()then failed validation with400 Bad Request, even for valid URL input.The TypeBox plugin now runs
Value.Convertonrequest.querybefore validating, so handlersreceive correctly typed values and numeric/boolean query params validate successfully.
#4081
efa4e40Thanks @ardatan! - Make client auth params optional when an
operation's
securityarray includes an anonymous alternative ({})OpenAPI allows listing an empty security requirement beside authenticated schemes so callers may
omit credentials. The client types previously still required auth params whenever any scheme was
present. Empty
{}entries are now detected and the corresponding auth params become optional.#4083
d7dc0ceThanks @ardatan! - Pin the Swagger UI dark-theme CSS to an immutable
jsDelivr GitHub commit
The dark stylesheet is loaded from
cdn.jsdelivr.net/gh/Itz-fork/Fastapi-Swagger-UI-Dark@868ea5da…with SRI, so upstreamdefault-branch changes cannot invalidate the integrity hash or swap the file silently.
#4082
0ba3386Thanks @ardatan! - Pin Swagger UI CDN assets and load them with
Subresource Integrity (SRI)
Swagger UI previously pulled unversioned
unpkg.com/swagger-ui-distscripts/styles withoutintegrity checks. Assets are now pinned to
swagger-ui-dist@5.11.0and loaded via<link>/<script>tags withintegrity+crossorigin, so a compromised CDN cannot silentlyswap the payload.
@fets/benchmark@0.0.49
Patch Changes
[
e3be332,e3be332,e3be332,e3be332,efa4e40,d7dc0ce,0ba3386]:@e2e/shared-server@0.0.97
Patch Changes
[
e3be332,e3be332,e3be332,e3be332,efa4e40,d7dc0ce,0ba3386]:example-auth@0.0.21
Patch Changes
[
e3be332,e3be332,e3be332,e3be332,efa4e40,d7dc0ce,0ba3386]:example-fireblocks@0.0.47
Patch Changes
[
e3be332,e3be332,e3be332,e3be332,efa4e40,d7dc0ce,0ba3386]:example-clickhouse@0.0.42
Patch Changes
[
e3be332,e3be332,e3be332,e3be332,efa4e40,d7dc0ce,0ba3386]:example-navitia@0.0.42
Patch Changes
[
e3be332,e3be332,e3be332,e3be332,efa4e40,d7dc0ce,0ba3386]:nextjs-example@0.1.66
Patch Changes
[
e3be332,e3be332,e3be332,e3be332,efa4e40,d7dc0ce,0ba3386]:example-soccer-stats@0.0.34
Patch Changes
[
e3be332,e3be332,e3be332,e3be332,efa4e40,d7dc0ce,0ba3386]:example-spotify@0.0.45
Patch Changes
[
e3be332,e3be332,e3be332,e3be332,efa4e40,d7dc0ce,0ba3386]:todolist@0.0.74
Patch Changes
[
e3be332,e3be332,e3be332,e3be332,efa4e40,d7dc0ce,0ba3386]:example-typebox@0.0.74
Patch Changes
[
e3be332,e3be332,e3be332,e3be332,efa4e40,d7dc0ce,0ba3386]: