Skip to content

Commit 047f032

Browse files
committed
version 4
1 parent ceb7ace commit 047f032

File tree

7 files changed

+249
-261
lines changed

7 files changed

+249
-261
lines changed

.github/workflows/publish.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Publish
2+
on:
3+
push:
4+
branches:
5+
- master
6+
7+
jobs:
8+
publish:
9+
runs-on: ubuntu-latest
10+
11+
permissions:
12+
contents: read
13+
id-token: write
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- name: Publish package
19+
run: npx jsr publish

audit_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { serverAudits } from 'npm:graphql-http@1.22.0'
1+
import { serverAudits } from 'npm:graphql-http@1.22.4'
22

33
for (
44
const audit of serverAudits({

deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"exclude": ["audit_test.ts"]
1717
},
1818
"name": "@deno-libs/gql",
19-
"version": "3.0.1",
19+
"version": "4.0.0",
2020
"exports": {
2121
".": "./mod.ts",
2222
"./types": "./types.ts",

0 commit comments

Comments
 (0)