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): bump @fastify/cors from 9.0.1 to 11.0.1 #913

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 22 additions & 21 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@
"npm": ">=9"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/cors": "^11.0.1",
"@fastify/swagger": "^8.2.1",
"@fastify/type-provider-typebox": "^3.5.0",
"@sinclair/typebox": "^0.31.25",

Unchanged files with check annotations Beta

let res = await app.inject({ method: 'GET', path: '/column-privileges' })
const { column_id } = res
.json<PostgresColumnPrivileges[]>()
.find(

Check failure on line 58 in test/server/column-privileges.ts

GitHub Actions / Test

test/index.test.ts > revoke & grant column privileges

TypeError: res.json(...).find is not a function ❯ test/server/column-privileges.ts:58:6
({ relation_schema, relation_name, column_name }) =>
relation_schema === 'public' && relation_name === 'todos' && column_name === 'id'
)!
},
})
if (res.json().error) {
throw new Error(res.payload)

Check failure on line 221 in test/server/column-privileges.ts

GitHub Actions / Test

test/index.test.ts > revoke & grant column privileges w/ quoted column name

Error: {"error":"Not found"} ❯ test/server/column-privileges.ts:221:11
}
res = await app.inject({ method: 'GET', path: '/column-privileges' })
const res = await app.inject({ method: 'GET', path: '/indexes' })
const index = res
.json<PostgresIndex[]>()
.find(

Check failure on line 9 in test/server/indexes.ts

GitHub Actions / Test

test/index.test.ts > list indexes

TypeError: res.json(...).find is not a function ❯ test/server/indexes.ts:9:6
({ index_definition }) =>
index_definition === 'CREATE UNIQUE INDEX users_pkey ON public.users USING btree (id)'
)!
test('retrieve index', async () => {
const res = await app.inject({ method: 'GET', path: '/indexes/16399' })
const index = res.json<PostgresIndex>()
expect(index).toMatchInlineSnapshot(

Check failure on line 62 in test/server/indexes.ts

GitHub Actions / Test

test/index.test.ts > retrieve index

Error: Snapshot `retrieve index 1` mismatched - Expected + Received { - "access_method": "btree", - "check_xmin": false, - "class": [ - 3124, - ], - "collation": [ - 0, - ], - "comment": null, - "id": 16399, - "index_attributes": [ - { - "attribute_name": "id", - "attribute_number": 1, - "data_type": "bigint", - }, - ], - "index_definition": "CREATE UNIQUE INDEX users_pkey ON public.users USING btree (id)", - "index_predicate": null, - "is_clustered": false, - "is_exclusion": false, - "is_immediate": true, - "is_live": true, - "is_primary": true, - "is_ready": true, - "is_replica_identity": false, - "is_unique": true, - "is_valid": true, - "key_attributes": [ - 1, - ], - "number_of_attributes": 1, - "number_of_key_attributes": 1, - "options": [ - 0, - ], - "schema": "public", - "table_id": 16393, + "error": "Not found", } ❯ test/server/indexes.ts:62:17
`
{
"access_method": "btree",
test('materialized views', async () => {
const { body } = await app.inject({ method: 'GET', path: '/materialized-views' })
expect(cleanNondetFromBody(JSON.parse(body))).toMatchInlineSnapshot(`

Check failure on line 18 in test/server/materialized-views.ts

GitHub Actions / Test

test/index.test.ts > materialized views

Error: Snapshot `materialized views 1` mismatched - Expected + Received - [ - { - "comment": null, - "is_populated": true, - "name": "todos_matview", - "schema": "public", - }, - ] + { + "error": "Not found", + } ❯ test/server/materialized-views.ts:18:49
[
{
"comment": null,
path: '/materialized-views',
query: { include_columns: 'true' },
})
expect(cleanNondetFromBody(JSON.parse(body))).toMatchInlineSnapshot(`

Check failure on line 36 in test/server/materialized-views.ts

GitHub Actions / Test

test/index.test.ts > materialized views with columns

Error: Snapshot `materialized views with columns 1` mismatched - Expected + Received - [ - { - "columns": [ - { - "check": null, - "comment": null, - "data_type": "bigint", - "default_value": null, - "enums": [], - "format": "int8", - "identity_generation": null, - "is_generated": false, - "is_identity": false, - "is_nullable": true, - "is_unique": false, - "is_updatable": false, - "name": "id", - "ordinal_position": 1, - "schema": "public", - "table": "todos_matview", - }, - { - "check": null, - "comment": null, - "data_type": "text", - "default_value": null, - "enums": [], - "format": "text", - "identity_generation": null, - "is_generated": false, - "is_identity": false, - "is_nullable": true, - "is_unique": false, - "is_updatable": false, - "name": "details", - "ordinal_position": 2, - "schema": "public", - "table": "todos_matview", - }, - { - "check": null, - "comment": null, - "data_type": "bigint", - "default_value": null, - "enums": [], - "format": "int8", - "identity_generation": null, - "is_generated": false, - "is_identity": false, - "is_nullable": true, - "is_unique": false, - "is_updatable": false, - "name": "user-id", - "ordinal_position": 3, - "schema": "public", - "table": "todos_matview", - }, - ], - "comment": null, - "is_populated": true, - "name": "todos_matview", - "schema": "public", - }, - ] + { + "error": "Not found", + } ❯ test/server/materialized-views.ts:36:49
[
{
"columns": [
path: '/query',
payload: { query: 'SELECT * FROM users' },
})
expect(res.json()).toMatchInlineSnapshot(`

Check failure on line 10 in test/server/query.ts

GitHub Actions / Test

test/index.test.ts > query

Error: Snapshot `query 1` mismatched - Expected + Received - [ - { + { - "id": 1, - "name": "Joe Bloggs", - "status": "ACTIVE", - }, - { - "id": 2, - "name": "Jane Doe", - "status": "ACTIVE", - }, - ] + "error": "Not found", + } ❯ test/server/query.ts:10:22
[
{
"id": 1,
path: '/query',
payload: { query: 'DROP TABLE missing_table' },
})
expect(res.json()).toMatchInlineSnapshot(`

Check failure on line 32 in test/server/query.ts

GitHub Actions / Test

test/index.test.ts > error

Error: Snapshot `error 1` mismatched - Expected + Received { - "code": "42P01", - "error": "ERROR: 42P01: table "missing_table" does not exist - ", - "file": "tablecmds.c", - "formattedError": "ERROR: 42P01: table "missing_table" does not exist - ", - "length": 108, - "line": "1259", - "message": "table "missing_table" does not exist", - "name": "error", - "routine": "DropErrorMsgNonExistent", - "severity": "ERROR", + "error": "Not found", } ❯ test/server/query.ts:32:22
{
"code": "42P01",
"error": "ERROR: 42P01: table "missing_table" does not exist
path: '/query/parse',
payload: { query: 'SELECT id, name FROM users where user_id = 1234' },
})
expect(res.json()).toMatchInlineSnapshot(`

Check failure on line 56 in test/server/query.ts

GitHub Actions / Test

test/index.test.ts > parser select statements

Error: Snapshot `parser select statements 1` mismatched - Expected + Received - [ - { - "RawStmt": { - "stmt": { - "SelectStmt": { - "fromClause": [ - { - "RangeVar": { - "inh": true, - "location": 21, - "relname": "users", - "relpersistence": "p", - }, - }, - ], - "limitOption": "LIMIT_OPTION_DEFAULT", - "op": "SETOP_NONE", - "targetList": [ - { - "ResTarget": { - "location": 7, - "val": { - "ColumnRef": { - "fields": [ - { - "String": { - "str": "id", - }, - }, - ], - "location": 7, - }, - }, - }, - }, - { - "ResTarget": { - "location": 11, - "val": { - "ColumnRef": { - "fields": [ - { - "String": { - "str": "name", - }, - }, - ], - "location": 11, - }, - }, - }, - }, - ], - "whereClause": { - "A_Expr": { - "kind": "AEXPR_OP", - "lexpr": { - "ColumnRef": { - "fields": [ - { - "String": { - "str": "user_id", - }, - }, - ], - "location": 33, - }, - }, - "location": 41, - "name": [ - { - "String": { - "str": "=", - }, - }, - ], - "rexpr": { - "A_Const": { - "location": 43, - "val": { - "Integer": { - "ival": 1234, - }, - }, - }, - }, - }, - }, - }, - }, - "stmt_location": 0, - }, - }, - ] + { + "error": "Not found", + } ❯ test/server/query.ts:56:22
[
{
"RawStmt": {
`,
},
})
expect(res.json()).toMatchInlineSnapshot(`[]`)

Check failure on line 164 in test/server/query.ts

GitHub Actions / Test

test/index.test.ts > parser comments

Error: Snapshot `parser comments 1` mismatched - Expected + Received - [] + { + "error": "Not found", + } ❯ test/server/query.ts:164:22
})
test('parser create schema', async () => {