atproto_auth 0.1.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08926445ef54c28c9bc2a53020b757fc00b713ee3dc727904d70716c0838990c'
4
- data.tar.gz: 01e90659b36f0ae44ea4b23333677ff15ba0da41532d429405a70c4bf6102055
3
+ metadata.gz: 34848fb624a69ebaedbfaa4638d334e5d493ca0329659cb79ddeaaebb32080b3
4
+ data.tar.gz: 7daba6d6bcbd6b0bd3042d8001e923c1a389b29d3c70a59e80b45378a979ad12
5
5
  SHA512:
6
- metadata.gz: ae789a761c830082d70a21307165914c413b5a5b64043eeaf321ffeefe359b7c83f6f3cdf12264c0cab2fae9f709654cecc01b849ca022b87a97d82f7cbb9855
7
- data.tar.gz: c69972fe73bb865280ec9a3f631827f34b9116bbc8e2e00c8fb7dcec61037ff6f40969778273f3d82031ee13dd3e98327a2580ebd1f95c84e4533312ecfb9076
6
+ metadata.gz: c2bf779a0a19495712be8bf24a98c6839cfffa875c048826265b7b6159a020c64e3b4b5e99b0ee4b17a0499a6433f364bc2af7c6468c21513577b2e4a43fee84
7
+ data.tar.gz: e586a0e6ecf2b3f2df3936ad50b24076da93a64149f118a14abb980735ea58e491aeb2d86df51a398434d4246f37f18ba38e61024776694e2745b62d3524f080
data/.rubocop.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  AllCops:
2
2
  NewCops: enable
3
3
  SuggestExtensions: false
4
- TargetRubyVersion: 3.0
4
+ TargetRubyVersion: 3.3
5
5
 
6
6
  Metrics/BlockLength:
7
7
  Enabled: false
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.2.0] - 2024-12-10
8
+ ### Added
9
+ - Client#handle_callback now returns session did as part of the response
10
+
7
11
  ## [0.1.0] - 2024-12-07
8
12
 
9
13
  ### Added
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  [![Ruby Style Guide](https://img.shields.io/badge/code_style-rubocop-blue.svg)](https://github.com/rubocop/rubocop)
5
5
  [![Documentation](https://img.shields.io/badge/docs-rdoc-blue.svg)](https://www.rubydoc.info/gems/atproto_auth)
6
6
 
7
- A Ruby implementation of the [AT Protocol OAuth specification](https://docs.bsky.app/docs/advanced-guides/oauth-client). This library provides support for both client and server-side implementations, with built-in security features including [DPoP](https://datatracker.ietf.org/doc/html/rfc9449), [PAR](https://datatracker.ietf.org/doc/html/rfc9126), and dynamic client registration.
7
+ A Ruby implementation of the [AT Protocol OAuth specification](https://atproto.com/specs/oauth). This library provides support for both client and server-side implementations, with built-in security features including [DPoP](https://datatracker.ietf.org/doc/html/rfc9449), [PAR](https://datatracker.ietf.org/doc/html/rfc9126), and dynamic client registration.
8
8
 
9
9
  ## Features
10
10
 
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- atproto_auth (0.1.1)
4
+ atproto_auth (0.2.0)
5
5
  jose (~> 1.2)
6
6
  jwt (~> 2.9)
7
7
  redis (~> 5.3)
@@ -137,7 +137,8 @@ module AtprotoAuth
137
137
  expires_in: (token_set.expires_at - Time.now).to_i,
138
138
  refresh_token: token_set.refresh_token,
139
139
  scope: token_set.scope,
140
- session_id: session.session_id
140
+ session_id: session.session_id,
141
+ did: session.did
141
142
  }
142
143
  end
143
144
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AtprotoAuth
4
- VERSION = "0.1.1"
4
+ VERSION = "0.2.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atproto_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Huckabee
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-12-07 00:00:00.000000000 Z
11
+ date: 2024-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jose