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

sync with latest upstream changes to fix the invalid document signature error and lexicon errors #13

Merged
merged 1 commit into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
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
296 changes: 145 additions & 151 deletions package-lock.json

Large diffs are not rendered by default.

13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
"publishFeed": "ts-node scripts/publishFeedGen.ts"
},
"dependencies": {
"@atproto/api": "^0.3.7",
"@atproto/api": "^0.6.20",
"@atproto/did-resolver": "^0.1.0",
"@atproto/lexicon": "^0.1.0",
"@atproto/repo": "^0.1.0",
"@atproto/uri": "^0.0.2",
"@atproto/xrpc-server": "^0.2.0",
"@atproto/identity": "^0.2.1",
"@atproto/lexicon": "^0.2.2",
"@atproto/repo": "^0.3.2",
"@atproto/syntax": "^0.1.2",
"@atproto/xrpc-server": "^0.3.2",
"better-sqlite3": "^8.3.0",
"dotenv": "^16.0.3",
"es6-promise-pool": "^2.5.0",
"express": "^4.18.2",
"kysely": "^0.22.0",
"multiformats": "^9.9.0",
Expand All @@ -29,7 +29,6 @@
"devDependencies": {
"@types/better-sqlite3": "^7.6.4",
"@types/express": "^4.17.17",
"@types/memcached": "^2.2.7",
"@types/node": "^20.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
Expand Down
2 changes: 1 addition & 1 deletion src/auth.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import express from 'express'
import { verifyJwt, AuthRequiredError } from '@atproto/xrpc-server'
import { DidResolver } from '@atproto/did-resolver'
import { DidResolver } from '@atproto/identity'

export const validateAuth = async (
req: express.Request,
Expand Down
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Database } from './db'
import { DidResolver } from '@atproto/did-resolver'
import { DidResolver } from '@atproto/identity'

export type AppContext = {
db: Database
Expand Down
663 changes: 543 additions & 120 deletions src/lexicon/index.ts

Large diffs are not rendered by default.

Loading