@better-auth/sso 1.4.4 → 1.4.5
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/.turbo/turbo-build.log +3 -3
- package/package.json +7 -6
- package/src/saml.test.ts +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
|
-
> @better-auth/sso@1.4.
|
|
2
|
+
> @better-auth/sso@1.4.5 build /home/runner/work/better-auth/better-auth/packages/sso
|
|
3
3
|
> tsdown
|
|
4
4
|
|
|
5
|
-
[34mℹ[39m tsdown [2mv0.16.
|
|
5
|
+
[34mℹ[39m tsdown [2mv0.16.6[22m powered by rolldown [2mv1.0.0-beta.51[22m
|
|
6
6
|
[34mℹ[39m Using tsdown config: [4m/home/runner/work/better-auth/better-auth/packages/sso/tsdown.config.ts[24m
|
|
7
7
|
[34mℹ[39m entry: [34msrc/index.ts, src/client.ts[39m
|
|
8
8
|
[34mℹ[39m tsconfig: [34mtsconfig.json[39m
|
|
@@ -13,4 +13,4 @@
|
|
|
13
13
|
[34mℹ[39m [2mdist/[22m[32m[1mindex.d.mts[22m[39m [2m 0.21 kB[22m [2m│ gzip: 0.15 kB[22m
|
|
14
14
|
[34mℹ[39m [2mdist/[22m[32mindex-D-JmJR9N.d.mts[39m [2m25.42 kB[22m [2m│ gzip: 3.95 kB[22m
|
|
15
15
|
[34mℹ[39m 5 files, total: 84.77 kB
|
|
16
|
-
[32m✔[39m Build complete in [
|
|
16
|
+
[32m✔[39m Build complete in [32m11028ms[39m
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@better-auth/sso",
|
|
3
3
|
"author": "Bereket Engida",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.5",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.mjs",
|
|
7
7
|
"homepage": "https://www.better-auth.com/docs/plugins/sso",
|
|
@@ -60,18 +60,19 @@
|
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@types/body-parser": "^1.19.6",
|
|
62
62
|
"@types/express": "^5.0.5",
|
|
63
|
-
"better-call": "1.1.
|
|
64
|
-
"body-parser": "^2.2.
|
|
63
|
+
"better-call": "1.1.4",
|
|
64
|
+
"body-parser": "^2.2.1",
|
|
65
65
|
"express": "^5.1.0",
|
|
66
|
-
"oauth2-mock-server": "^
|
|
66
|
+
"oauth2-mock-server": "^8.2.0",
|
|
67
67
|
"tsdown": "^0.16.0",
|
|
68
|
-
"better-auth": "1.4.
|
|
68
|
+
"better-auth": "1.4.5"
|
|
69
69
|
},
|
|
70
70
|
"peerDependencies": {
|
|
71
|
-
"better-auth": "1.4.
|
|
71
|
+
"better-auth": "1.4.5"
|
|
72
72
|
},
|
|
73
73
|
"scripts": {
|
|
74
74
|
"test": "vitest",
|
|
75
|
+
"lint:package": "publint run --strict",
|
|
75
76
|
"build": "tsdown",
|
|
76
77
|
"dev": "tsdown --watch",
|
|
77
78
|
"typecheck": "tsc --project tsconfig.json"
|
package/src/saml.test.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { randomUUID } from "node:crypto";
|
|
2
|
+
import type { createServer } from "node:http";
|
|
1
3
|
import { betterFetch } from "@better-fetch/fetch";
|
|
2
4
|
import { betterAuth } from "better-auth";
|
|
3
5
|
import { memoryAdapter } from "better-auth/adapters/memory";
|
|
@@ -6,14 +8,12 @@ import { setCookieToHeader } from "better-auth/cookies";
|
|
|
6
8
|
import { bearer } from "better-auth/plugins";
|
|
7
9
|
import { getTestInstance } from "better-auth/test";
|
|
8
10
|
import bodyParser from "body-parser";
|
|
9
|
-
import { randomUUID } from "crypto";
|
|
10
11
|
import type {
|
|
11
12
|
Application as ExpressApp,
|
|
12
13
|
Request as ExpressRequest,
|
|
13
14
|
Response as ExpressResponse,
|
|
14
15
|
} from "express";
|
|
15
16
|
import express from "express";
|
|
16
|
-
import type { createServer } from "http";
|
|
17
17
|
import * as saml from "samlify";
|
|
18
18
|
import {
|
|
19
19
|
afterAll,
|