AlinsRan commented on code in PR #1672: URL: https://github.com/apache/apisix-website/pull/1672#discussion_r1312602792
########## blog/zh/blog/2023/09/01/release-apache-apisix-3.5.0.md: ########## @@ -0,0 +1,263 @@ +--- +title: "Apache APISIX 3.5.0 正式发布" +authors: + - name: "Xin Rong" + title: "Author" + url: "https://github.com/AlinsRan" + image_url: "https://avatars.githubusercontent.com/u/79972061?v=4" + - name: "Traky Deng" + title: "Technical Writer" + url: "https://github.com/kayx23" + image_url: "https://avatars.githubusercontent.com/u/39619599?v=4" +keywords: +- Apache APISIX +- API Gateway +- API Management Platform +- New Release +- Cloud Native +description: Apache APISIX 3.5.0 版本于 2023 年 9 月 1 日发布。该版本带来了振奋人心的新功能和改进的用户体验。 +tags: [Community] +--- + +我们很高兴地宣布 Apache APISIX 3.5.0 版本已经发布,带来了振奋人心的新功能和改进的用户体验。 + +<!--truncate--> + +这个新版本添加了许多新功能,包括在主机级别动态配置TLS版本、与 Chaitin WAF 的集成、强制删除资源、在独立模式下部署 APISIX 时在配置文件中使用环境变量等。 + +这个版本包含了一些重要的变化。如果您发现这些变化对您的操作产生影响,强烈建议您进行相应的计划,以实现无缝升级。 + +## 重大变更 + +### 在 `request-id` 插件中移除雪花算法支持 + +移除 `request-id` 插件中的雪花算法支持。该算法引入了对 etcd 的不必要依赖,当 etcd 不可用时,可能会显著影响 APISIX 的性能。请考虑在算法中使用 `uuid` 选项。 + +有关更多背景信息,请参阅邮件列表中的[提案](https://lists.apache.org/thread/p4wwwwmtf024pnbccs5psncxg8yqvh9c) 。 + +相关 PR 请见 [#9715](https://github.com/apache/apisix/pull/9715)。 + +### 删除对 OpenResty 1.19 的支持 + +如果您当前正在使用此版本,请计划升级到 OpenResty 版本 1.21 及更高版本。 + +相关 PR 请见 [#9913](https://github.com/apache/apisix/pull/9913)。 + +### 改善 L4 和 L7 代理的可用性并删除 `apisix.stream_proxy.only` + +提高 L4 和 L7 代理的可用性。 此更改删除了 `apisix.stream_proxy.only` 选项,并简化了启用和禁用 L4 和 L7 代理的用法。 + +L4 和 L7 代理可在 `config.yaml` 文件中如下所示启用: + +- 启用 L7 代理(默认启用):`apisix.proxy_mode: http` +- 启用 L4 代理:`apisix.proxy_mode:stream` +- 启用 L7 和 L4 代理:`apisix.proxy_mode: http&stream` + +有关更改后如何使用 stream 代理的更多信息,请参阅[如何启用 stream 代理](https://apisix.apache.org/zh/docs/apisix/next/stream-proxy/#如何开启-stream-代理)。 + +相关 PR 请见 [#9607](https://github.com/apache/apisix/pull/9607)。 + +### 在 `ua-restriction` 插件中支持同时使用`allowlist`和`denylist` Review Comment: This is the previous behavior. Cannot be enabled at the same time. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
