File tree Expand file tree Collapse file tree 6 files changed +26
-5
lines changed Expand file tree Collapse file tree 6 files changed +26
-5
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,22 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
17
17
## Maintenance
18
18
## Documentation-->
19
19
20
- # [ x.x.x ] (unreleased ) - 2025-mm-dd
20
+ # [ 1.29.0 ] ( https://crates.io/crates/apollo-compiler/1.29.0 ) - 2025-08-08
21
21
22
22
## Features
23
23
24
+ - ** Add ` iter_origin() ` methods to schema elements - [ duckki] , [ pull/978] **
24
25
- ** Add public API for resolver-based execution - [ SimonSapin] , [ pull/983] **
25
26
27
+ ## Fixes
28
+
29
+ - ** Fix serialization in non-standard orphan extensions mode - [ duckki] , [ pull/984] **
30
+
31
+ [ duckki ] : https://github.com/duckki
26
32
[ SimonSapin ] : https://github.com/SimonSapin
33
+ [ pull/978 ] : https://github.com/apollographql/apollo-rs/pull/978
27
34
[ pull/983 ] : https://github.com/apollographql/apollo-rs/pull/983
35
+ [ pull/984 ] : https://github.com/apollographql/apollo-rs/pull/984
28
36
29
37
30
38
# [ 1.28.0] ( https://crates.io/crates/apollo-compiler/1.28.0 ) - 2025-04-24
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
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
4
4
authors = [
" Irina Shestak <[email protected] >" ]
5
5
license = " MIT OR Apache-2.0"
6
6
repository = " https://github.com/apollographql/apollo-rs"
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ Or add this to your `Cargo.toml` for a manual installation:
41
41
``` toml
42
42
# Just an example, change to the necessary package version.
43
43
[dependencies ]
44
- apollo-compiler = " 1.28 .0"
44
+ apollo-compiler = " 1.29 .0"
45
45
```
46
46
47
47
## Rust versions
Original file line number Diff line number Diff line change @@ -18,6 +18,19 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
18
18
## Maintenance
19
19
20
20
## 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
+
21
34
# [ 0.14.0] ( https://crates.io/crates/apollo-smith/0.14.0 ) - 2024-09-24
22
35
23
36
- ** Update apollo-compiler dependency to ` =1.0.0-beta.24 ` **
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
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
4
4
edition = " 2021"
5
5
authors = [
" Benjamin Coenen <[email protected] >" ]
6
6
license = " MIT OR Apache-2.0"
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ and add `apollo-smith` to your Cargo.toml:
50
50
# # fuzz/Cargo.toml
51
51
52
52
[dependencies ]
53
- apollo-smith = " 0.15.0 "
53
+ apollo-smith = " 0.15.1 "
54
54
```
55
55
56
56
It can then be used in a ` fuzz_target ` along with the [ ` arbitrary ` ] crate,
You can’t perform that action at this time.
0 commit comments