Skip to content

Commit 2a97f65

Browse files
committed
formatting fixes
1 parent 4308fe6 commit 2a97f65

File tree

7 files changed

+14
-18
lines changed

7 files changed

+14
-18
lines changed

docusaurus.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ const config: Config = {
9393
remarkPlugins: [[require('@docusaurus/remark-plugin-npm2yarn'), { sync: true }]],
9494
},
9595
],
96-
96+
9797
// Release Notes documentation
9898
[
9999
'@docusaurus/plugin-content-docs',
@@ -110,15 +110,15 @@ const config: Config = {
110110
},
111111
},
112112
],
113-
113+
114114
// Theme
115115
[
116116
'@docusaurus/theme-classic',
117117
{
118118
customCss: './src/css/custom.css',
119119
},
120120
],
121-
121+
122122
// Redirects
123123
[
124124
'@docusaurus/plugin-client-redirects',

redirects.ts

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ type RedirectRule = {
88

99
// Release notes redirects (not affected by base path)
1010
function generateReleaseNotesRedirects(): RedirectRule[] {
11-
return [
12-
];
11+
return [];
1312
}
1413

1514
// Documentation redirects
@@ -21,15 +20,15 @@ function generateDocsRedirects(basePath: string): RedirectRule[] {
2120
};
2221

2322
const redirects: RedirectRule[] = [];
24-
23+
2524
// Only add root redirect if docs are not at root
2625
if (basePath !== '/') {
2726
redirects.push({
2827
from: '/',
2928
to: basePath,
3029
});
3130
}
32-
31+
3332
redirects.push(
3433
// Operations API
3534
{
@@ -155,18 +154,15 @@ function generateDocsRedirects(basePath: string): RedirectRule[] {
155154
{ from: withBase('/api'), to: withBase('/developers/operations-api/') },
156155

157156
// File rename redirect
158-
{ from: withBase('/administration/logging/logging'), to: withBase('/administration/logging/standard-logging') },
157+
{ from: withBase('/administration/logging/logging'), to: withBase('/administration/logging/standard-logging') }
159158
);
160-
159+
161160
return redirects;
162161
}
163162

164163
// Combine all redirects
165164
export function generateRedirects(basePath: string): RedirectRule[] {
166-
return [
167-
...generateReleaseNotesRedirects(),
168-
...generateDocsRedirects(basePath),
169-
];
165+
return [...generateReleaseNotesRedirects(), ...generateDocsRedirects(basePath)];
170166
}
171167

172168
// For backward compatibility, export a default set with empty base path

release-notes/v4-tucker/4.6.4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: 4.6.4
66

77
8/1/2025
88

9-
- Fix for sending blobs on-demand without deleting before sent
9+
- Fix for sending blobs on-demand without deleting before sent
1010
- Fix for copying blobs in full table copy in a clone
1111
- Freeze records in new resource mode
1212
- Improvement in connection handling with disconnections

release-notes/v4-tucker/4.6.5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ title: 4.6.5
88

99
- Add more analytics for replication, including transfer for blobs
1010
- Avoid attempts to connect to oneself for missing data
11-
- Adjustments to logging
11+
- Adjustments to logging

release-notes/v4-tucker/4.6.6.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ title: 4.6.6
99
- Fix the auditing of hdb_nodes on install to ensure full connection of nodes when joining
1010
- Copy blob buffers to ensure that small buffers are not replaced with frequent usage
1111
- Separate replication subscription connections from on-demand connection retrieval
12-
- Fix for fail over connection handling
12+
- Fix for fail over connection handling

release-notes/v4-tucker/4.7.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ title: 4.7.0
99
- A new component status monitoring collects status from each component from loading and any registered notification of status changes.
1010
- OCSP is now supported, and can be used to invalidate TLS certificates used for replication and HTTP through an OCSP server.
1111
- New analytics and licensing functionality has been added for integration with Fabric services.
12-
- Further improvements to the plugin API
12+
- Further improvements to the plugin API

sidebarsReleaseNotes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ const sidebarsReleaseNotes: SidebarsConfig = {
4646
],
4747
};
4848

49-
export default sidebarsReleaseNotes;
49+
export default sidebarsReleaseNotes;

0 commit comments

Comments
 (0)