Skip to content

Commit

Permalink
Fix bad file reference for TPA meta.yml
Browse files Browse the repository at this point in the history
Also fix omitted import in relgen.js
  • Loading branch information
josh-heyer authored and djw-m committed Nov 14, 2024
1 parent 98e501b commit f9224ca
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 1 addition & 3 deletions product_docs/docs/tpa/23/rel_notes/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ navigation:
- tpa_23.14_rel_notes
- tpa_23.13_rel_notes
- tpa_23.12_rel_notes
- tpa_23.11_rel_notes
- tpa_23.1-11_rel_notes
---

Expand Down Expand Up @@ -63,5 +62,4 @@ The Trusted Postgres Architect documentation describes the latest version of Tru
| [23.14](./tpa_23.14_rel_notes) | 23 Feb 2023 |
| [23.13](./tpa_23.13_rel_notes) | 22 Feb 2023 |
| [23.12](./tpa_23.12_rel_notes) | 21 Feb 2023 |
| [23.11](./tpa_23.11_rel_notes) | 21 Feb 2023 |
| [23.1-11](./tpa_23.1-11_rel_notes) | \- |
| [23.1-11](./tpa_23.1-11_rel_notes) | 21 Jun 2023 to 31 Jan 2023 |
4 changes: 1 addition & 3 deletions product_docs/docs/tpa/23/rel_notes/src/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,5 @@ precursor:
date: 22 Feb 2023
- version: "23.12"
date: 21 Feb 2023
- version: "23.11"
date: 21 Feb 2023
- version: "23.1-11"
date: \-
date: 21 Jun 2023 to 31 Jan 2023
8 changes: 7 additions & 1 deletion tools/automation/generators/relgen/relgen.js
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

// Parse the yaml in the relnotetester.yml file and return the data

import { readFileSync, readdirSync, writeFileSync, appendFileSync } from "fs";
import {
readFileSync,
readdirSync,
writeFileSync,
appendFileSync,
existsSync,
} from "fs";
import { load } from "js-yaml";
import yargs from "yargs";
import { hideBin } from "yargs/helpers";
Expand Down

0 comments on commit f9224ca

Please sign in to comment.