Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #392

Merged
merged 5 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### Build
FROM node:22.2.0-alpine3.20 AS build
FROM node:22.11.0-alpine3.20 AS build
ENV NO_UPDATE_NOTIFIER=true

USER node
Expand All @@ -13,7 +13,7 @@ RUN npm run build


### Deployment
FROM node:22.2.0-alpine3.20 AS deployment
FROM node:22.11.0-alpine3.20 AS deployment

ENV NO_UPDATE_NOTIFIER=true

Expand Down
7 changes: 5 additions & 2 deletions cfg/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@
"minUsernameLength": 8,
"maxUsernameLength": 40,
"passwordComplexityMinScore": 3,
"passwordMinLength": 12
"passwordMinLength": 12,
"passwordHistoryEnabled": true,
"passwordHistorySize": 3,
"passwordHistoryEnforcement": false
},
"logger": {
"console": {
Expand Down Expand Up @@ -423,4 +426,4 @@
"users": "./data/seed_data/seed-accounts.json",
"roles": "./data/seed_data/seed-roles.json"
}
}
}
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ A microservice for identity management.
* Password recovery as self-service
* Un-registration as self-service
* Customizable, optional email notifications to drive processes
* Token management service
* Access token management service
* Authentication log audit log

[#configuration]
Expand Down
22 changes: 22 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// @ts-check

import eslint from '@eslint/js';
import { RuleTester } from 'eslint';
import tseslint from 'typescript-eslint';

const rules = tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
);

rules.push(
{
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off",
"prefer-rest-params": "off",
}
}
);

export default rules;
Loading
Loading