merge master into master

切换到gitcode

Created-by: dragonswordy
Commit-by: ljy9810
Merged-by: openharmony_ci
Description: ### 一、内容说明(相关的Issue)



### 二、建议测试周期和提测地址  
  建议测试完成时间:xxxx.xx.xx  
  投产上线时间:xxxx.xx.xx  
  提测地址:CI环境/压测环境  
  测试账号:  

### 三、变更内容
  * 3.1 关联PR列表

  * 3.2 数据库和部署说明  
    1. 常规更新 
    2. 重启unicorn
    3. 重启sidekiq
    4. 迁移任务:是否有迁移任务,没有写 "无"
    5. rake脚本:`bundle exec xxx RAILS_ENV = production`;没有写 "无"

  * 3.4 其他技术优化内容(做了什么,变更了什么)
    - 重构了 xxxx 代码
    - xxxx 算法优化


  * 3.5 废弃通知(什么字段、方法弃用?)



  * 3.6  后向不兼容变更(是否有无法向后兼容的变更?)


  
### 四、研发自测点(自测哪些?冒烟用例全部自测?)
  自测测试结论:


### 五、测试关注点(需要提醒QA重点关注的、可能会忽略的地方)
  检查点:

| 需求名称 | 是否影响xx公共模块 | 是否需要xx功能 | 需求升级是否依赖其他子产品 |
|------|------------|----------|---------------|
| xxx  | 否          | 需要       | 不需要           |
|      |            |          |               |

  接口测试:

  性能测试:

  并发测试:

  其他:



See merge request: openharmony/commonlibrary_rust_ylong_http!217
This commit is contained in:
openharmony_ci
2025-09-26 15:02:07 +08:00
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -3,8 +3,8 @@
"version": "4.0",
"description": "ylong HTTP implementation",
"publishAs": "code-segment",
"homePage": "https://gitee.com/openharmony",
"repository": "https://gitee.com/openharmony/commonlibrary_rust_ylong_http",
"homePage": "https://gitcode.com/openharmony",
"repository": "https://gitcode.com/openharmony/commonlibrary_rust_ylong_http",
"license": "Apache License 2.0",
"language": "Rust",
"segment": {
+2 -2
View File
@@ -4,7 +4,7 @@ version = "1.0.0"
edition = "2021"
description = "HTTP utility implementation"
license = "Apache-2.0"
repository = "https://gitee.com/openharmony/commonlibrary_rust_ylong_http"
repository = "https://gitcode.com/openharmony/commonlibrary_rust_ylong_http"
keywords = ["ylong", "http"]
[features]
@@ -26,7 +26,7 @@ ylong_base = ["ylong_runtime"] # Uses asynchronous components of `ylo
[dependencies]
tokio = { version = "1.20.1", features = ["io-util", "fs"], optional = true }
ylong_runtime = { git = "https://gitee.com/openharmony/commonlibrary_rust_ylong_runtime.git", features = ["fs", "sync"], optional = true }
ylong_runtime = { git = "https://gitcode.com/openharmony/commonlibrary_rust_ylong_runtime.git", features = ["fs", "sync"], optional = true }
[dev-dependencies]
tokio = { version = "1.20.1", features = ["io-util", "rt-multi-thread", "macros"] }
+2 -2
View File
@@ -4,7 +4,7 @@ version = "1.0.0"
edition = "2021"
description = "Ylong HTTP Client implementation"
license = "Apache-2.0"
repository = "https://gitee.com/openharmony/commonlibrary_rust_ylong_http"
repository = "https://gitcode.com/openharmony/commonlibrary_rust_ylong_http"
keywords = ["ylong", "http", "client"]
[dependencies]
@@ -12,7 +12,7 @@ ylong_http = { path = "../ylong_http" }
quiche = { version = "0.22.0", features = ["ffi"], optional = true }
libc = { version = "0.2.134", optional = true }
tokio = { version = "1.20.1", features = ["io-util", "net", "rt", "rt-multi-thread", "macros", "sync", "time"], optional = true }
ylong_runtime = { git = "https://gitee.com/openharmony/commonlibrary_rust_ylong_runtime.git", features = ["net", "sync", "fs", "macros", "time"], optional = true }
ylong_runtime = { git = "https://gitcode.com/openharmony/commonlibrary_rust_ylong_runtime.git", features = ["net", "sync", "fs", "macros", "time"], optional = true }
[dev-dependencies]
hyper = { version = "0.14.23", features = ["http1", "http2", "tcp", "server"] }