> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt.

## 4.55.4

**`(fix):`** 通过用基于 Pydantic V2 `TypeAdapter` 的 `parse_date`/`parse_datetime` 实现替换 `pydantic.v1.datetime_parse` 导入来修复 Python 3.14 兼容性。剩余的 `pydantic.v1` 导入用警告抑制包装，以避免"Core Pydantic V1 functionality isn't compatible with Python 3.14"警告。

## 4.55.3

**`(fix):`** 修复名为 `json` 的 body 属性与 `json` 模块导入冲突的问题，该冲突发生在为 multipart 文件上传请求生成 `json.dumps(jsonable_encoder(...))` 时。现在当检测到名为 `json` 的 body 属性时，`json` 模块会被别名为 `_json`。

## 4.55.2

**`(fix):`** 添加 websockets 库 v14 的 websocket 兼容性垫片。生成的 SDK 现在使用 `core/websocket_compat.py` 模块，该模块抽象了 `InvalidStatusCode` 与 `InvalidStatus` 异常的差异，确保与 websockets v12-13 和 v14+ 的兼容性。