@absolutejs/auth 0.84.0 → 0.85.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.
- package/CHANGELOG.md +11 -0
- package/changelog.json +26 -0
- package/dist/bun.js +27 -1
- package/dist/bun.js.map +3 -3
- package/dist/cli/migrate.js +27 -1
- package/dist/cli/migrate.js.map +3 -3
- package/dist/cli/setup.d.ts +1 -1
- package/dist/htmx/index.js +27 -1
- package/dist/htmx/index.js.map +3 -3
- package/dist/index.js +27 -1
- package/dist/index.js.map +3 -3
- package/dist/linkedProviders/index.js +27 -1
- package/dist/linkedProviders/index.js.map +3 -3
- package/dist/providers/clients.d.ts +28 -3
- package/dist/providers/index.js +28 -28
- package/dist/providers/index.js.map +4 -4
- package/dist/providers/neon.d.ts +27 -27
- package/dist/server.js +27 -1
- package/dist/server.js.map +3 -3
- package/docs/neon.md +12 -5
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,17 @@ This file is generated by `absolute-changelog` from the entries in
|
|
|
6
6
|
`changelog/`. Edit an entry, not this file — and add new ones under
|
|
7
7
|
`changelog/unreleased/`.
|
|
8
8
|
|
|
9
|
+
## 0.85.0 — 2026-09-23
|
|
10
|
+
|
|
11
|
+
### Breaking
|
|
12
|
+
|
|
13
|
+
- **Use the native Citra Neon provider for Auth configuration and linked-account refresh** (`createNeonProviderConfiguration`, `neonProviderConfiguration`)
|
|
14
|
+
_Migration:_ Move createNeonProviderConfiguration results from customProviders.neon to providersConfiguration.neon. Neon is now a built-in Citra provider; credentials, scopes and offlineAccess inputs are unchanged.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- **Include Neon in the typed built-in provider registry and configuration resolution** (`buildClientProviders`, `resolveProviderClientConfiguration`)
|
|
19
|
+
|
|
9
20
|
## 0.84.0 — 2026-09-23
|
|
10
21
|
|
|
11
22
|
### Added
|
package/changelog.json
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
2
2
|
"contract": 1,
|
|
3
3
|
"name": "@absolutejs/auth",
|
|
4
4
|
"releases": [
|
|
5
|
+
{
|
|
6
|
+
"changes": [
|
|
7
|
+
{
|
|
8
|
+
"kind": "changed",
|
|
9
|
+
"summary": "Include Neon in the typed built-in provider registry and configuration resolution",
|
|
10
|
+
"symbols": [
|
|
11
|
+
"buildClientProviders",
|
|
12
|
+
"resolveProviderClientConfiguration"
|
|
13
|
+
]
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"kind": "breaking",
|
|
17
|
+
"migration": {
|
|
18
|
+
"instruction": "Move createNeonProviderConfiguration results from customProviders.neon to providersConfiguration.neon. Neon is now a built-in Citra provider; credentials, scopes and offlineAccess inputs are unchanged.",
|
|
19
|
+
"manual": true
|
|
20
|
+
},
|
|
21
|
+
"summary": "Use the native Citra Neon provider for Auth configuration and linked-account refresh",
|
|
22
|
+
"symbols": [
|
|
23
|
+
"createNeonProviderConfiguration",
|
|
24
|
+
"neonProviderConfiguration"
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"date": "2026-09-23",
|
|
29
|
+
"version": "0.85.0"
|
|
30
|
+
},
|
|
5
31
|
{
|
|
6
32
|
"changes": [
|
|
7
33
|
{
|
package/dist/bun.js
CHANGED
|
@@ -13754,6 +13754,32 @@ var providers = defineProviders({
|
|
|
13754
13754
|
url: "https://nid.naver.com/oauth2.0/token"
|
|
13755
13755
|
}
|
|
13756
13756
|
},
|
|
13757
|
+
neon: {
|
|
13758
|
+
authorizationUrl: "https://oauth2.neon.tech/oauth2/auth",
|
|
13759
|
+
isOIDC: true,
|
|
13760
|
+
isRefreshable: true,
|
|
13761
|
+
PKCEMethod: "S256",
|
|
13762
|
+
profileRequest: {
|
|
13763
|
+
authIn: "header",
|
|
13764
|
+
encoding: "application/json",
|
|
13765
|
+
method: "GET",
|
|
13766
|
+
url: "https://oauth2.neon.tech/userinfo"
|
|
13767
|
+
},
|
|
13768
|
+
revocationRequest: {
|
|
13769
|
+
authIn: "body",
|
|
13770
|
+
encoding: "application/x-www-form-urlencoded",
|
|
13771
|
+
tokenParamName: "token",
|
|
13772
|
+
url: "https://oauth2.neon.tech/oauth2/revoke"
|
|
13773
|
+
},
|
|
13774
|
+
scopeRequired: true,
|
|
13775
|
+
subject: ["sub"],
|
|
13776
|
+
subjectType: "string",
|
|
13777
|
+
tokenRequest: {
|
|
13778
|
+
authIn: "body",
|
|
13779
|
+
encoding: "application/x-www-form-urlencoded",
|
|
13780
|
+
url: "https://oauth2.neon.tech/oauth2/token"
|
|
13781
|
+
}
|
|
13782
|
+
},
|
|
13757
13783
|
notion: {
|
|
13758
13784
|
authorizationUrl: "https://api.notion.com/v1/oauth/authorize",
|
|
13759
13785
|
email: ["bot", "owner", "user", "person", "email"],
|
|
@@ -18074,5 +18100,5 @@ export {
|
|
|
18074
18100
|
runBunMigrations
|
|
18075
18101
|
};
|
|
18076
18102
|
|
|
18077
|
-
//# debugId=
|
|
18103
|
+
//# debugId=9FFA32330DB0997464756E2164756E21
|
|
18078
18104
|
//# sourceMappingURL=bun.js.map
|