···11----
22-'@atcute/oauth-node-client': minor
33-'@atcute/oauth-types': patch
44----
55-66-public client support
+11
packages/oauth/node-client/CHANGELOG.md
···11# @atcute/oauth-node-client
2233+## 1.1.0
44+55+### Minor Changes
66+77+- 0463193: public client support
88+99+### Patch Changes
1010+1111+- Updated dependencies [0463193]
1212+ - @atcute/oauth-types@0.1.1
1313+314## 1.0.0
415516### Major Changes
+4-4
packages/oauth/node-client/README.md
···4455supports both:
6677-- **confidential clients** - authenticate with `private_key_jwt`, longer session lifetimes (up to 180
88- days), requires key management and hosted metadata
77+- **confidential clients** - authenticate with `private_key_jwt`, longer session lifetimes (up to
88+ 180 days), requires key management and hosted metadata
99- **public clients** - no authentication (`token_endpoint_auth_method: 'none'`), shorter sessions (2
1010 weeks max), simpler setup for CLI tools and local development
1111···308308```
309309310310loopback redirect URIs must use `127.0.0.1` or `[::1]` (not `localhost`). the port can be any
311311-available port - authorization servers ignore the port when matching loopback redirect URIs per RFC
312312-8252.
311311+available port - authorization servers ignore the port when matching loopback redirect URIs per
312312+RFC 8252.
313313314314see the [node-client-public-example](../node-client-public-example) package for a complete CLI
315315example.
+1-1
packages/oauth/node-client/package.json
···11{
22 "name": "@atcute/oauth-node-client",
33- "version": "1.0.0",
33+ "version": "1.1.0",
44 "description": "atproto OAuth client for Node.js and other server runtimes",
55 "license": "0BSD",
66 "repository": {
+7
packages/oauth/types/CHANGELOG.md
···11+# @atcute/oauth-types
22+33+## 0.1.1
44+55+### Patch Changes
66+77+- 0463193: public client support
+1-1
packages/oauth/types/package.json
···11{
22 "name": "@atcute/oauth-types",
33- "version": "0.1.0",
33+ "version": "0.1.1",
44 "description": "OAuth types and schemas for AT Protocol",
55 "license": "0BSD",
66 "repository": {