feat: Upgrade core dependencies and regenerate documentation#856
Merged
gyaneshgouraw-okta merged 12 commits intomainfrom Jul 17, 2025
Merged
feat: Upgrade core dependencies and regenerate documentation#856gyaneshgouraw-okta merged 12 commits intomainfrom
gyaneshgouraw-okta merged 12 commits intomainfrom
Conversation
gyaneshgouraw-okta
approved these changes
Jul 17, 2025
This was referenced Jul 17, 2025
gyaneshgouraw-okta
pushed a commit
that referenced
this pull request
Sep 17, 2025
### Key Changes:
* **Dependency Upgrades:** Core packages have been updated to their
latest versions, including:
* `@auth0/auth0-spa-js` to `^2.2.0`
* `typescript` to `^5.8.3`
* `typedoc` to `^0.28.7`
* `react` and `react-dom` to `^19.1.0`
* Testing libraries like `jest` and `@testing-library/*`
* Linting tools like `@typescript-eslint/*` to `^8.x`
* **Documentation Regeneration:** As a result of the `typedoc` upgrade,
the entire `/docs` directory has been regenerated. This brings in a
modern theme, an improved structure, and new features like a hierarchy
view for better API exploration.
* **Enhanced Type Safety:** The project's `tsconfig.json` has been
configured with stricter type-checking rules, including
`exactOptionalPropertyTypes` and `noUncheckedIndexedAccess`. The
codebase has been updated to conform to these rules, leading to more
precise and safer type definitions.
* **Code Modernization:** The codebase has been refactored to use modern
JavaScript syntax, such as nullish coalescing (`??`) and optional
chaining (`?.`).
* **Test Suite Improvements:**
* Comprehensive unit tests have been added for an internal utility
function.
* Asynchronous tests have been updated to correctly use `await act()`,
ensuring more stable and reliable test execution.
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.
Key Changes:
Dependency Upgrades: Core packages have been updated to their latest versions, including:
@auth0/auth0-spa-jsto^2.2.0typescriptto^5.8.3typedocto^0.28.7reactandreact-domto^19.1.0jestand@testing-library/*@typescript-eslint/*to^8.xDocumentation Regeneration: As a result of the
typedocupgrade, the entire/docsdirectory has been regenerated. This brings in a modern theme, an improved structure, and new features like a hierarchy view for better API exploration.Enhanced Type Safety: The project's
tsconfig.jsonhas been configured with stricter type-checking rules, includingexactOptionalPropertyTypesandnoUncheckedIndexedAccess. The codebase has been updated to conform to these rules, leading to more precise and safer type definitions.Code Modernization: The codebase has been refactored to use modern JavaScript syntax, such as nullish coalescing (
??) and optional chaining (?.).Test Suite Improvements:
await act(), ensuring more stable and reliable test execution.