diff --git a/CHANGELOG.md b/CHANGELOG.md index f06d858..9b3e652 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_json to 1.0.135(pr [#72]) + ## [0.2.19] - 2025-01-04 ### Security @@ -197,6 +203,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#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 +[#72]: https://github.com/jerus-org/lambda_sqs/pull/72 +[Unreleased]: https://github.com/jerus-org/lambda_sqs/compare/v0.2.19...HEAD [0.2.19]: https://github.com/jerus-org/lambda_sqs/compare/v0.2.18...v0.2.19 [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 diff --git a/Cargo.lock b/Cargo.lock index 5c0220e..74a4c34 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -537,9 +537,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.134" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d00f4175c42ee48b15416f6193a959ba3a0d67fc699a0db9ad12df9f83991c7d" +checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" dependencies = [ "itoa", "memchr", diff --git a/Cargo.toml b/Cargo.toml index fa17eba..210f30d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ exclude = [ [dependencies] serde = { version = "1.0.217", features = ["derive"] } -serde_json = "1.0.134" +serde_json = "1.0.135" lambda_runtime = "0.13.0" [dev-dependencies]