Skip to content

deps(admin-ui)(deps): Bump @types/jest from 27.5.2 to 30.0.0 in /admin-ui#12

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/admin-ui/types/jest-30.0.0
Open

deps(admin-ui)(deps): Bump @types/jest from 27.5.2 to 30.0.0 in /admin-ui#12
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/admin-ui/types/jest-30.0.0

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 5, 2026

Bumps @types/jest from 27.5.2 to 30.0.0.

Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Feb 5, 2026

Labels

The following labels could not be found: admin-ui, automated, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

tapas100 added a commit that referenced this pull request Feb 5, 2026
Add enterprise-grade SAML authentication to FlexGate via Einstrust integration.

## Features Added

### Backend Authentication Module (src/auth/)
- Einstrust API client with SSO/callback/validation/logout
- In-memory session cache with TTL and LRU eviction
- Authentication middleware with RBAC support
- TypeScript types for all auth interfaces
- Health checks and cache statistics

### API Endpoints (routes/auth.ts)
- POST /api/auth/saml/initiate - Start SSO login
- POST /api/auth/saml/callback - Handle SAML response
- GET /api/auth/session - Validate session
- POST /api/auth/logout - Logout with SLO support
- GET /api/auth/metadata/:tenantId? - SP metadata
- GET /api/auth/cache/stats - Cache statistics (admin)
- POST /api/auth/cache/clear - Clear cache (admin)
- GET /api/auth/status - Auth system status

### Frontend Updates (admin-ui/)
- Enhanced auth service with SSO methods
- initiateSSOLogin() for SSO initiation
- handleSSOCallback() for SAML processing
- logoutWithSLO() for Single Logout

### Documentation
- EINSTRUST_INTEGRATION.md - Complete integration guide (1,050+ lines)
- EINSTRUST_INTEGRATION_SUMMARY.md - Implementation summary
- EINSTRUST_TODO.md - Step-by-step checklist for completion

## Architecture

FlexGate → Einstrust API → Identity Provider (Okta/Azure AD/etc)
             ↓
        Session Cache (TTL-based, LRU eviction)
             ↓
        Authentication Middleware (RBAC)

## Performance
- Session caching reduces API calls by 80%+
- Configurable TTL (default 5 minutes)
- LRU cache eviction (max 1000 sessions)
- Automatic cleanup of expired sessions

## Security
- Bearer token authentication
- Role-based access control
- Session expiration handling
- CSRF protection via RelayState
- Audit logging
- Secure error handling

## Statistics
- 10 files created/modified
- ~1,400 lines of production code
- 8 new API endpoints
- 15+ TypeScript interfaces
- Comprehensive documentation

## Next Steps
1. Initialize auth in app.ts
2. Create Admin UI SSO components (LoginPage, SSOCallback)
3. Configure environment variables
4. Test with Einstrust mock IdP
5. Deploy to production

## Breaking Changes
None - SSO is opt-in via environment variables

## Related
- Einstrust Repo: https://github.com/tapas100/einstrust
- Einstrust PR #12: tapas100/einstrust#12
tapas100 added a commit that referenced this pull request Feb 5, 2026
- Add SSOCallback component for handling SAML responses
- Update Login page with Enterprise SSO button
- Mount auth routes in app.ts
- Fix auth service return type for SSO callback
- Add routing for /auth/callback
- Configure environment variables for Einstrust

Integration Details:
- Backend: Complete (10 files, 8 endpoints)
- Frontend: Complete (5 components updated)
- Authentication: Opt-in via EINSTRUST_API_URL env var
- Session management: 5-minute cache TTL
- Ready for production testing

Related: Einstrust PR #12 (feature/saml-integration)
tapas100 added a commit that referenced this pull request Feb 5, 2026
Add enterprise-grade SAML authentication to FlexGate via Einstrust integration.

## Features Added

### Backend Authentication Module (src/auth/)
- Einstrust API client with SSO/callback/validation/logout
- In-memory session cache with TTL and LRU eviction
- Authentication middleware with RBAC support
- TypeScript types for all auth interfaces
- Health checks and cache statistics

### API Endpoints (routes/auth.ts)
- POST /api/auth/saml/initiate - Start SSO login
- POST /api/auth/saml/callback - Handle SAML response
- GET /api/auth/session - Validate session
- POST /api/auth/logout - Logout with SLO support
- GET /api/auth/metadata/:tenantId? - SP metadata
- GET /api/auth/cache/stats - Cache statistics (admin)
- POST /api/auth/cache/clear - Clear cache (admin)
- GET /api/auth/status - Auth system status

### Frontend Updates (admin-ui/)
- Enhanced auth service with SSO methods
- initiateSSOLogin() for SSO initiation
- handleSSOCallback() for SAML processing
- logoutWithSLO() for Single Logout

### Documentation
- EINSTRUST_INTEGRATION.md - Complete integration guide (1,050+ lines)
- EINSTRUST_INTEGRATION_SUMMARY.md - Implementation summary
- EINSTRUST_TODO.md - Step-by-step checklist for completion

## Architecture

FlexGate → Einstrust API → Identity Provider (Okta/Azure AD/etc)
             ↓
        Session Cache (TTL-based, LRU eviction)
             ↓
        Authentication Middleware (RBAC)

## Performance
- Session caching reduces API calls by 80%+
- Configurable TTL (default 5 minutes)
- LRU cache eviction (max 1000 sessions)
- Automatic cleanup of expired sessions

## Security
- Bearer token authentication
- Role-based access control
- Session expiration handling
- CSRF protection via RelayState
- Audit logging
- Secure error handling

## Statistics
- 10 files created/modified
- ~1,400 lines of production code
- 8 new API endpoints
- 15+ TypeScript interfaces
- Comprehensive documentation

## Next Steps
1. Initialize auth in app.ts
2. Create Admin UI SSO components (LoginPage, SSOCallback)
3. Configure environment variables
4. Test with Einstrust mock IdP
5. Deploy to production

## Breaking Changes
None - SSO is opt-in via environment variables

## Related
- Einstrust Repo: https://github.com/tapas100/einstrust
- Einstrust PR #12: tapas100/einstrust#12
tapas100 added a commit that referenced this pull request Feb 5, 2026
- Add SSOCallback component for handling SAML responses
- Update Login page with Enterprise SSO button
- Mount auth routes in app.ts
- Fix auth service return type for SSO callback
- Add routing for /auth/callback
- Configure environment variables for Einstrust

Integration Details:
- Backend: Complete (10 files, 8 endpoints)
- Frontend: Complete (5 components updated)
- Authentication: Opt-in via EINSTRUST_API_URL env var
- Session management: 5-minute cache TTL
- Ready for production testing

Related: Einstrust PR #12 (feature/saml-integration)
…n-ui

Dependabot couldn't find the original pull request head commit, 7ddf068.
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/admin-ui/types/jest-30.0.0 branch from 7ddf068 to 202b2df Compare February 23, 2026 10:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants