Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Telemetry support (OTLP) #253

Merged
merged 4 commits into from
Jun 22, 2024
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
7 changes: 6 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,16 @@ repos:
- id: docker-compose-up
- id: cargo-test
args: [--, --skip, test_wrap_auth, --skip, test_cse_private_key_sign, --skip, test_cse_private_key_decrypt]
- id: cargo-audit
# - id: cargo-outdated
- id: clippy-autofix-all
- id: clippy-autofix-pedantic
- id: clippy-autofix-others
- id: clippy-all-targets-all-features
- id: cargo-format # in last du to clippy fixes
- id: docker-compose-down

- repo: https://github.com/EmbarkStudios/cargo-deny
rev: 0.14.16 # choose your preferred tag
hooks:
- id: cargo-deny
args: [--all-features, check]
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,16 @@ All notable changes to this project will be documented in this file.

### Features

- Added RSA benchmarks
- Add KMIP operation `Validate` for certificates ([#247](https://github.com/Cosmian/kms/pull/247))
- Added RSA benchmarks ([#251](https://github.com/Cosmian/kms/pull/251))
- Add OpenTelemetry OTLP protocol support to KMS server ([#253](https://github.com/Cosmian/kms/pull/253))

### Bug Fixes

- Replace `cargo audit` with `cargo deny` ([#245](https://github.com/Cosmian/kms/pull/245))
- Replace Linux cross-compiling for Windows with compiling on Windows Github runner ([#249](https://github.com/Cosmian/kms/pull/249))
- Fix vulnerability RUSTSEC-2024-0336 ([#244](https://github.com/Cosmian/kms/pull/244))
- Fix vulnerability RUSTSEC-2024-0344 ([#254](https://github.com/Cosmian/kms/pull/254)) and ([#255](https://github.com/Cosmian/kms/pull/255))

## [4.16.0] - 2024-05-06

Expand Down
Loading
Loading