Skip to content
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
6 changes: 3 additions & 3 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const config: Config = {
remarkPlugins: [[require('@docusaurus/remark-plugin-npm2yarn'), { sync: true }]],
},
],

// Release Notes documentation
[
'@docusaurus/plugin-content-docs',
Expand All @@ -110,15 +110,15 @@ const config: Config = {
},
},
],

// Theme
[
'@docusaurus/theme-classic',
{
customCss: './src/css/custom.css',
},
],

// Redirects
[
'@docusaurus/plugin-client-redirects',
Expand Down
26 changes: 17 additions & 9 deletions redirects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ type RedirectRule = {

// Release notes redirects (not affected by base path)
function generateReleaseNotesRedirects(): RedirectRule[] {
return [
];
return [];
}

// Documentation redirects
Expand All @@ -20,7 +19,17 @@ function generateDocsRedirects(basePath: string): RedirectRule[] {
return basePath === '/' ? path : `${basePath}${path}`;
};

return [
const redirects: RedirectRule[] = [];

// Only add root redirect if docs are not at root
if (basePath !== '/') {
redirects.push({
from: '/',
to: basePath,
});
}

redirects.push(
// Operations API
{
from: withBase('/developers/operations-api/utilities'),
Expand Down Expand Up @@ -145,16 +154,15 @@ function generateDocsRedirects(basePath: string): RedirectRule[] {
{ from: withBase('/api'), to: withBase('/developers/operations-api/') },

// File rename redirect
{ from: withBase('/administration/logging/logging'), to: withBase('/administration/logging/standard-logging') },
];
{ from: withBase('/administration/logging/logging'), to: withBase('/administration/logging/standard-logging') }
);

return redirects;
}

// Combine all redirects
export function generateRedirects(basePath: string): RedirectRule[] {
return [
...generateReleaseNotesRedirects(),
...generateDocsRedirects(basePath),
];
return [...generateReleaseNotesRedirects(), ...generateDocsRedirects(basePath)];
}

// For backward compatibility, export a default set with empty base path
Expand Down
2 changes: 1 addition & 1 deletion release-notes/v4-tucker/4.6.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: 4.6.4

8/1/2025

- Fix for sending blobs on-demand without deleting before sent
- Fix for sending blobs on-demand without deleting before sent
- Fix for copying blobs in full table copy in a clone
- Freeze records in new resource mode
- Improvement in connection handling with disconnections
2 changes: 1 addition & 1 deletion release-notes/v4-tucker/4.6.5.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ title: 4.6.5

- Add more analytics for replication, including transfer for blobs
- Avoid attempts to connect to oneself for missing data
- Adjustments to logging
- Adjustments to logging
2 changes: 1 addition & 1 deletion release-notes/v4-tucker/4.6.6.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ title: 4.6.6
- Fix the auditing of hdb_nodes on install to ensure full connection of nodes when joining
- Copy blob buffers to ensure that small buffers are not replaced with frequent usage
- Separate replication subscription connections from on-demand connection retrieval
- Fix for fail over connection handling
- Fix for fail over connection handling
2 changes: 1 addition & 1 deletion release-notes/v4-tucker/4.7.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ title: 4.7.0
- A new component status monitoring collects status from each component from loading and any registered notification of status changes.
- OCSP is now supported, and can be used to invalidate TLS certificates used for replication and HTTP through an OCSP server.
- New analytics and licensing functionality has been added for integration with Fabric services.
- Further improvements to the plugin API
- Further improvements to the plugin API
2 changes: 1 addition & 1 deletion sidebarsReleaseNotes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ const sidebarsReleaseNotes: SidebarsConfig = {
],
};

export default sidebarsReleaseNotes;
export default sidebarsReleaseNotes;