diff --git a/CHANGELOG.md b/CHANGELOG.md index 16401e6..efe6823 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +### Security + +- Dependencies: update rust crate serde to 1.0.217(pr [#71]) + ## [0.2.18] - 2024-12-28 ### Security @@ -190,6 +196,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#68]: https://github.com/jerus-org/lambda_sqs/pull/68 [#69]: https://github.com/jerus-org/lambda_sqs/pull/69 [#70]: https://github.com/jerus-org/lambda_sqs/pull/70 +[#71]: https://github.com/jerus-org/lambda_sqs/pull/71 +[Unreleased]: https://github.com/jerus-org/lambda_sqs/compare/v0.2.18...HEAD [0.2.18]: https://github.com/jerus-org/lambda_sqs/compare/v0.2.17...v0.2.18 [0.2.17]: https://github.com/jerus-org/lambda_sqs/compare/v0.2.16...v0.2.17 [0.2.16]: https://github.com/jerus-org/lambda_sqs/compare/v0.2.15...v0.2.16 diff --git a/Cargo.lock b/Cargo.lock index 39d7011..16e819f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -517,18 +517,18 @@ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" [[package]] name = "serde" -version = "1.0.216" +version = "1.0.217" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" +checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.216" +version = "1.0.217" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" +checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index fed51c2..09e97a3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ exclude = [ ] [dependencies] -serde = { version = "1.0.216", features = ["derive"] } +serde = { version = "1.0.217", features = ["derive"] } serde_json = "1.0.134" lambda_runtime = "0.13.0"