···44`MAJOR.MINOR.PATCH` version of the aliased `graphql` version on `npm`.
55The prerelease is incremented to indicate changes in `graphql-web-lite`.
6677+## 16.6.0-2
88+99+- Replace `utilities/findBreakingChanges` with no-op code.
1010+711## 16.6.0-1
812913- Replace `type/assertName` with a custom shim.
+2-2
alias/utilities/findBreakingChanges.mjs
···2626 ARG_DEFAULT_VALUE_CHANGE: 'ARG_DEFAULT_VALUE_CHANGE',
2727};
28282929-export function findBreakingChanges(oldSchema, newSchema) {
2929+export function findBreakingChanges(_oldSchema, _newSchema) {
3030 return [];
3131}
32323333-export function findDangerousChanges(oldSchema, newSchema) {
3333+export function findDangerousChanges(_oldSchema, _newSchema) {
3434 return [];
3535}