Skip to content

Commit

Permalink
chore: Use ControlFlow in checkpoints. (#602)
Browse files Browse the repository at this point in the history
chore: Use ControlFlow in checkpoints.

`checkpoint` and `async_checkpoint` now `use std::ops::ControlFlow instead` of the `Step` enum. ControlFlow has two variants, `Continue` and `Break`
  • Loading branch information
o0Ignition0o authored Mar 9, 2022
1 parent 3ad7de2 commit 6cfdb04
Show file tree
Hide file tree
Showing 14 changed files with 367 additions and 290 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
Description! And a link to a [reference](http://url)
-->

# [x.x.x] (unreleased) - 2021-mm-dd

- **❗ BREAKING ❗**
- **use ControlFlow in checkpoints** ([PR #602](https://github.com/apollographql/router/pull/602))
`checkpoint` and `async_checkpoint` now `use std::ops::ControlFlow instead` of the `Step` enum. ControlFlow has two variants, `Continue` and `Break`.

## ❗ BREAKING ❗
- **Header propagation plugin** ([PR #599](https://github.com/apollographql/router/pull/599))

Expand Down
Loading

0 comments on commit 6cfdb04

Please sign in to comment.