Skip to content

Commit

Permalink
Update deps with potential breaking changes
Browse files Browse the repository at this point in the history
Signed-off-by: Matteo Collina <[email protected]>
  • Loading branch information
mcollina committed Sep 9, 2024
1 parent 4de34c7 commit 584e722
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 15 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,16 @@
"@fastify/static": "^8.0.0",
"@fastify/websocket": "^11.0.0",
"fastify-plugin": "^5.0.0",
"graphql-jit": "0.8.4",
"mqemitter": "^5.0.0",
"graphql-jit": "0.8.6",
"mqemitter": "^6.0.0",
"p-map": "^4.0.0",
"quick-lru": "^7.0.0",
"readable-stream": "^4.0.0",
"safe-stable-stringify": "^2.3.0",
"secure-json-parse": "^2.7.0",
"single-user-cache": "^0.6.0",
"single-user-cache": "^1.0.0",
"tiny-lru": "^11.0.0",
"undici": "^5.28.4",
"undici": "^6.19.8",
"ws": "^8.2.2"
},
"tsd": {
Expand Down
12 changes: 1 addition & 11 deletions test/loaders.js
Original file line number Diff line number Diff line change
Expand Up @@ -253,11 +253,6 @@ test('disable cache for each loader', async (t) => {
name: 'Buddy'
},
params: {}
}, {
obj: {
name: 'Max'
},
params: {}
}])
return queries.map(({ obj }) => {
return { ...owners[obj.name] }
Expand Down Expand Up @@ -994,7 +989,7 @@ test('should not pass info to loader if cache is enabled', async (t) => {
})
})

test('loaders create batching resolvers', { only: true }, async (t) => {
test('loaders create batching resolvers', async (t) => {
const app = Fastify()

const loaders = {
Expand All @@ -1019,11 +1014,6 @@ test('loaders create batching resolvers', { only: true }, async (t) => {
name: 'Buddy'
},
params: {}
}, {
obj: {
name: 'Max'
},
params: {}
}])
return queries.map(({ obj }) => {
return { ...owners[obj.name] }
Expand Down

0 comments on commit 584e722

Please sign in to comment.