a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
101
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: bump versions

Mary 691edf66 69888501

+24 -12
-6
.changeset/plain-socks-itch.md
··· 1 - --- 2 - '@atcute/oauth-node-client': minor 3 - '@atcute/oauth-types': patch 4 - --- 5 - 6 - public client support
+11
packages/oauth/node-client/CHANGELOG.md
··· 1 1 # @atcute/oauth-node-client 2 2 3 + ## 1.1.0 4 + 5 + ### Minor Changes 6 + 7 + - 0463193: public client support 8 + 9 + ### Patch Changes 10 + 11 + - Updated dependencies [0463193] 12 + - @atcute/oauth-types@0.1.1 13 + 3 14 ## 1.0.0 4 15 5 16 ### Major Changes
+4 -4
packages/oauth/node-client/README.md
··· 4 4 5 5 supports both: 6 6 7 - - **confidential clients** - authenticate with `private_key_jwt`, longer session lifetimes (up to 180 8 - days), requires key management and hosted metadata 7 + - **confidential clients** - authenticate with `private_key_jwt`, longer session lifetimes (up to 8 + 180 days), requires key management and hosted metadata 9 9 - **public clients** - no authentication (`token_endpoint_auth_method: 'none'`), shorter sessions (2 10 10 weeks max), simpler setup for CLI tools and local development 11 11 ··· 308 308 ``` 309 309 310 310 loopback redirect URIs must use `127.0.0.1` or `[::1]` (not `localhost`). the port can be any 311 - available port - authorization servers ignore the port when matching loopback redirect URIs per RFC 312 - 8252. 311 + available port - authorization servers ignore the port when matching loopback redirect URIs per 312 + RFC 8252. 313 313 314 314 see the [node-client-public-example](../node-client-public-example) package for a complete CLI 315 315 example.
+1 -1
packages/oauth/node-client/package.json
··· 1 1 { 2 2 "name": "@atcute/oauth-node-client", 3 - "version": "1.0.0", 3 + "version": "1.1.0", 4 4 "description": "atproto OAuth client for Node.js and other server runtimes", 5 5 "license": "0BSD", 6 6 "repository": {
+7
packages/oauth/types/CHANGELOG.md
··· 1 + # @atcute/oauth-types 2 + 3 + ## 0.1.1 4 + 5 + ### Patch Changes 6 + 7 + - 0463193: public client support
+1 -1
packages/oauth/types/package.json
··· 1 1 { 2 2 "name": "@atcute/oauth-types", 3 - "version": "0.1.0", 3 + "version": "0.1.1", 4 4 "description": "OAuth types and schemas for AT Protocol", 5 5 "license": "0BSD", 6 6 "repository": {