@redpanda-data/docs-extensions-and-macros 4.15.6 → 4.15.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/doc-tools.js +2 -0
- package/package.json +1 -1
- package/tools/redpanda-connect/AUTOMATION.md +834 -0
- package/tools/redpanda-connect/generate-rpcn-connector-docs.js +20 -1
- package/tools/redpanda-connect/github-release-utils.js +275 -0
- package/tools/redpanda-connect/helpers/buildConfigYaml.js +13 -8
- package/tools/redpanda-connect/multi-version-summary.js +92 -0
- package/tools/redpanda-connect/parse-csv-connectors.js +1 -0
- package/tools/redpanda-connect/pr-summary-formatter.js +381 -12
- package/tools/redpanda-connect/rpcn-connector-docs-handler.js +462 -66
- package/tools/redpanda-connect/templates/connector.hbs +1 -0
package/bin/doc-tools.js
CHANGED
|
@@ -705,6 +705,8 @@ automation
|
|
|
705
705
|
.option('--include-bloblang', 'Include Bloblang functions and methods in generation')
|
|
706
706
|
.option('--cloud-version <version>', 'Cloud binary version (default: auto-detect latest)')
|
|
707
707
|
.option('--cgo-version <version>', 'cgo binary version (default: same as cloud-version)')
|
|
708
|
+
.option('--skip-intermediate', 'Skip intermediate release processing (legacy mode - only compare latest vs last documented)')
|
|
709
|
+
.option('--from-version <version>', 'Override starting version instead of using antora.yml (useful for backfilling)')
|
|
708
710
|
.action(async (options) => {
|
|
709
711
|
requireTool('rpk', {
|
|
710
712
|
versionFlag: '--version',
|