Skip to content

Remove status labels from Connect components in what's new#401

Merged
JakeSCahill merged 1 commit intomainfrom
remove-status-from-whats-new
Apr 2, 2026
Merged

Remove status labels from Connect components in what's new#401
JakeSCahill merged 1 commit intomainfrom
remove-status-from-whats-new

Conversation

@micheleRP
Copy link
Copy Markdown
Contributor

@micheleRP micheleRP commented Apr 1, 2026

Summary

  • Remove the Status column from all component tables on the what's new page (7 tables converted from 4-column to 3-column)
  • Remove inline (experimental) and (beta) labels from component entries in bullet text (6 references)

Preview pages

What's New in Redpanda Connect

Test plan

  • Verify all component tables render correctly without the Status column
  • Verify the what's new page renders correctly

🤖 Generated with Claude Code

Remove Status column from component tables and inline (experimental)
and (beta) labels from component entries on the what's new page.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@micheleRP micheleRP requested a review from a team as a code owner April 1, 2026 18:17
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Apr 1, 2026

📝 Walkthrough

Walkthrough

The documentation file modules/get-started/pages/whats-new.adoc is reformatted to remove status indicators from component update tables and bullet items. The "Component updates" tables have the Status column definition and header removed. Trailing status parentheticals (e.g., (experimental), (beta)) are deleted from bullet items, and the text separators before descriptions are standardized from ] (status): to ]: for consistent punctuation.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~4 minutes

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and specifically summarizes the main change: removing status labels from Connect components in the what's new documentation.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Description check ✅ Passed The pull request description is directly related to the changeset, clearly detailing the removal of Status columns from component tables and inline status labels.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch remove-status-from-whats-new

Comment @coderabbitai help to get the list of available commands and usage tips.

@netlify
Copy link
Copy Markdown

netlify bot commented Apr 1, 2026

Deploy Preview for redpanda-connect ready!

Name Link
🔨 Latest commit f9395ea
🔍 Latest deploy log https://app.netlify.com/projects/redpanda-connect/deploys/69cd612eb894820008ba7e9f
😎 Deploy Preview https://deploy-preview-401--redpanda-connect.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
modules/get-started/pages/whats-new.adoc (1)

689-689: Column format inconsistency with other tables.

This table uses [cols="1m,1,3"] while the other six updated tables use [cols="1m,1a,3a"]. The a suffix indicates AsciiDoc formatting should be applied to column content. For consistency and to ensure xrefs render properly, consider using the same format as the other tables.

🔧 Suggested format for consistency
-[cols="1m,1,3"]
+[cols="1m,1a,3a"]
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@modules/get-started/pages/whats-new.adoc` at line 689, The table at the line
containing [cols="1m,1,3"] is inconsistent with the other updated tables; change
its column spec to [cols="1m,1a,3a"] so the second and third columns use
AsciiDoc formatting (the "a" suffix) and xrefs render consistently—locate the
exact token [cols="1m,1,3"] in whats-new.adoc and replace it with
[cols="1m,1a,3a"].
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@modules/get-started/pages/whats-new.adoc`:
- Line 689: The table at the line containing [cols="1m,1,3"] is inconsistent
with the other updated tables; change its column spec to [cols="1m,1a,3a"] so
the second and third columns use AsciiDoc formatting (the "a" suffix) and xrefs
render consistently—locate the exact token [cols="1m,1,3"] in whats-new.adoc and
replace it with [cols="1m,1a,3a"].

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 160500aa-332a-4e43-b63f-6ffae4765bb4

📥 Commits

Reviewing files that changed from the base of the PR and between b5eda88 and f9395ea.

📒 Files selected for processing (1)
  • modules/get-started/pages/whats-new.adoc

@micheleRP
Copy link
Copy Markdown
Contributor Author

Note: Remaining status labels on component pages

This PR only removes status labels from the what's new page. Individual component pages still display :status: experimental or :status: beta in their page attributes, which feeds into the category listing pages via the generate-rp-connect-categories.js extension.

Related upstream PR redpanda-data/connect#4205 promotes ~50 components from Beta/Experimental to Stable in the Connect source code and its docs/ folder. When that PR merges and the next auto-docs run regenerates those pages here, their :status: will update to stable.

However, 45 experimental and 5 beta components are not covered by connect#4205 and will retain their current status after regeneration:

Experimental components not in connect#4205 (45)
  • caches: couchbase, mongodb, nats_kv, sql
  • inputs: azure_cosmosdb, beanstalkd, cassandra, cockroachdb_changefeed, discord, mongodb, oracledb_cdc, parquet, pulsar, redis_scan, redpanda_migrator, twitter_search
  • outputs: azure_cosmosdb, beanstalkd, cyborgdb, discord, mongodb, pulsar, pusher, salesforce_sink, slack_reaction
  • processors: aws_dynamodb_partiql, azure_cosmosdb, cached, command, couchbase, ffi, gcp_bigquery_select, javascript, jira, mongodb, nats_request_reply, parquet_decode, parquet_encode, salesforce, sentry_capture, wasm
  • rate_limits: redis
  • tracers: gcp_cloudtrace, open_telemetry_collector, redpanda
Beta components not in connect#4205 (5)
  • buffers/system_window, inputs/subprocess, metrics/logger, outputs/subprocess, processors/retry

If the goal is to remove status display entirely from the site, the generate-rp-connect-categories.js extension and the connector.hbs template in @redpanda-data/docs-extensions-and-macros would also need changes.

@JakeSCahill JakeSCahill merged commit 9f75894 into main Apr 2, 2026
5 checks passed
@JakeSCahill JakeSCahill deleted the remove-status-from-whats-new branch April 2, 2026 10:52
JakeSCahill pushed a commit that referenced this pull request Apr 2, 2026
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants