Merged
Conversation
- Remove eslint config from next.config.js (no longer supported) - Add turbopack config for Next.js 16 default bundler - Migrate middleware.ts to proxy.ts (new Next.js 16 convention) - Remove deprecated loadFeatures function with dynamic imports - Remove unused @next/font dependency - Update package dependencies for compatibility
- Exclude story files from TypeScript build in tsconfig.json - Fix motion/framer-motion ease type errors with 'as const' assertions - Change onInput to onChange in DIDSearchPanel for correct event types - Rename filter property to ruleFilter to avoid Node.js stream conflict - Scope ajv override to schema-utils to fix ESLint compatibility
Update getIssuerFromEnv to read OIDC_PROVIDER_{NAME}_ISSUER directly
from environment via EnvConfigGateway instead of deriving it from the
authorization URL. Also makes ISSUER a required field in env-generator.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several dependency updates, minor code improvements, and a new method for OIDC provider issuer retrieval. The most significant changes are grouped below:
Dependency Updates:
nextto version16.1.6and@storybook/nextjsto version7.0.14inpackage.json, and removed the deprecated@next/fontdependency. [1] [2] [3]schema-utilsto specify versions forajvandajv-keywordsinpackage.json.Code Quality and Type Safety:
'easeInOut' as constand similar type assertions for better type safety with Framer Motion. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20]Feature Addition:
oidcProviderIssuer(providerName: string): Promise<string | undefined>toEnvConfigGatewayOutputPortfor retrieving OIDC provider issuer URLs.getIssuerFromEnvusage inauth.config.tsto beawaited for asynchronous issuer retrieval.Minor API Improvements:
DIDSearchPanelfromonInputtoonChangefor better React compatibility. [1] [2]These changes improve dependency management, type safety, and OIDC provider support in the codebase.