Skip to content

Commit

Permalink
Add a missing changelog entry for error message changes to v2.10.0.
Browse files Browse the repository at this point in the history
## Changelog

This is the only change; please take a look.

PR-URL: hasura/graphql-engine-mono#5713
GitOrigin-RevId: fbc527ebc8dc78e98841c9b67e90f9e7f2102abb
  • Loading branch information
SamirTalwar authored and hasura-bot committed Sep 5, 2022
1 parent 6565c14 commit 52a77a0
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/.hlint.yaml
/CHANGELOG.md
/server/tests-py/**/*
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,29 @@ The way it works is:

Please submit any feedback you may have for this feature at https://github.com/hasura/graphql-engine/issues/2768.

### Bug fixes and improvements
### Error message syntax

We are slowly standardizing the format of error messages, especially with regards to the way values are quoted.

Any errors generated during the parsing of GraphQL or the construction of the schema might have changed the way they quote certain values. For example, GraphQL names are now always quoted with single quotes, leading to changes such as the following.

_Before:_

```
field "nonexistent_root_field" not found in type: 'query_root'
```

_After:_

```
field 'nonexistent_root_field' not found in type: 'query_root'
```

If you are depending on the specific text of an error message and/or parsing the message, you may need to update your code accordingly.

Further changes are forthcoming along similar lines.

### Bug fixes and improvements

- server: Kriti `basicFunctions` now available for REST Connectors and Webhook Transforms
- server: Fix bug where Hasura SQL trigger was not dropped when MS SQL Server source is dropped
Expand Down

0 comments on commit 52a77a0

Please sign in to comment.