Releases: obmarg/cynic
Releases · obmarg/cynic
cynic-parser-v0.4.4
New Features
- impl Ord for parser id types (#981)
v3.7.3
cynic-parser-v0.4.3
Bug Fixes
FragmentSpread::fragment
had a missing lifetime
(#978)
cynic-parser-v0.4.2
New Features
- Added
FragmentSpread::fragment
function that looks up the named fragment
(#976)
cynic-parser-v0.4.1
New Features
- Added
Value::variables_used
to find variables used in a value
(#963)
v3.7.2
Changes
- Pulled in the latest cynic-parser, this should have no user facing impact.
cynic-parser-v0.4.0
Breaking Changes
- Pretty printing has been moved behind a new feature flag
pretty
- The names of the pretty printing functions have been updated with a
_pretty
prefix.
New Features
- All of the readers in the executable module now impl Display, allowing you
to use them withprint!
and friends. This is hidden behind theprint
feature. (#962) - All of the
Id
types now implHash
,PartialEq
,Eq
&Debug
(#961) - All of the readers now have an
id
function that allows you to retreive an
Id
for that reader. (#959) Iter
now exposes a functionids
that allows you to retrieve the underlying
IdRange
(#959)
Bug Fixes
- Fixed a lot of bad formatting in the pretty printing of schema documents
(#957) - Pretty printing will now add whitespace between fields & arguments that have
a docstring (#954)
Changes
- update rust crate logos to 0.14 (#942)