-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: added changelogs for Docs * feat: added docs changelogs * feat: added the logs for the 2024 * feat: updated changelogs for november * feat: updated changelogs for november * feat: add logs for each month that are more detailed with code snippets * feat: cleaned up all docs based on catherines realistic feedback * feat: removed extraneous changelogs * feat: removed extraneous changelogs * feat: cleaned up based on andrews feedback * feat: cleaned up all hallucinated code --------- Co-authored-by: Kapil Gowru <[email protected]> Co-authored-by: Kapil Gowru <[email protected]>
- Loading branch information
1 parent
b181382
commit 06aad51
Showing
8 changed files
with
7 additions
and
148 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,13 @@ | ||
# August 2024 | ||
|
||
## Anchor Link System | ||
Redesigned anchor link handling for improved navigation within documentation pages. Links now account for fixed headers and maintain proper scroll position. | ||
|
||
```typescript | ||
const anchorConfig = { | ||
offset: 100, | ||
smooth: true, | ||
behavior: 'auto', | ||
preserveHash: true | ||
} | ||
``` | ||
Redesigned anchor link handling for improved navigation within documentation pages. Links now account for fixed headers and maintain proper scroll position when opened. | ||
|
||
## WCAG Contrast Improvements | ||
Enhanced color contrast throughout the documentation platform for better accessibility. All text and interactive elements now meet WCAG AA standards. | ||
|
||
```css | ||
:root { | ||
--text-primary: #1a1a1a; | ||
--text-secondary: #4a4a4a; | ||
--link-color: #0056b3; | ||
--code-inline: #bf1363; | ||
} | ||
|
||
[data-theme='dark'] { | ||
--text-primary: #ffffff; | ||
--text-secondary: #e0e0e0; | ||
--link-color: #66b3ff; | ||
--code-inline: #ff6b9d; | ||
} | ||
``` | ||
Enhanced color contrast throughout the documentation platform for better accessibility. All text and interactive elements now meet WCAG AA standards by default and warnings are shown for any elements that do not meet WCAG AA standards. | ||
|
||
## API Page Center Updates | ||
Improved center element positioning and updates for API documentation pages. Content now flows more naturally and maintains position during navigation. | ||
|
||
```typescript | ||
const centerElementConfig = { | ||
updateThreshold: 0.2, | ||
scrollBehavior: 'smooth', | ||
debounceTime: 100 | ||
} | ||
``` | ||
|
||
## Streaming Toggle Enhancement | ||
Improved visibility and behavior of streaming response toggles in API playground. Users can now better control and monitor streaming responses. |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,11 @@ | ||
# October 2024 | ||
|
||
## JWT API Key Integration | ||
Implemented automatic API key extraction from JWT tokens in the documentation playground. Users can now test authenticated endpoints more easily with automatic credential handling. | ||
|
||
```typescript | ||
const jwtConfig = { | ||
extractApiKey: true, | ||
tokenLocation: 'header', | ||
autoRefresh: true, | ||
schema: { | ||
apiKeyPath: 'payload.api_key', | ||
rolePath: 'payload.permissions' | ||
} | ||
} | ||
``` | ||
<Card | ||
title="Contact us to learn more" | ||
variant="bordered" | ||
href="/learn/home#get-support" | ||
/> | ||
|
||
## Query Parameter Enhancement | ||
Improved handling of query parameters in documentation middleware. Complex query parameters are now properly handled and displayed in the documentation. |
This file contains 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