Skip to content

Commit 932c794

Browse files
authored
1 parent dc8a8d5 commit 932c794

File tree

6 files changed

+26
-5
lines changed

6 files changed

+26
-5
lines changed

crates/apollo-compiler/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,22 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1717
## Maintenance
1818
## Documentation-->
1919

20-
# [x.x.x] (unreleased) - 2025-mm-dd
20+
# [1.29.0](https://crates.io/crates/apollo-compiler/1.29.0) - 2025-08-08
2121

2222
## Features
2323

24+
- **Add `iter_origin()` methods to schema elements - [duckki], [pull/978]**
2425
- **Add public API for resolver-based execution - [SimonSapin], [pull/983]**
2526

27+
## Fixes
28+
29+
- **Fix serialization in non-standard orphan extensions mode - [duckki], [pull/984]**
30+
31+
[duckki]: https://github.com/duckki
2632
[SimonSapin]: https://github.com/SimonSapin
33+
[pull/978]: https://github.com/apollographql/apollo-rs/pull/978
2734
[pull/983]: https://github.com/apollographql/apollo-rs/pull/983
35+
[pull/984]: https://github.com/apollographql/apollo-rs/pull/984
2836

2937

3038
# [1.28.0](https://crates.io/crates/apollo-compiler/1.28.0) - 2025-04-24

crates/apollo-compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "apollo-compiler"
3-
version = "1.28.0" # When bumping, also update README.md
3+
version = "1.29.0" # When bumping, also update README.md
44
authors = ["Irina Shestak <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/apollographql/apollo-rs"

crates/apollo-compiler/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Or add this to your `Cargo.toml` for a manual installation:
4141
```toml
4242
# Just an example, change to the necessary package version.
4343
[dependencies]
44-
apollo-compiler = "1.28.0"
44+
apollo-compiler = "1.29.0"
4545
```
4646

4747
## Rust versions

crates/apollo-smith/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,19 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1818
## Maintenance
1919
2020
## Documentation -->
21+
22+
# [0.15.1](https://crates.io/crates/apollo-smith/0.15.1) - 2025-08-08
23+
24+
- **Implement builder for arbitrary responses - [tninesling], [pull/981]**
25+
26+
[tninesling]: https://github.com/tninesling
27+
[pull/981]: https://github.com/apollographql/apollo-rs/pull/981
28+
29+
30+
# [0.15.0](https://crates.io/crates/apollo-smith/0.14.0) - 2025-01-16
31+
32+
- **Update apollo-compiler dependency to stable `^1.25.0`**
33+
2134
# [0.14.0](https://crates.io/crates/apollo-smith/0.14.0) - 2024-09-24
2235

2336
- **Update apollo-compiler dependency to `=1.0.0-beta.24`**

crates/apollo-smith/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "apollo-smith"
3-
version = "0.15.0" # When bumping, also update README.md
3+
version = "0.15.1" # When bumping, also update README.md
44
edition = "2021"
55
authors = ["Benjamin Coenen <[email protected]>"]
66
license = "MIT OR Apache-2.0"

crates/apollo-smith/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ and add `apollo-smith` to your Cargo.toml:
5050
## fuzz/Cargo.toml
5151

5252
[dependencies]
53-
apollo-smith = "0.15.0"
53+
apollo-smith = "0.15.1"
5454
```
5555

5656
It can then be used in a `fuzz_target` along with the [`arbitrary`] crate,

0 commit comments

Comments
 (0)