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(deps): update all non-major dependencies #7179

Merged
merged 3 commits into from Nov 21, 2022
Merged

Commits on Nov 21, 2022

  1. Configuration menu
    Copy the full SHA
    9508944 View commit details
    Browse the repository at this point in the history
  2. Fix jest.fn formatError declarations for TS4.9 compatibility

    It looks like in TS 4.7 (and 4.8) these jest.fns were being inferred as
    returning `any` and now they are inferred as returning `unknown`, for
    some reason unclear from the TS4.9 release notes. They need to return
    `GraphQLFormattedError`; `any` meant TS ignored the problem, and
    `unknown` means it doesn't. So add enough declarations to get inference
    correct (declaring the parameter type is good enough since these
    functions return that parameter).
    glasser committed Nov 21, 2022
    Configuration menu
    Copy the full SHA
    a62a026 View commit details
    Browse the repository at this point in the history
  3. changeset

    glasser committed Nov 21, 2022
    Configuration menu
    Copy the full SHA
    f5a23bb View commit details
    Browse the repository at this point in the history