@marxbiotech/signet-integration 0.1.1 → 0.1.2
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/README.md +18 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -109,3 +109,21 @@ issues), `startJwksServer()`, `FIXTURE_OPTIONS` and `FIXTURE_DEVELOPMENT_PROFILE
|
|
|
109
109
|
- `iat` is not required and no `maxTokenAge` is applied; `client_id` is required (RFC 9068 §2.2, Signet issues it always).
|
|
110
110
|
- JWKS options are fixed: 3 s timeout, 30 s cooldown, 10 min cache.
|
|
111
111
|
- The guard's decision log line is `metric reason <your logFields> clientId environment`; the fixed keys are reserved.
|
|
112
|
+
|
|
113
|
+
## Development and release
|
|
114
|
+
|
|
115
|
+
```sh
|
|
116
|
+
pnpm install
|
|
117
|
+
pnpm lint && pnpm typecheck && pnpm test && pnpm build
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
Releases are cut by tag. Write the `CHANGELOG.md` entry, bump `version` in
|
|
121
|
+
`package.json` on `main`, then push the matching tag:
|
|
122
|
+
|
|
123
|
+
```sh
|
|
124
|
+
git tag v0.1.2 && git push origin v0.1.2
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
`.github/workflows/publish.yml` refuses a tag that does not equal
|
|
128
|
+
`v<package.json version>`, runs lint, tests and build, and publishes with npm
|
|
129
|
+
trusted publishing (OIDC). Nothing is published from a developer machine.
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marxbiotech/signet-integration",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Signet (OAuth 2.1 / OIDC) resource-server integration for NestJS: Bearer verification, RFC 6750 challenges, RFC 9728 metadata, deployment profile.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/
|
|
9
|
-
"directory": "packages/signet-integration"
|
|
8
|
+
"url": "git+https://github.com/marxbiobuilder/signet-integration.git"
|
|
10
9
|
},
|
|
11
10
|
"publishConfig": {
|
|
12
11
|
"access": "public",
|
|
13
12
|
"registry": "https://registry.npmjs.org"
|
|
14
13
|
},
|
|
14
|
+
"packageManager": "pnpm@9.1.1",
|
|
15
15
|
"main": "dist/index.js",
|
|
16
16
|
"types": "dist/index.d.ts",
|
|
17
17
|
"exports": {
|