Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,6 @@ on:
workflow_call:

jobs:
audit:
name: Security Audit
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v1

multi-os:
strategy:
matrix:
Expand All @@ -36,7 +29,7 @@ jobs:
cargo-fmt:
uses: Cosmian/reusable_workflows/.github/workflows/cargo-fmt.yml@develop
with:
toolchain: nightly-2025-03-31
toolchain: 1.90.0
cargo-audit:
uses: Cosmian/reusable_workflows/.github/workflows/cargo-audit.yml@develop
with:
Expand All @@ -52,7 +45,7 @@ jobs:
cargo-semver:
uses: Cosmian/reusable_workflows/.github/workflows/cargo-semver.yml@develop
with:
toolchain: 1.88.0
toolchain: 1.90.0
cargo-publish-workspace:
uses: Cosmian/reusable_workflows/.github/workflows/cargo-publish-workspace.yml@develop
with:
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ repos:
- id: nightly-cargo-format # in last du to clippy fixes

- repo: https://github.com/EmbarkStudios/cargo-deny
rev: 0.18.2 # choose your preferred tag
rev: 0.18.9
hooks:
- id: cargo-deny
args: [--all-features, check]
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file.

## [0.7.0] - 2025-12-23

### 🚀 Features

- *(http_client)* Replace rustls with native-tls for FIPS 140-3 compliance

### ⚠️ Breaking Changes

- *(http_client)* Removed TEE (Trusted Execution Environment) certificate verification support (rustls-specific feature incompatible with native-tls)
- *(http_client)* Removed client-side custom cipher suite configuration (not supported by native-tls; server-side configuration remains available)
- *(http_client)* Now requires OpenSSL library at runtime for FIPS compliance

## [0.6.0] - 2025-12-06

### ⚙️ Miscellaneous Tasks
Expand Down
162 changes: 3 additions & 159 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading