hf400159 commented on code in PR #1045: URL: https://github.com/apache/apisix-website/pull/1045#discussion_r853931132
########## website/blog/2022/04/20/weekly-report-0420.md: ########## @@ -0,0 +1,93 @@ +--- +title: Biweekly Report|Explore the weeks of Apr 1st - Apr 14th +keywords: +- Apache APISIX +- API Gateway +- Weekly Report +- Contributor +description: The Apache APISIX Community Weekly Report hopes to help community members better understand the weekly progress of the Apache APISIX community and and facilitate everyone to participate in the Apache APISIX community. +tags: [Events] +--- + +> From April 1st to April 14th, 36 contributors submitted 75 commits for Apache APISIX. Thank you all for your contributions to Apache APISIX. It is your selfless contribution to make the Apache APISIX project better! + +<!--truncate--> + +## Introduction + +Apache APISIX has grown as a community from the first day of open source and has quickly become the most active open source API gateway project in the world. These achievements cannot be achieved without the joint efforts of our community partners. + +"If you want to go fast, go alone.If you want to go far, go together." The Apache APISIX Community Weekly Report hopes to help community members better understand the weekly progress of the Apache APISIX community and and facilitate everyone to participate in the Apache APISIX community. + +We have also compiled some issues suitable for newcomers to the community to participate in! If you are interested, don't miss it! + +## Contributor Statistics + + + + + +## Good first issue + +### Issue #6803 + +**Link**: https://github.com/apache/apisix/issues/6803 + +**Issue description**: + +When I use `openid-connect` plugins with the wrong `redirect_uri` in Apache APISIX.Like flow: + +```Bash + "plugins":{ + "openid-connect":{ + ... + "scope":"openid profile", + "bearer_only":false, + "introspection_endpoint_auth_method":"client_secret_post", + "redirect_uri":"http://127.0.0.1:9080/" + ... + } + }, +``` + +Then, I request the "127.0.0.1:9080/", I will get 500, and the error log is as follow: + + + +```YAML + +2022/04/07 17:13:50 [error] 31780#3492140: *1959 [lua] openidc.lua:1378: authenticate(): request to the redirect_uri path but there's no session state found, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", host: "127.0.0.1:9080" +2022/04/07 17:13:50 [error] 31780#3492140: *1959 [lua] openid-connect.lua:304: phase_func(): OIDC authentication failed: request to the redirect_uri path but there's no session state found, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", host: "127.0.0.1:9080" +``` + +This type of log is very unclear and the user does not know what to expect. Error logging should be improved to improve the experience of using the `Openid-connect` plug-in. + +### Issue #6797 + +**Link**: https://github.com/apache/apisix/issues/6797 + +**Issue description**: + +When using the `file-logger` plugin, it is possible to send the logging to stdout by defining `/dev/stdout`. This in order to use the docker output and relais this in kubernetes to a ELK stack. Though an error is thrown indicating a permission denied for the current user.failed to open file: `/dev/stdout`, error info: `/dev/stdout`: Permission denied while logging request + +## Highlights of Recent Features + +- [Add the function of hiding header for `key-auth` plugin](https://github.com/apache/apisix/pull/6670)(Contributor: [bin-ya](https://github.com/bin-ya)) + +- [Support Zookeeper service discovery](https://github.com/apache/apisix/pull/6751)(Contributor: [shuaijinchao](https://github.com/shuaijinchao)) + +- [Feat(`request-id`): add algorithm support nanoid](https://github.com/apache/apisix/pull/6779)(Contributor: [aikin-vip](https://github.com/aikin-vip)) + +- [Feat(`response-rewrite)`: support filters](https://github.com/apache/apisix/pull/6750)(Contributor: [kwanhur](https://github.com/kwanhur)) Review Comment: ```suggestion - [Feat(`response-rewrite`): support filters](https://github.com/apache/apisix/pull/6750)(Contributor: [kwanhur](https://github.com/kwanhur)) ``` -- 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]
