Skip to content

Commit

Permalink
bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
talentlessguy committed Mar 31, 2024
1 parent 75c1db7 commit a50e8c0
Show file tree
Hide file tree
Showing 10 changed files with 70 additions and 55 deletions.
103 changes: 59 additions & 44 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ export {
export {
STATUS_TEXT,
type StatusCode,
} from 'https://deno.land/std@0.210.0/http/status.ts'
} from 'https://deno.land/std@0.221.0/http/status.ts'
2 changes: 1 addition & 1 deletion examples/denoflare/mod.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { GraphQLHTTP } from '../../mod.ts'
import { makeExecutableSchema } from 'npm:@graphql-tools/[email protected].0'
import { makeExecutableSchema } from 'npm:@graphql-tools/[email protected].3'
import { gql } from 'https://deno.land/x/[email protected]/mod.ts'

const typeDefs = gql`
Expand Down
4 changes: 2 additions & 2 deletions examples/oak.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import {
Middleware,
Request as OakRequest,
Router,
} from 'https://deno.land/x/oak@v12.6.1/mod.ts'
} from 'https://deno.land/x/oak@14.2.0/mod.ts'
import { GraphQLHTTP } from '../mod.ts'
import { makeExecutableSchema } from 'npm:@graphql-tools/[email protected].0'
import { makeExecutableSchema } from 'npm:@graphql-tools/[email protected].3'
import { gql } from 'https://deno.land/x/[email protected]/mod.ts'

const typeDefs = gql`
Expand Down
2 changes: 1 addition & 1 deletion examples/req-ctx.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { GraphQLHTTP } from '../mod.ts'
import { makeExecutableSchema } from 'npm:@graphql-tools/[email protected].0'
import { makeExecutableSchema } from 'npm:@graphql-tools/[email protected].3'
import { gql } from 'https://deno.land/x/[email protected]/mod.ts'
import type { Request as GQLRequest } from 'npm:[email protected]'

Expand Down
2 changes: 1 addition & 1 deletion examples/vanilla.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { GraphQLHTTP } from '../mod.ts'
import { makeExecutableSchema } from 'npm:@graphql-tools/[email protected].0'
import { makeExecutableSchema } from 'npm:@graphql-tools/[email protected].3'
import { gql } from 'https://deno.land/x/[email protected]/mod.ts'

const typeDefs = gql`
Expand Down
2 changes: 1 addition & 1 deletion graphiql/render.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { filterXSS } from 'https://esm.sh/[email protected].14'
import { filterXSS } from 'https://esm.sh/[email protected].15/'
import { getLoadingMarkup } from './markup.ts'

export interface MiddlewareOptions {
Expand Down
2 changes: 1 addition & 1 deletion graphiql/render_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { describe, it } from 'https://deno.land/std@0.205.0/testing/bdd.ts'
import { describe, it } from 'https://deno.land/std@0.221.0/testing/bdd.ts'
import { expect } from 'https://deno.land/x/[email protected]/mod.ts'
import { renderPlaygroundPage } from './render.ts'

Expand Down
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
STATUS_TEXT,
type StatusCode,
} from './deps.ts'
import { accepts } from 'https://deno.land/std@0.210.0/http/negotiation.ts'
import { accepts } from 'https://deno.land/std@0.221.0/http/negotiation.ts'
import { GQLOptions } from './types.ts'

function toRequest<Req = Request, Ctx = unknown>(
Expand Down
4 changes: 2 additions & 2 deletions mod_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { superdeno } from 'https://deno.land/x/superdeno@4.8.0/mod.ts?target=deno'
import { describe, it } from 'https://deno.land/std@0.210.0/testing/bdd.ts'
import { superdeno } from 'https://deno.land/x/superdeno@4.9.0/mod.ts?target=deno'
import { describe, it } from 'https://deno.land/std@0.221.0/testing/bdd.ts'
import {
buildSchema,
GraphQLObjectType,
Expand Down

0 comments on commit a50e8c0

Please sign in to comment.