kayx23 commented on code in PR #1879: URL: https://github.com/apache/apisix-website/pull/1879#discussion_r2020545654
########## blog/en/blog/2025/03/31/march-monthly-report.md: ########## @@ -0,0 +1,164 @@ +--- +title: "March Report (March 01 - March 31)" +keywords: ["Apache APISIX", "API Gateway", "Monthly Report", "Contributor"] +description: Our monthly Apache APISIX community report generates insights into the project's monthly developments. The reports provide a pathway into the Apache APISIX community, ensuring that you stay well-informed and actively involved. +tags: [Community] +image: https://static.api7.ai/uploads/2025/03/28/226yQ3dc_march-monthly-report-cover-en.webp +--- + +> We have recently added some new features within Apache APISIX, including adding supports for `ai-prompt-guard`, `ai-rate-limiting`, and `ai-request-rewrite` plugins, and some new/enhanced features like adding JWT Audience Validator in `openid-connect` Plugin. For detailed information, please read the monthly report. +<!--truncate--> + +## Introduction + +From its inception, the Apache APISIX project has embraced the ethos of open-source community collaboration, propelling it into the ranks of the most active global open-source API gateway projects. The proverbial wisdom of 'teamwork makes the dream work' rings true in our way and is made possible by the collective effort of our community. + +From March 1st to March 31, 14 contributors made 50 commits to Apache APISIX. We sincerely appreciate your contributions to Apache APISIX. + +## Contributor Statistics + + + + + +## Good First Issue + +### Issue #12098 Improve Configuration Code of `chaitin-waf` Plugin + +Linkļ¼[https://github.com/apache/apisix/issues/12098](https://github.com/apache/apisix/issues/12098) + +Issue Description: Consider the comments of [PR #12029](https://github.com/apache/apisix/pull/12029#discussion_r2018012041) for `chaitin-waf` plugin, the value "nil" of `enum` can be removed due to the default value is set to "nil". + +## Feature Highlights + +### 1. Add `ai-prompt-guard` Plugin + +PR: https://github.com/apache/apisix/pull/12008 + +Contributor: [Revolyssup](https://github.com/Revolyssup) + +The `ai-prompt-guard` plugin safeguards your AI endpoints by inspecting and validating incoming prompt messages. It checks the content of requests against user-defined allowed and denied patterns to ensure that only approved inputs are processed. Based on its configuration, the plugin can either examine just the latest message or the entire conversation history, and it can be set to check prompts from all roles or only from end users. + +### 2. Add `ai-rate-limiting` Plugin + +PR: https://github.com/apache/apisix/pull/12037 + +Contributor: [shreemaan-abhishek](https://github.com/shreemaan-abhishek) + +The `ai-rate-limiting` plugin enforces token-based rate limiting for requests sent to LLM services. It helps manage API usage by controlling the number of tokens consumed within a specified time frame, ensuring fair resource allocation and preventing excessive load on the service. It is often used with `ai-proxy-multi` plugin. + +### 3. Add `ai-request-rewrite` Plugin + +PR: https://github.com/apache/apisix/pull/12036 + +Contributor: [LiteSun](https://github.com/LiteSun) + +The `ai-request-rewrite` plugin leverages predefined prompts and AI services to intelligently modify client requests, enabling AI-powered content transformation before forwarding to upstream services. + +### 4. Support Proxying OpenAI-Compatible LLMs + +PR: https://github.com/apache/apisix/pull/12004 + +Contributor: [shreemaan-abhishek](https://github.com/shreemaan-abhishek) + +This PR introduces a new provider, `openai-compatible`, that can proxy requests to OpenAI-compatible LLMs. + +### 5. Store JWT in the Request Context in `jwt-auth` Plugin + +PR: https://github.com/apache/apisix/pull/11675 + +Contributor: [mikyll](https://github.com/mikyll) + +The `jwt-auth` plugin now has a new parameter: `store_in_ctx`. It allows the configuration of When enabled (default is off), it stores the validated JWT object in the request context. Review Comment: can u check if the default is "false"? or off? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
