Skip to content

Conversation

@thulieblack
Copy link
Member

@thulieblack thulieblack commented Oct 28, 2025

Community summary for the month of October

Summary by CodeRabbit

  • New Features

    • Added adopter profiles showcasing companies, their AsyncAPI use cases, and linked resources
    • Published October 2025 community update blog post with conference recaps, previews, tooling updates, and community highlights
  • Bug Fixes / Content

    • Removed a legacy "featured" flag from a September 2025 blog post front matter
  • Chores

    • Added TypeScript environment declarations

@netlify
Copy link

netlify bot commented Oct 28, 2025

Deploy Preview for asyncapi-website ready!

Built without sensitive environment variables

Name Link
🔨 Latest commit ed1a7e6
🔍 Latest deploy log https://app.netlify.com/projects/asyncapi-website/deploys/6909ffe190cda20008bc4f64
😎 Deploy Preview https://deploy-preview-4512--asyncapi-website.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.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Oct 28, 2025

Important

Review skipped

Review was skipped due to path filters

⛔ Files ignored due to path filters (1)
  • package-lock.json is excluded by !**/package-lock.json

CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including **/dist/** will override the default block on the dist directory, by removing the pattern from both the lists.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

Adds a new adopters JSON dataset, creates an October 2025 community summary blog post, removes featured: true from the September summary front matter, and adds an auto-generated Next.js TypeScript ambient declaration file.

Changes

Cohort / File(s) Summary
Adopters Dataset
config/adopters.json
New file containing an array of adopter records; each record has companyName, useCase, and resources (objects with title and link).
Blog Content
markdown/blog/2025-october-summary.md
New October 2025 community update post with front matter and multiple sections covering events, recaps, previews, community goals, spec/tooling updates, TSC/ambassadors, Hall of Fame, and a "Coming in November" teaser.
Blog Metadata
markdown/blog/2025-september-summary.md
Removed featured: true from the front matter; content otherwise unchanged.
TypeScript Declarations
next-env.d.ts
New auto-generated Next.js TypeScript ambient declaration file with triple-slash references to next, next/image-types/global, and local routes.d.ts.

Sequence Diagram(s)

(Skipped — changes are content/data additions and metadata edits; no control-flow or runtime behavior modified.)

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

  • Validate config/adopters.json for JSON validity and consistent record shapes.
  • Quick review of blog front matter and embedded component references in markdown/blog/2025-october-summary.md.
  • Confirm next-env.d.ts uses standard triple-slash references.

Possibly related PRs

Suggested labels

ready-to-merge

Suggested reviewers

  • derberg
  • bandantonio
  • TRohit20
  • akshatnema
  • sambhavgupta0705
  • Mayaleeeee

Poem

🐇
I nibble bytes and hop through rows,
New adopters where the JSON grows,
An October tale to sing and share,
A tiny TS line tucked in there,
I twitch my whiskers — updates fair!

Pre-merge checks and finishing touches

✅ Passed checks (2 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly describes the primary change: adding an October community summary blog post, which aligns with the main file addition in the changeset.

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

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

@asyncapi-bot
Copy link
Contributor

asyncapi-bot commented Nov 3, 2025

⚡️ Lighthouse report for the changes in this PR:

Category Score
🔴 Performance 42
🟢 Accessibility 98
🟢 Best practices 92
🟢 SEO 100
🔴 PWA 33

Lighthouse ran on https://deploy-preview-4512--asyncapi-website.netlify.app/

@thulieblack
Copy link
Member Author

@derberg your review, missed anything?

@bandantonio @TRohit20

Copy link
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.

Actionable comments posted: 1

🧹 Nitpick comments (1)
config/adopters.json (1)

1-1: Valid JSON structure; consider pretty-printing for maintainability.

The adopter data is correctly structured with consistent schema across 14 records. However, the minified single-line format makes git diffs harder to review and complicates future maintenance. Consider reformatting with indentation, especially if this file is frequently updated.

Example format:

[
  {
    "companyName": "Reiffeisen Bank",
    "useCase": "...",
    "resources": [
      {
        "title": "...",
        "link": "..."
      }
    ]
  },
  ...
]
📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 9611f42 and 0be99ef.

⛔ Files ignored due to path filters (1)
  • package-lock.json is excluded by !**/package-lock.json
📒 Files selected for processing (4)
  • config/adopters.json (1 hunks)
  • markdown/blog/2025-october-summary.md (1 hunks)
  • markdown/blog/2025-september-summary.md (0 hunks)
  • next-env.d.ts (1 hunks)
💤 Files with no reviewable changes (1)
  • markdown/blog/2025-september-summary.md
🧰 Additional context used
🧠 Learnings (5)
📓 Common learnings
Learnt from: iambami
Repo: asyncapi/website PR: 4111
File: markdown/blog/community-spotlight-aayush.md:3-3
Timestamp: 2025-06-03T06:48:09.304Z
Learning: For AsyncAPI community spotlight blog posts, the frontmatter date should reflect the actual publication date, not the month being highlighted in the spotlight. For example, a "May Community Spotlight" can be published in June with a June date in the frontmatter.
📚 Learning: 2025-04-20T16:05:16.482Z
Learnt from: anshgoyalevil
Repo: asyncapi/website PR: 3950
File: scripts/utils/check-locales.ts:122-129
Timestamp: 2025-04-20T16:05:16.482Z
Learning: In the AsyncAPI website project, Next.js throws errors at runtime when locale files are missing, making additional validation for missing files unnecessary in the check-locales script.

Applied to files:

  • next-env.d.ts
📚 Learning: 2025-01-18T08:44:43.614Z
Learnt from: akshatnema
Repo: asyncapi/website PR: 3423
File: tests/index.test.js:2-7
Timestamp: 2025-01-18T08:44:43.614Z
Learning: In the AsyncAPI website project, JavaScript test files must include the .ts extension when importing TypeScript files (e.g., `require('../scripts/build-rss.ts')`). This is enforced by the project's configuration which uses `moduleResolution: "bundler"` in tsconfig.json and TypeScript-aware ESLint plugins. The .ts extensions are required even though the files are imported using CommonJS require statements.

Applied to files:

  • next-env.d.ts
📚 Learning: 2025-01-18T08:44:43.614Z
Learnt from: akshatnema
Repo: asyncapi/website PR: 3423
File: tests/index.test.js:2-7
Timestamp: 2025-01-18T08:44:43.614Z
Learning: In the AsyncAPI website project, JavaScript test files must include the .ts extension when importing TypeScript files (e.g., `require('../scripts/build-rss.ts')`). This is a project-specific requirement enforced by the linting rules and build setup, even though it differs from typical Node.js behavior.

Applied to files:

  • next-env.d.ts
📚 Learning: 2025-06-03T06:48:09.304Z
Learnt from: iambami
Repo: asyncapi/website PR: 4111
File: markdown/blog/community-spotlight-aayush.md:3-3
Timestamp: 2025-06-03T06:48:09.304Z
Learning: For AsyncAPI community spotlight blog posts, the frontmatter date should reflect the actual publication date, not the month being highlighted in the spotlight. For example, a "May Community Spotlight" can be published in June with a June date in the frontmatter.

Applied to files:

  • markdown/blog/2025-october-summary.md
🔇 Additional comments (5)
next-env.d.ts (1)

1-7: Standard Next.js TypeScript setup—approved.

The triple-slash directives and reference path are correctly configured for Next.js TypeScript integration. No changes required.

markdown/blog/2025-october-summary.md (4)

1-15: Frontmatter is well-structured; date correctly reflects publication date per community guidelines.

The frontmatter includes all required fields (title, date, type, tags, cover, author, excerpt, featured). The publication date of November 5th for an October summary aligns with AsyncAPI's documented practice of dating posts by actual publication date rather than the month being covered. Based on learnings from prior community spotlights.


17-56: Content sections are comprehensive and well-organized; links are descriptive.

The blog post covers all major October events (Bangalore and Online conferences), upcoming initiatives (Paris, Developer Week 2026), and community highlights. Sponsorship acknowledgments and volunteer recognition are appropriately included. External links are contextualized with descriptive anchor text, improving SEO and user experience.


31-35: Verify <Figure> component is properly defined and accepts these props.

The component is used with props src, caption, and className. Ensure the component definition exists in the codebase and accepts these exact prop names.


73-79: Verify <Profiles> component accepts the profiles array structure.

The component is called with a profiles prop containing objects with name, avatar, and link fields. Ensure the component definition accepts this array structure and renders profiles correctly. Additionally, confirm that GitHub avatar URLs (e.g., https://avatars.githubusercontent.com/...) are handled correctly if the component applies image optimization or CDN rewriting.

Also applies to: 85-132

Copy link
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.

Actionable comments posted: 0

🧹 Nitpick comments (1)
markdown/blog/2025-october-summary.md (1)

29-29: Optional: Consider refining word choices for formality and conciseness.

LanguageTool suggests minor style improvements in your blog post:

  • Lines 29, 37, 83: "amazing" is used frequently; consider varying with alternatives like "exceptional," "remarkable," or "memorable" for a more formal tone
  • Line 50: "a variety of topics" could be more concise as "varied topics" or "diverse topics"

These are optional refinements to enhance the post's polish, especially if it's a featured piece.

Also applies to: 37-37, 50-50, 83-83

📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 0be99ef and 81535fb.

⛔ Files ignored due to path filters (1)
  • package-lock.json is excluded by !**/package-lock.json
📒 Files selected for processing (1)
  • markdown/blog/2025-october-summary.md (1 hunks)
🧰 Additional context used
🧠 Learnings (2)
📚 Learning: 2025-11-03T08:14:22.695Z
Learnt from: thulieblack
Repo: asyncapi/website PR: 4512
File: markdown/blog/2025-october-summary.md:37-37
Timestamp: 2025-11-03T08:14:22.695Z
Learning: In AsyncAPI community blog posts, specifically for conference recaps, the phrase "building boats" is used intentionally and is not a typo. This appeared in the October 2025 community summary blog post (markdown/blog/2025-october-summary.md) in the context of networking at the API Standards booth.

Applied to files:

  • markdown/blog/2025-october-summary.md
📚 Learning: 2025-06-03T06:48:09.304Z
Learnt from: iambami
Repo: asyncapi/website PR: 4111
File: markdown/blog/community-spotlight-aayush.md:3-3
Timestamp: 2025-06-03T06:48:09.304Z
Learning: For AsyncAPI community spotlight blog posts, the frontmatter date should reflect the actual publication date, not the month being highlighted in the spotlight. For example, a "May Community Spotlight" can be published in June with a June date in the frontmatter.

Applied to files:

  • markdown/blog/2025-october-summary.md
🪛 LanguageTool
markdown/blog/2025-october-summary.md

[style] ~29-~29: Consider using a more formal and expressive alternative to ‘amazing’.
Context: ...had taken place two years prior. It was an amazing experience to finally put faces to the ...

(AWESOME)


[style] ~37-~37: Consider using a more formal and expressive alternative to ‘amazing’.
Context: ...className="text-center" /> We also had amazing conversations at the API Standards bo...

(AWESOME)


[style] ~50-~50: Consider using a more concise synonym.
Context: ...e is an exciting lineup of speakers and a variety of topics being covered; [be sure to check...

(A_VARIETY_OF)


[style] ~83-~83: Consider using a more formal and expressive alternative to ‘amazing’.
Context: ...would like to highlight and thank these amazing volunteers who dedicated their skills a...

(AWESOME)

🔇 Additional comments (2)
markdown/blog/2025-october-summary.md (2)

1-19: Frontmatter structure and content publication date look good.

The November 5th publication date is correct for an October summary per established patterns. Metadata is complete and properly formatted.


21-67: Content sections are well-organized and comprehensive.

Conference recaps, community goals, and spec updates are clearly structured with appropriate links and references. The link to https://api.asyncapi.com/v1/help (line 66) properly addresses previous feedback.

Copy link
Collaborator

@bandantonio bandantonio left a comment

Choose a reason for hiding this comment

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

Just a few minor ones.

It was a pleasure to read it. Thank you @thulieblack !


## AsyncAPI Conferences 2025

The AsyncAPI Conference this year couldn't have been a major success without the support of our event financial sponsors. We were able to cover most of the logistical aspects that come with conference planning, such as supporting travels, printing cheat sheets for the booth, and shipping swags through their support.
Copy link
Collaborator

Choose a reason for hiding this comment

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

I feel like this sound a bit better

Suggested change
The AsyncAPI Conference this year couldn't have been a major success without the support of our event financial sponsors. We were able to cover most of the logistical aspects that come with conference planning, such as supporting travels, printing cheat sheets for the booth, and shipping swags through their support.
The AsyncAPI Conference this year couldn't have been a major success without the support of our event financial sponsors. Through their support, we were able to cover most of the logistical aspects that come with conference planning, such as supporting travels, printing cheat sheets for the booth, and shipping swags .


We also had amazing conversations at the `API Standards` booth, together with our friends from JSON Schema, who were also present with us. It was a great time of networking and building boats!

[Recordings from the conference are now available on YouTube; head over and watch](https://conference.asyncapi.com/venue/Bangalore#recordings).
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
[Recordings from the conference are now available on YouTube; head over and watch](https://conference.asyncapi.com/venue/Bangalore#recordings).
[Recordings from the conference are now available on YouTube](https://conference.asyncapi.com/venue/Bangalore#recordings); head over and watch

### Online Conference Recap
This year marked the 5th anniversary of the AsyncAPI Online Conference, and it was interesting to see how much the community has grown. We had attendees and speakers engage with us during the conference, and we garnered over **350 views** from YouTube.

The event wouldn't have been a success without our volunteers, who worked on various aspects, from design to on-stage and off-stage support, and the speakers who took the time to share their knowledge. [If you missed the conference, you can watch the recorded sessions](https://www.youtube.com/watch?v=KbT7Pw6j46E).
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
The event wouldn't have been a success without our volunteers, who worked on various aspects, from design to on-stage and off-stage support, and the speakers who took the time to share their knowledge. [If you missed the conference, you can watch the recorded sessions](https://www.youtube.com/watch?v=KbT7Pw6j46E).
The event wouldn't have been a success without our volunteers, who worked on various aspects, from design to on-stage and off-stage support, and the speakers who took the time to share their knowledge. If you missed the conference, you can [watch the recorded sessions](https://www.youtube.com/watch?v=KbT7Pw6j46E).



### Paris
We are heading to Paris **on December 11th** for the AsyncAPI track, and preparations are underway. There is an exciting lineup of speakers and a variety of topics being covered; [be sure to check the agenda once it's out in the coming week](https://conference.asyncapi.com/venue/Paris).
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
We are heading to Paris **on December 11th** for the AsyncAPI track, and preparations are underway. There is an exciting lineup of speakers and a variety of topics being covered; [be sure to check the agenda once it's out in the coming week](https://conference.asyncapi.com/venue/Paris).
We are heading to Paris **on December 11th** for the AsyncAPI track, and preparations are underway. There is an exciting lineup of speakers and a variety of topics being covered; [be sure to check the agenda](https://conference.asyncapi.com/venue/Paris) once it's out in the coming week

### Paris
We are heading to Paris **on December 11th** for the AsyncAPI track, and preparations are underway. There is an exciting lineup of speakers and a variety of topics being covered; [be sure to check the agenda once it's out in the coming week](https://conference.asyncapi.com/venue/Paris).

[We still have free tickets and discounts available. Be sure also to grab one before they run out!](https://ticket.apidays.global/event/apidays-paris-2025/3cccd07f-acb2-466e-8d91-cb1f208ecf42/asyncapi-conference-at-apidays-paris-2025/cart?coupon=ASYNCAPIVIP)
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
[We still have free tickets and discounts available. Be sure also to grab one before they run out!](https://ticket.apidays.global/event/apidays-paris-2025/3cccd07f-acb2-466e-8d91-cb1f208ecf42/asyncapi-conference-at-apidays-paris-2025/cart?coupon=ASYNCAPIVIP)
[We still have free tickets and discounts available](https://ticket.apidays.global/event/apidays-paris-2025/3cccd07f-acb2-466e-8d91-cb1f208ecf42/asyncapi-conference-at-apidays-paris-2025/cart?coupon=ASYNCAPIVIP). Be sure also to grab one before they run out!

Copy link
Member

@CBID2 CBID2 left a comment

Choose a reason for hiding this comment

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

Other than the issues @bandantonio pointed out, it looks pretty good 😊

@asyncapi-bot asyncapi-bot requested a review from CBID2 November 4, 2025 10:55
Copy link
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.

Actionable comments posted: 0

🧹 Nitpick comments (2)
markdown/blog/2025-october-summary.md (2)

29-29: Consider more formal alternatives to "amazing" for polished community communication.

The word "amazing" appears in three places (lines 29, 37, 83). While appropriate for a friendly tone, more formal alternatives might strengthen the professional presentation: "remarkable experience," "engaging conversations," and "dedicated volunteers." This is a minor style polish—feel free to keep as-is if the casual tone aligns with your brand voice.

Also applies to: 37-37, 83-83


50-50: Consider condensing "a variety of topics" for conciseness.

The phrase "a variety of topics being covered" could be tightened to "diverse topics being covered" or similar. Optional polish.

📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 81535fb and 4748edd.

📒 Files selected for processing (1)
  • markdown/blog/2025-october-summary.md (1 hunks)
🧰 Additional context used
🧠 Learnings (2)
📚 Learning: 2025-11-03T08:14:22.695Z
Learnt from: thulieblack
Repo: asyncapi/website PR: 4512
File: markdown/blog/2025-october-summary.md:37-37
Timestamp: 2025-11-03T08:14:22.695Z
Learning: In AsyncAPI community blog posts, specifically for conference recaps, the phrase "building boats" is used intentionally and is not a typo. This appeared in the October 2025 community summary blog post (markdown/blog/2025-october-summary.md) in the context of networking at the API Standards booth.

Applied to files:

  • markdown/blog/2025-october-summary.md
📚 Learning: 2025-06-03T06:48:09.304Z
Learnt from: iambami
Repo: asyncapi/website PR: 4111
File: markdown/blog/community-spotlight-aayush.md:3-3
Timestamp: 2025-06-03T06:48:09.304Z
Learning: For AsyncAPI community spotlight blog posts, the frontmatter date should reflect the actual publication date, not the month being highlighted in the spotlight. For example, a "May Community Spotlight" can be published in June with a June date in the frontmatter.

Applied to files:

  • markdown/blog/2025-october-summary.md
🪛 LanguageTool
markdown/blog/2025-october-summary.md

[style] ~29-~29: Consider using a more formal and expressive alternative to ‘amazing’.
Context: ...had taken place two years prior. It was an amazing experience to finally put faces to the ...

(AWESOME)


[style] ~37-~37: Consider using a more formal and expressive alternative to ‘amazing’.
Context: ...className="text-center" /> We also had amazing conversations at the API Standards bo...

(AWESOME)


[style] ~50-~50: Consider using a more concise synonym.
Context: ...e is an exciting lineup of speakers and a variety of topics being covered; [be sure to check...

(A_VARIETY_OF)


[style] ~83-~83: Consider using a more formal and expressive alternative to ‘amazing’.
Context: ...would like to highlight and thank these amazing volunteers who dedicated their skills a...

(AWESOME)

🔇 Additional comments (3)
markdown/blog/2025-october-summary.md (3)

14-14: Verify the featured: true design intent.

Both the September and October community summaries now have featured: true set. Confirm whether this is intentional—if only one post should be featured at a time, consider whether the October post should remain featured or if the September post should be re-featured. Based on the AI summary, the September post had this flag removed earlier.


66-66: Verify the API documentation link.

Past review comments from Shurtu-gal explicitly requested changing this link to https://api.asyncapi.com/v1/help, and you confirmed the change was made. However, the current code shows /docs instead of /help. Please verify this is the correct endpoint for the server-api v3 documentation reference.


1-135: Excellent community update—comprehensive, well-structured, and engaging.

The post covers all major October developments: both conferences (Bangalore and Online), upcoming Paris track, community goals proposal, v3 server-api support, new ambassador, and contributor recognition. The structure is clear, components are properly embedded, and calls-to-action are well-placed. Past suggestions from bandantonio appear to have been successfully incorporated.

Copy link
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.

Actionable comments posted: 0

🧹 Nitpick comments (1)
markdown/blog/2025-october-summary.md (1)

29-29: Consider more formal language for optional style polish.

Static analysis suggests these optional style refinements for professional tone:

  • Line 29: "amazing experience" → consider "rewarding experience" or "invaluable experience"
  • Line 37: "amazing conversations" → consider "meaningful conversations" or "valuable conversations"
  • Line 50: "a variety of topics being covered" → consider "diverse topics being covered"
  • Line 93: "amazing volunteers" → consider "dedicated volunteers" or "exceptional volunteers"

These are minor and optional improvements; incorporate only if you'd like to elevate the formality of the post.

Also applies to: 37-37, 50-50, 93-93

📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 4748edd and 8e090c5.

📒 Files selected for processing (1)
  • markdown/blog/2025-october-summary.md (1 hunks)
🧰 Additional context used
🧠 Learnings (2)
📚 Learning: 2025-11-03T08:14:22.695Z
Learnt from: thulieblack
Repo: asyncapi/website PR: 4512
File: markdown/blog/2025-october-summary.md:37-37
Timestamp: 2025-11-03T08:14:22.695Z
Learning: In AsyncAPI community blog posts, specifically for conference recaps, the phrase "building boats" is used intentionally and is not a typo. This appeared in the October 2025 community summary blog post (markdown/blog/2025-october-summary.md) in the context of networking at the API Standards booth.

Applied to files:

  • markdown/blog/2025-october-summary.md
📚 Learning: 2025-06-03T06:48:09.304Z
Learnt from: iambami
Repo: asyncapi/website PR: 4111
File: markdown/blog/community-spotlight-aayush.md:3-3
Timestamp: 2025-06-03T06:48:09.304Z
Learning: For AsyncAPI community spotlight blog posts, the frontmatter date should reflect the actual publication date, not the month being highlighted in the spotlight. For example, a "May Community Spotlight" can be published in June with a June date in the frontmatter.

Applied to files:

  • markdown/blog/2025-october-summary.md
🪛 LanguageTool
markdown/blog/2025-october-summary.md

[style] ~29-~29: Consider using a more formal and expressive alternative to ‘amazing’.
Context: ...had taken place two years prior. It was an amazing experience to finally put faces to the ...

(AWESOME)


[style] ~37-~37: Consider using a more formal and expressive alternative to ‘amazing’.
Context: ...className="text-center" /> We also had amazing conversations at the API Standards bo...

(AWESOME)


[style] ~50-~50: Consider using a more concise synonym.
Context: ...e is an exciting lineup of speakers and a variety of topics being covered; [be sure to check...

(A_VARIETY_OF)


[style] ~93-~93: Consider using a more formal and expressive alternative to ‘amazing’.
Context: ...would like to highlight and thank these amazing volunteers who dedicated their skills a...

(AWESOME)

⏰ Context from checks skipped due to timeout of 180000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (3)
  • GitHub Check: Redirect rules - asyncapi-website
  • GitHub Check: Header rules - asyncapi-website
  • GitHub Check: Pages changed - asyncapi-website
🔇 Additional comments (4)
markdown/blog/2025-october-summary.md (4)

1-15: Frontmatter structure looks good; date follows publication-date convention.

The frontmatter is properly structured with all required fields, and the publication date (2025-11-05) correctly follows the practice of using actual publication date rather than the content month, consistent with prior community blog posts.


66-66: Verify API endpoint link matches previous feedback.

Line 66 references https://api.asyncapi.com/v1/docs, but a previous review comment from Shurtu-gal requested changing a link to https://api.asyncapi.com/v1/help. Please confirm this is the correct endpoint or if it should be updated to /help per that earlier feedback.


37-37: "Building boats" phrase is intentional—no action needed.

Per prior clarification in this PR, the phrase "building boats" on line 37 is intentional and not a typo. The post is approved as-is regarding this phrasing.


17-145: Content structure, links, and embedded components look solid.

The post is well-organized across all sections (conferences, community goals, spec updates, TSC/Ambassadors, Hall of Fame, and coming events). JSX components (<Figure>, <Profiles>) are used appropriately, links are current, and the overall tone and flow align with the AsyncAPI community blog style.

Copy link
Member

@CBID2 CBID2 left a comment

Choose a reason for hiding this comment

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

Looks better now @thulieblack! LGTM :)

Copy link
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.

Actionable comments posted: 0

🧹 Nitpick comments (1)
markdown/blog/2025-october-summary.md (1)

37-37: Optional: Vary word choices for stronger prose.

LanguageTool flags a few stylistic opportunities:

  • Lines 37, 45, 101: "Amazing" appears three times. Consider substituting with more formal or varied alternatives like "remarkable," "exceptional," or "impressive" depending on context.
  • Line 58: "A variety of topics" could be more concise as "diverse topics" or simply "various topics."

These are minor refinements and won't affect clarity, but they can elevate the formality and precision of the post.

Also applies to: 45-45, 58-58, 101-101

📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 8e090c5 and 6bd211b.

📒 Files selected for processing (1)
  • markdown/blog/2025-october-summary.md (1 hunks)
🧰 Additional context used
🧠 Learnings (2)
📚 Learning: 2025-11-03T08:14:22.695Z
Learnt from: thulieblack
Repo: asyncapi/website PR: 4512
File: markdown/blog/2025-october-summary.md:37-37
Timestamp: 2025-11-03T08:14:22.695Z
Learning: In AsyncAPI community blog posts, specifically for conference recaps, the phrase "building boats" is used intentionally and is not a typo. This appeared in the October 2025 community summary blog post (markdown/blog/2025-october-summary.md) in the context of networking at the API Standards booth.

Applied to files:

  • markdown/blog/2025-october-summary.md
📚 Learning: 2025-06-03T06:48:09.304Z
Learnt from: iambami
Repo: asyncapi/website PR: 4111
File: markdown/blog/community-spotlight-aayush.md:3-3
Timestamp: 2025-06-03T06:48:09.304Z
Learning: For AsyncAPI community spotlight blog posts, the frontmatter date should reflect the actual publication date, not the month being highlighted in the spotlight. For example, a "May Community Spotlight" can be published in June with a June date in the frontmatter.

Applied to files:

  • markdown/blog/2025-october-summary.md
🪛 LanguageTool
markdown/blog/2025-october-summary.md

[style] ~37-~37: Consider using a more formal and expressive alternative to ‘amazing’.
Context: ...had taken place two years prior. It was an amazing experience to finally put faces to the ...

(AWESOME)


[style] ~45-~45: Consider using a more formal and expressive alternative to ‘amazing’.
Context: ...className="text-center" /> We also had amazing conversations at the API Standards bo...

(AWESOME)


[style] ~58-~58: Consider using a more concise synonym.
Context: ...e is an exciting lineup of speakers and a variety of topics being covered; [be sure to check...

(A_VARIETY_OF)


[style] ~101-~101: Consider using a more formal and expressive alternative to ‘amazing’.
Context: ...would like to highlight and thank these amazing volunteers who dedicated their skills a...

(AWESOME)

🔇 Additional comments (2)
markdown/blog/2025-october-summary.md (2)

1-154: Overall: Strong community update with clear structure and engaging content.

The October summary is well-organized, celebrates key achievements (Bangalore and Online conferences, new ambassadors/TSC member), and includes concrete calls-to-action (Paris tickets, Developer Week CFP, community goals review). The frontmatter is correct with the publication date set to November 5, 2025, which aligns with standard practice for monthly summaries. Interactive components (Figure, Profiles) are used effectively. The intentional phrase "building boats" at line 45 is confirmed from prior review and adds character to the networking section.


74-74: The review comment incorrectly flags the current URL endpoint.

The current code at line 74 shows https://api.asyncapi.com/v1/docs, which is the correct and standard AsyncAPI documentation endpoint. /docs serves the API's AsyncAPI document or rendered documentation, while /help is not defined by the AsyncAPI spec and would be an application-specific endpoint.

Additionally, no evidence of the past review conversation cited in the comment (requesting a change to /help with a "Done" acknowledgment) could be found in the repository or PR history. The current code is correct as-is.

Likely an incorrect or invalid review comment.

@asyncapi-bot asyncapi-bot requested a review from CBID2 November 4, 2025 13:15
@codecov
Copy link

codecov bot commented Nov 4, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 100.00%. Comparing base (b4bdd8b) to head (ed1a7e6).

Additional details and impacted files
@@            Coverage Diff            @@
##            master     #4512   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files           22        22           
  Lines          780       780           
  Branches       144       144           
=========================================
  Hits           780       780           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@thulieblack
Copy link
Member Author

@derberg @TRohit20 @bandantonio your final review and approvals please and thank you☺️

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.

5 participants