Paweł Rubin
Paweł Rubin
When connecting to **AKHQ** using GitLab OIDC, the username field is null ```json { "logged": true, "username": "null" } ``` despite setting the `username-field` to `nickname`. According to GitLab [docs](https://docs.gitlab.com/ee/integration/openid_connect_provider.html#shared-information),...
**Is your feature request related to a problem? Please describe.** Strings in the generated models are single-quoted, which is incompatible with **black** formatter. **Describe the solution you'd like** Double quotes...
## Problem **troposphere** incorrectly identifies `GroupId` parameter of `SecurityGroupEgress` in `AWS::EC2::SecurityGroup` as required. ## Context `GroupId` is a required parameter in [`AWS::EC2::SecurityGroupEgress`](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-security-group-egress.html) type, however not in [AWS::EC2::SecurityGroup Egress](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group-rule.html) The template...
### Steps to reproduce Consider the following example: ```python from typing import Any from dependency_injector import providers, containers, resources from fastapi import FastAPI class SampleResource(resources.AsyncResource[None]): async def init(self, *args: Any,...
This PR updates the starlette version to the latest [0.21.0](https://github.com/encode/starlette/releases/tag/0.21.0) release. The latest starlette release comes with some breaking changes to the TestClient as mentioned in the release notes: >This...