Skip to content
Open
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
2 changes: 1 addition & 1 deletion Cargo.lock

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

14 changes: 14 additions & 0 deletions crates/oxc_graphql_parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.7](https://github.com/oxc-project/oxc-graphql-parser/compare/oxc-graphql-parser-v0.0.6...oxc-graphql-parser-v0.0.7) - 2026-07-12

### Fixed

- string values ending in an escaped quote lose the quote ([#53](https://github.com/oxc-project/oxc-graphql-parser/pull/53))
- selection set loop spins forever on invalid selection start ([#52](https://github.com/oxc-project/oxc-graphql-parser/pull/52))

### Other

- extract definition_start helper for description-aware spans ([#54](https://github.com/oxc-project/oxc-graphql-parser/pull/54))
- use Peekable::next_if_eq for CRLF normalization ([#50](https://github.com/oxc-project/oxc-graphql-parser/pull/50))
- hint cold error paths with std::hint::cold_path ([#49](https://github.com/oxc-project/oxc-graphql-parser/pull/49))
- lower MSRV to Rust 1.95.0 ([#48](https://github.com/oxc-project/oxc-graphql-parser/pull/48))

## [0.0.6](https://github.com/oxc-project/oxc-graphql-parser/compare/oxc-graphql-parser-v0.0.5...oxc-graphql-parser-v0.0.6) - 2026-07-08

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_graphql_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc-graphql-parser"
version = "0.0.6"
version = "0.0.7"
edition = "2024"
rust-version = "1.95.0"
license = "MIT OR Apache-2.0"
Expand Down
Loading