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

Ft/update packages #210

Merged
merged 4 commits into from
Oct 29, 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: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

## 2.xx

### 2.4.1
### 2.5.0
- Support for Ory Kratos v1.3.1
- Dark-mode
- use node 22 for build
- change typescript target from `es5` to `es2023`

### 2.4.0
- Add Search Box for Identity Filtering by @dhia-gharsallaoui in https://github.com/dfoxg/kratos-admin-ui/pull/193
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ services:
networks:
- intranet
admin_ui:
image: ghcr.io/dfoxg/kratos-admin-ui:v2.4.1
image: ghcr.io/dfoxg/kratos-admin-ui:v2.5.0
ports:
- '80:8080'
restart: unless-stopped
Expand Down
2 changes: 1 addition & 1 deletion kratos-admin-ui/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine as build
FROM node:22-alpine as build
WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
COPY package.json ./
Expand Down
268 changes: 146 additions & 122 deletions kratos-admin-ui/package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions kratos-admin-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{
"name": "kratos-admin-ui",
"version": "2.4.1",
"version": "2.5.0",
"private": true,
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@fluentui/react-components": "9.55.1",
"@fluentui/react-icons": "2.0.263",
"@ory/kratos-client": "1.2.1",
Expand All @@ -15,12 +14,13 @@
"typescript": "5.6.3"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@testing-library/dom": "^10.3.2",
"@testing-library/jest-dom": "6.6.2",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.14",
"@types/node": "20.17.3",
"@types/node": "22.8.4",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-router-dom": "5.3.3",
Expand Down
2 changes: 1 addition & 1 deletion kratos-admin-ui/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export async function getKratosConfig() {
export async function getKratosAdminConfig() {
const configJSON = await loadConfig();
return {
version: "2.4.1",
version: "2.5.0",
supportedVersion: "v1.3.1",
kratosAdminURL: configJSON.kratosAdminURL,
kratosPublicURL: configJSON.kratosPublicURL,
Expand Down
2 changes: 1 addition & 1 deletion kratos-admin-ui/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es5",
"target": "es2023",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
Expand Down