Skip to content

Commit f0d9479

Browse files
committed
Bumping version to v0.7.0 + README + CHANGELOG
1 parent dff2081 commit f0d9479

4 files changed

Lines changed: 22 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,24 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.6.1] - 2025-08-24
8+
## [0.7.0] - 2025-01-26
9+
10+
### Added
11+
- `Serialize` derivation for GraphQL input types, enabling serialization when building client libraries for the GraphQL API
12+
- `FromStr` implementation for all string-like GraphQL scalar types (`ID`, and other AWS scalar types), enabling parsing from string slices:
13+
```rust
14+
let id: ID = "123e4567-e89b-12d3-a456-426614174000".parse().unwrap();
15+
```
16+
17+
### Fixed
18+
- MSRV compatibility by pinning base64ct to v1.7.3
19+
20+
### Breaking Changes
21+
- GraphQL input types now derive both `Serialize` and `Deserialize` instead of only `Deserialize`. This may affect code that had a manual implementation of `Serialize` for input types.
22+
23+
[0.7.0]: https://github.com/JeremieRodon/lambda-appsync/compare/v0.6.0...v0.7.0
24+
25+
## [0.6.1] - 2025-08-24 [YANKED]
926

1027
### Added
1128
- `FromStr` implementation for all string-like GraphQL scalar types (`ID`, and other AWS scalar types), enabling parsing from string slices:

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["lambda-appsync", "lambda-appsync-proc"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.6.1"
6+
version = "0.7.0"
77
rust-version = "1.81.0"
88
edition = "2021"
99
authors = ["Jérémie RODON <jeremie.rodon@gmail.com>"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Add this dependency to your `Cargo.toml`:
3737

3838
```toml
3939
[dependencies]
40-
lambda-appsync = "0.6.1"
40+
lambda-appsync = "0.7.0"
4141
```
4242

4343
## Quick Start

0 commit comments

Comments
 (0)