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
6 changes: 6 additions & 0 deletions AwsEncryptionSDK/runtimes/rust/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## 1.2.3 (2026-03-10)

### Maintenance

- bump aws-lc-sys to 0.38 to mitigate false positive code scanners

## 0.2.0 (2024-12-18)

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion AwsEncryptionSDK/runtimes/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aws-esdk"
version = "1.2.2"
version = "1.2.3"
edition = "2021"
keywords = ["cryptography", "security", "dynamodb", "encryption", "client-side"]
license = "ISC AND (Apache-2.0 OR ISC)"
Expand Down
2 changes: 1 addition & 1 deletion AwsEncryptionSDK/runtimes/rust/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
To publish a new version of the aws-esdk for version N.N.N

1. Acquire the appropriate AWS permissions to run the tests
1. Ensure that `dafny --version` refers to the appropropriate version for Rust
1. Ensure that `dafny --version` refers to the appropriate version for Rust
1. Ensure git checkout of main is fresh and clean
1. ./start_release.sh N.N.N
1. `cd ../../../releases/rust/esdk`
Expand Down
4 changes: 2 additions & 2 deletions AwsEncryptionSDK/runtimes/rust/test_examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ rust-version = "1.81.0"

[dependencies]
aws-config = "1.5.15"
aws-lc-rs = "=1.12.2"
aws-lc-sys = "=0.25.1"
aws-lc-rs = "1.15.4"
aws-lc-sys = "0.38.0"
aws-sdk-dynamodb = "1.62.0"
aws-sdk-kms = "1.57.0"
aws-smithy-runtime-api = {version = "1.7.3", features = ["client"] }
Expand Down
4 changes: 2 additions & 2 deletions releases/rust/esdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aws-esdk"
version = "1.2.2"
version = "1.2.3"
edition = "2021"
keywords = ["cryptography", "security", "dynamodb", "encryption", "client-side"]
license = "ISC AND (Apache-2.0 OR ISC)"
Expand All @@ -17,7 +17,7 @@ readme = "README.md"
[dependencies]
aws-config = "1.8.12"
aws-lc-rs = {version = "1.15.4"}
aws-lc-sys = { version = "0.37", optional = true }
aws-lc-sys = { version = "0.38", optional = true }
aws-lc-fips-sys = { version = "0.13", optional = true }
aws-sdk-dynamodb = "1.103.0"
aws-sdk-kms = "1.98.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
#![allow(clippy::result_large_err)]

use aws_esdk::material_providers::client as mpl_client;
use aws_esdk::material_providers::operation::decrypt_materials::DecryptMaterialsInput;
Expand Down
Loading