Skip to content

Commit c71b922

Browse files
authored
Bump crc-fast to 1.6.0 (#4379)
## Motivation and Context <!--- Why is this change required? What problem does it solve? --> <!--- If it fixes an open issue, please link to the issue here --> Bumping crc-fast to the newest version. Keeping it pinned until we do something about #3981 and #4380 ## Testing <!--- Please describe in detail how you tested your changes --> <!--- Include details of your testing environment, and the tests you ran to --> <!--- see how your change affects other areas of the code, etc. --> Made this change in aws-sdk-rust and ran our more comprehensive canaries there against it: https://github.com/awslabs/aws-sdk-rust/actions/runs/19080044066 ## Checklist <!--- If a checkbox below is not applicable, then please DELETE it rather than leaving it unchecked --> - [x] For changes to the smithy-rs codegen or runtime crates, I have created a changelog entry Markdown file in the `.changelog` directory, specifying "client," "server," or both in the `applies_to` key. - [x] For changes to the AWS SDK, generated SDK code, or SDK runtime crates, I have created a changelog entry Markdown file in the `.changelog` directory, specifying "aws-sdk-rust" in the `applies_to` key. ---- _By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._
1 parent 77b68a6 commit c71b922

File tree

5 files changed

+24
-11
lines changed

5 files changed

+24
-11
lines changed

.changelog/crc-fast-bump.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
applies_to:
3+
- aws-sdk-rust
4+
- client
5+
authors:
6+
- landonxjames
7+
references: []
8+
breaking: false
9+
new_feature: false
10+
bug_fix: false
11+
---
12+
13+
Bump crc-fast version to 1.6.0

aws/sdk/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ fun Project.registerDowngradeFor(
440440
mapOf(
441441
"minicbor" to "0.24.2",
442442
"libfuzzer-sys" to "0.4.7", // TODO(https://github.com/rust-fuzz/libfuzzer/issues/126)
443-
"crc-fast" to "1.3.0", // TODO(https://github.com/awesomized/crc-fast-rust/issues/14)
443+
"crc-fast" to "1.6.0", // TODO(https://github.com/smithy-lang/smithy-rs/issues/3981)
444444
)
445445

446446
crateNameToLastKnownWorkingVersions.forEach { (crate, version) ->

rust-runtime/Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust-runtime/aws-smithy-checksums/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws-smithy-checksums"
3-
version = "0.63.10"
3+
version = "0.63.11"
44
authors = [
55
"AWS Rust SDK Team <aws-sdk-rust@amazon.com>",
66
"Zelda Hessler <zhessler@amazon.com>",
@@ -16,8 +16,8 @@ repository = "https://github.com/smithy-lang/smithy-rs"
1616
aws-smithy-http = { path = "../aws-smithy-http" }
1717
aws-smithy-types = { path = "../aws-smithy-types" }
1818
bytes = "1.10.0"
19-
# FIXME(https://github.com/smithy-lang/smithy-rs/pull/4257): pin to <1.4.0 until https://github.com/awesomized/crc-fast-rust/issues/14 is resolved
20-
crc-fast = "~1.3.0"
19+
# FIXME(https://github.com/smithy-lang/smithy-rs/issues/3981): Keep pinned until we have more comprehensive testing in place
20+
crc-fast = "~1.6.0"
2121
hex = "0.4.3"
2222
http = "0.2.9"
2323
http-body = "0.4.5"

rust-runtime/aws-smithy-http-server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws-smithy-http-server"
3-
version = "0.65.8"
3+
version = "0.65.9"
44
authors = ["Smithy Rust Server <smithy-rs-server@amazon.com>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -33,7 +33,7 @@ lambda_http = { version = "0.8.4", optional = true }
3333
mime = "0.3.17"
3434
nom = "7.1.3"
3535
pin-project-lite = "0.2.14"
36-
regex = "1.11.1"
36+
regex = "1.12.2"
3737
serde_urlencoded = "0.7"
3838
thiserror = "2"
3939
tokio = { version = "1.40.0", features = ["full"] }

0 commit comments

Comments
 (0)