Skip to content

Commit

Permalink
fix(deps): update dependency graphql-scalars to ^1.22.4 (#816)
Browse files Browse the repository at this point in the history
* fix(deps): update dependency graphql-scalars to ^1.22.4

* test: reflect asserts for bigint scalar

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Rostislav Simonik <[email protected]>
  • Loading branch information
renovate[bot] and rostislav-simonik authored Feb 3, 2024
1 parent 2a661b2 commit 3ae332f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
"dindist": "^1.0.2",
"expand-tilde": "^2.0.2",
"fs-jetpack": "^5.1.0",
"graphql-scalars": "^1.22.2",
"graphql-scalars": "^1.22.4",
"kleur": "^4.1.5",
"lodash": "^4.17.21",
"ono": "^7.1.3",
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/kitchen-sink.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ it('A full-featured project type checks, generates expected GraphQL schema, and
expect(typeof foo.someJsonField).toEqual('object')
expect(typeof foo.someDateTimeField).toEqual('string')
expect(typeof foo.someBytesField).toEqual('object')
expect(typeof GQLScalars.BigIntResolver.parseValue(foo.someBigIntField)).toEqual('bigint')
expect(typeof GQLScalars.BigIntResolver.parseValue(foo.someBigIntField)).toEqual('number')
} finally {
d(`stopping server`)

Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4370,10 +4370,10 @@ graphql-request@^6.1.0:
"@graphql-typed-document-node/core" "^3.2.0"
cross-fetch "^3.1.5"

graphql-scalars@^1.22.2:
version "1.22.2"
resolved "https://registry.yarnpkg.com/graphql-scalars/-/graphql-scalars-1.22.2.tgz#6326e6fe2d0ad4228a9fea72a977e2bf26b86362"
integrity sha512-my9FB4GtghqXqi/lWSVAOPiTzTnnEzdOXCsAC2bb5V7EFNQjVjwy3cSSbUvgYOtDuDibd+ZsCDhz+4eykYOlhQ==
graphql-scalars@^1.22.4:
version "1.22.4"
resolved "https://registry.yarnpkg.com/graphql-scalars/-/graphql-scalars-1.22.4.tgz#af092b142bcfd5c1f8c53cb70ee1955ecd4ddb03"
integrity sha512-ILnv7jq5VKHLUyoaTFX7lgYrjCd6vTee9i8/B+D4zJKJT5TguOl0KkpPEbXHjmeor8AZYrVsrYUHdqRBMX1pjA==
dependencies:
tslib "^2.5.0"

Expand Down

0 comments on commit 3ae332f

Please sign in to comment.