-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
docs(community): update latest tsc members list #3981
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs(community): update latest tsc members list #3981
Conversation
WalkthroughThis pull request updates the ambassadors membership configuration by modifying the profile of Hugo Guerrero and adding a new ambassador, Laurent Broudoux. Hugo Guerrero’s entry now reflects a change in title, LinkedIn username, and company affiliation. A new entry for Laurent Broudoux is introduced with his profile details including title, company, social links, country, and biography. Changes
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
❌ Deploy Preview for asyncapi-website failed.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #3981 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 21 21
Lines 667 667
Branches 113 113
=========================================
Hits 667 667 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this 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
📜 Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
config/AMBASSADORS_MEMBERS.json(2 hunks)
🧰 Additional context used
🪛 Biome (1.9.4)
config/AMBASSADORS_MEMBERS.json
[error] 605-605: expected , but instead found "link"
Remove "link"
(parse)
⏰ Context from checks skipped due to timeout of 180000ms (2)
- GitHub Check: Automerge PR autoapproved by a bot
- GitHub Check: Lighthouse CI
🔇 Additional comments (1)
config/AMBASSADORS_MEMBERS.json (1)
155-157: Hugo Guerrero Profile Update is CorrectThe updates to Hugo Guerrero’s profile correctly reflect the new title, LinkedIn username, and company affiliation as described in the PR objectives.
| { | ||
| "name": "Laurent Broudoux", | ||
| "github": "lbroudoux", | ||
| "twitter": "lbroudoux", | ||
| "country": "🇫🇷", | ||
| "bio": "Laurent is a Cloud-Native Architecture expert and Enterprise Integration problem lover. He is the founder and lead developer of the Microcks.io open-source project: a cloud-native tool for API mocking and testing. For this, he is using his 10+ years experience as an architect in Financial Services where he defined API transformation strategies, including governance and delivery process.", | ||
| "linkedin": "laurentbroudoux", | ||
| "company": "Postman", | ||
| "title": "Solutions Architect / DevRel", | ||
| "img": "https://avatars.githubusercontent.com/u/1538635?s=400&v=4", | ||
| "contributions": [ | ||
| { | ||
| "type": "talk", | ||
| "title": "AsyncAPI unit testing - from nightmares to sweet dreams", | ||
| "date": { | ||
| "year": 2024, | ||
| "month": "December" | ||
| } | ||
| "link": "" | ||
| }, | ||
| { | ||
| "type": "talk", | ||
| "title": "Using Testcontainers for AsyncAPI unit testing", | ||
| "date": { | ||
| "year": 2024, | ||
| "month": "September" | ||
| }, | ||
| "link": "" | ||
| }, | ||
| { | ||
| "type": "presentation", | ||
| "title": "Quoi de neuf dans AsyncAPI v3 ? Découvrez le en live avec la migration du use-case Adeo", | ||
| "date": { | ||
| "year": 2023, | ||
| "month": "December" | ||
| }, | ||
| "link": "https://www.youtube.com/watch?v=WCK9_ZDv6K4" | ||
| }, | ||
| { | ||
| "type": "talk", | ||
| "title": "Elevating Event-Driven Architecture: Boost your delivery with AsyncAPI and Microcks", | ||
| "date": { | ||
| "year": 2023, | ||
| "month": "December" | ||
| }, | ||
| "link": "https://www.youtube.com/watch?v=PYEW3F91wbI" | ||
| }, | ||
| { | ||
| "type": "presentation", | ||
| "title": "AsyncAPI Recipes for EDA Gourmet", | ||
| "date": { | ||
| "year": 2022, | ||
| "month": "November" | ||
| }, | ||
| "link": "https://www.youtube.com/watch?v=m6vWzTF7LGI" | ||
| }, | ||
| { | ||
| "type": "presentation", | ||
| "title": "AsyncAPI or CloudEvents? Both My Captain!", | ||
| "date": { | ||
| "year": 2021, | ||
| "month": "November" | ||
| }, | ||
| "link": "https://www.youtube.com/watch?v=_p9RyClgYhE" | ||
| } | ||
| ] | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
❓ Verification inconclusive
New Ambassador Laurent Broudoux Addition with JSON Formatting Issue
The new entry for Laurent Broudoux is comprehensive and meets the PR objectives by including his profile details, social links, and contributions. However, there is a JSON formatting error in the first contribution object. In the first contribution (lines 595–603), the closing curly bracket for the "date" field is not followed by a comma, which causes the parser to interpret the subsequent "link" key incorrectly. This issue can be fixed by inserting a comma after the }.
Below is the proposed diff to address the issue:
@@
- "date": {
- "year": 2024,
- "month": "December"
- }
- "link": ""
+ "date": {
+ "year": 2024,
+ "month": "December"
+ },
+ "link": ""Action Required: Fix JSON Formatting in Ambassador Data
The JSON entry for Laurent Broudoux in config/AMBASSADORS_MEMBERS.json looks comprehensive, but there is a JSON formatting error in the first contribution object. Specifically, after the "date" field (lines 595–603), the closing curly bracket is missing a trailing comma before the "link" key. This error can cause JSON parsing issues.
- File:
config/AMBASSADORS_MEMBERS.json - Location: Contribution object for "AsyncAPI unit testing - from nightmares to sweet dreams" (lines 595–603)
- Issue: Missing comma after the
"date"field
Below is the proposed diff to address the issue:
@@
- "date": {
- "year": 2024,
- "month": "December"
- }
- "link": ""
+ "date": {
+ "year": 2024,
+ "month": "December"
+ },
+ "link": ""📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| { | |
| "name": "Laurent Broudoux", | |
| "github": "lbroudoux", | |
| "twitter": "lbroudoux", | |
| "country": "🇫🇷", | |
| "bio": "Laurent is a Cloud-Native Architecture expert and Enterprise Integration problem lover. He is the founder and lead developer of the Microcks.io open-source project: a cloud-native tool for API mocking and testing. For this, he is using his 10+ years experience as an architect in Financial Services where he defined API transformation strategies, including governance and delivery process.", | |
| "linkedin": "laurentbroudoux", | |
| "company": "Postman", | |
| "title": "Solutions Architect / DevRel", | |
| "img": "https://avatars.githubusercontent.com/u/1538635?s=400&v=4", | |
| "contributions": [ | |
| { | |
| "type": "talk", | |
| "title": "AsyncAPI unit testing - from nightmares to sweet dreams", | |
| "date": { | |
| "year": 2024, | |
| "month": "December" | |
| } | |
| "link": "" | |
| }, | |
| { | |
| "type": "talk", | |
| "title": "Using Testcontainers for AsyncAPI unit testing", | |
| "date": { | |
| "year": 2024, | |
| "month": "September" | |
| }, | |
| "link": "" | |
| }, | |
| { | |
| "type": "presentation", | |
| "title": "Quoi de neuf dans AsyncAPI v3 ? Découvrez le en live avec la migration du use-case Adeo", | |
| "date": { | |
| "year": 2023, | |
| "month": "December" | |
| }, | |
| "link": "https://www.youtube.com/watch?v=WCK9_ZDv6K4" | |
| }, | |
| { | |
| "type": "talk", | |
| "title": "Elevating Event-Driven Architecture: Boost your delivery with AsyncAPI and Microcks", | |
| "date": { | |
| "year": 2023, | |
| "month": "December" | |
| }, | |
| "link": "https://www.youtube.com/watch?v=PYEW3F91wbI" | |
| }, | |
| { | |
| "type": "presentation", | |
| "title": "AsyncAPI Recipes for EDA Gourmet", | |
| "date": { | |
| "year": 2022, | |
| "month": "November" | |
| }, | |
| "link": "https://www.youtube.com/watch?v=m6vWzTF7LGI" | |
| }, | |
| { | |
| "type": "presentation", | |
| "title": "AsyncAPI or CloudEvents? Both My Captain!", | |
| "date": { | |
| "year": 2021, | |
| "month": "November" | |
| }, | |
| "link": "https://www.youtube.com/watch?v=_p9RyClgYhE" | |
| } | |
| ] | |
| } | |
| { | |
| "name": "Laurent Broudoux", | |
| "github": "lbroudoux", | |
| "twitter": "lbroudoux", | |
| "country": "🇫🇷", | |
| "bio": "Laurent is a Cloud-Native Architecture expert and Enterprise Integration problem lover. He is the founder and lead developer of the Microcks.io open-source project: a cloud-native tool for API mocking and testing. For this, he is using his 10+ years experience as an architect in Financial Services where he defined API transformation strategies, including governance and delivery process.", | |
| "linkedin": "laurentbroudoux", | |
| "company": "Postman", | |
| "title": "Solutions Architect / DevRel", | |
| "img": "https://avatars.githubusercontent.com/u/1538635?s=400&v=4", | |
| "contributions": [ | |
| { | |
| "type": "talk", | |
| "title": "AsyncAPI unit testing - from nightmares to sweet dreams", | |
| "date": { | |
| "year": 2024, | |
| "month": "December" | |
| }, | |
| "link": "" | |
| }, | |
| { | |
| "type": "talk", | |
| "title": "Using Testcontainers for AsyncAPI unit testing", | |
| "date": { | |
| "year": 2024, | |
| "month": "September" | |
| }, | |
| "link": "" | |
| }, | |
| { | |
| "type": "presentation", | |
| "title": "Quoi de neuf dans AsyncAPI v3 ? Découvrez le en live avec la migration du use-case Adeo", | |
| "date": { | |
| "year": 2023, | |
| "month": "December" | |
| }, | |
| "link": "https://www.youtube.com/watch?v=WCK9_ZDv6K4" | |
| }, | |
| { | |
| "type": "talk", | |
| "title": "Elevating Event-Driven Architecture: Boost your delivery with AsyncAPI and Microcks", | |
| "date": { | |
| "year": 2023, | |
| "month": "December" | |
| }, | |
| "link": "https://www.youtube.com/watch?v=PYEW3F91wbI" | |
| }, | |
| { | |
| "type": "presentation", | |
| "title": "AsyncAPI Recipes for EDA Gourmet", | |
| "date": { | |
| "year": 2022, | |
| "month": "November" | |
| }, | |
| "link": "https://www.youtube.com/watch?v=m6vWzTF7LGI" | |
| }, | |
| { | |
| "type": "presentation", | |
| "title": "AsyncAPI or CloudEvents? Both My Captain!", | |
| "date": { | |
| "year": 2021, | |
| "month": "November" | |
| }, | |
| "link": "https://www.youtube.com/watch?v=_p9RyClgYhE" | |
| } | |
| ] | |
| } |
🧰 Tools
🪛 Biome (1.9.4)
[error] 605-605: expected , but instead found "link"
Remove "link"
(parse)
Updated Ambassadors list is available and this PR introduces changes with latest information about Ambassadors list
Summary by CodeRabbit