Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #1118

Merged
merged 2 commits into from
Feb 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,24 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

## Unreleased - xxxx-xx-xx

## v3.10.0 - 2025-02-10

### New Features

- Added initial suppport for directives: `@skip`, `@include` are supported, and
other field level directives can be provided provided they don't require
specific client support (#900)

### Bug Fixes

- Parsing will no longer fail if keywords like `mutation` are used as enum
values. (#1128)

### Changes

- Querygen now parses schemas and queries with `cynic_parser`
(#1124, #1125)

### Changes

- Bumped the MSRV to 1.80
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ edition = "2021"
homepage = "https://cynic-rs.dev"
repository = "https://github.com/obmarg/cynic"
license = "MPL-2.0"
version = "3.9.1"
version = "3.10.0"
rust-version = "1.80"

[workspace.dependencies]
cynic-parser = { path = "cynic-parser", version = "0.8.7" }
cynic-parser-deser-macros = { path = "cynic-parser-deser-macros", version = "0.8.7" }
cynic-parser = { path = "cynic-parser", version = "0.9.0" }
cynic-parser-deser-macros = { path = "cynic-parser-deser-macros", version = "0.9.0" }
darling = "0.20"
graphql-mocks.path = "graphql-mocks"
rstest = "0.23"
Expand Down
6 changes: 3 additions & 3 deletions cynic-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
colored = "2"
cynic = { path = "../cynic", version = "3.9.1", features = ["http-reqwest-blocking"] }
cynic-introspection = { path = "../cynic-introspection", version = "3.9.1" }
cynic-querygen = { path = "../cynic-querygen", version = "3.9.1" }
cynic = { path = "../cynic", version = "3.10.0", features = ["http-reqwest-blocking"] }
cynic-introspection = { path = "../cynic-introspection", version = "3.10.0" }
cynic-querygen = { path = "../cynic-querygen", version = "3.10.0" }
reqwest = { version = "0.12", features = ["blocking"] }
thiserror = "1"

Expand Down
2 changes: 1 addition & 1 deletion cynic-parser-deser-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Macros for cynic-parser-deser"
keywords = ["graphql", "parser", "deserialization"]
readme = "README.md"

version = "0.8.7"
version = "0.9.0"

homepage = "https://docs.rs/cynic-parser-deser"
documentation = "https://docs.rs/cynic-parser-deser"
Expand Down
2 changes: 1 addition & 1 deletion cynic-parser-deser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Deserialization for cynic-parser Values"
keywords = ["graphql", "parser", "deserialization"]
readme = "README.md"

version = "0.8.7"
version = "0.9.0"

homepage = "https://docs.rs/cynic-parser-deser"
documentation = "https://docs.rs/cynic-parser-deser"
Expand Down
14 changes: 14 additions & 0 deletions cynic-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,24 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

## Unreleased - xxxx-xx-xx

## v0.9.0 - 2025-02-10

### Breaking Changes

- Added new variants to `cynic_parser::Error` to handle empty documents, these
errors were previous ambiguous parser errors (#1117)
- `Error::span` now returns an `Option<Span>` instead of a `Span`

### Bug Fixes

- Parsing will no longer fail if keywords like `mutation` are used as enum
values. (#1128)

### Changes

- Parse schema with `cynic_parser` in querygen (#1124)
- Bumped the MSRV to 1.80

## v0.8.7 - 2024-12-03

### Changes
Expand Down
2 changes: 1 addition & 1 deletion cynic-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "A fast, correct and easy to use GraphQL parser"
keywords = ["graphql", "parser", "api"]
readme = "README.md"

version = "0.8.7"
version = "0.9.0"

homepage = "https://docs.rs/cynic-parser"
documentation = "https://docs.rs/cynic-parser"
Expand Down
2 changes: 1 addition & 1 deletion cynic-proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ directives = []
proc-macro = true

[dependencies]
cynic-codegen = { path = "../cynic-codegen", version = "3.9.1" }
cynic-codegen = { path = "../cynic-codegen", version = "3.10.0" }
darling.workspace = true
quote = "1"
syn.workspace = true
2 changes: 1 addition & 1 deletion cynic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ rkyv = ["cynic-proc-macros/rkyv"]
directives = ["cynic-proc-macros/directives"]

[dependencies]
cynic-proc-macros = { path = "../cynic-proc-macros", version = "3.9.1" }
cynic-proc-macros = { path = "../cynic-proc-macros", version = "3.10.0" }
ref-cast = "1.0.15"
serde = { version = "1.0.136", features = [ "derive" ] }
serde_json = { version = "1.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion schemas/github/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ publish = false

[dependencies]
chrono = { version = "0.4", features = ["serde"] }
cynic = { path = "../../cynic", version = "3.9.1" }
cynic = { path = "../../cynic", version = "3.10.0" }
Loading