Jonatan Männchen
Jonatan Männchen
@dabaer Are you able to debug the keycloak error further? Specifically: What is present in the `encryptionAlg` and `jwt.getHeader().getRawAlgorithm()` variables? https://github.com/keycloak/keycloak/blob/08704df6516078cb31246861bb5858ef51838690/services/src/main/java/org/keycloak/protocol/oidc/endpoints/request/AuthzEndpointRequestObjectParser.java#L101-L107
Thanks for tracking this down. This sure sounds like a Keycloak issue. Would you mind reporting that issue there?
@Nezteb Supporting `none` wasn't something I considered to implement since the library doesn't currently offer any hybrid / implicit flows. I'm however open to support them if you or anyone...
Having that option sounds like a great addition to the library. I've seen multiple behaviors so far with translation tooling in other languages on missing translations: * Fallback to msgid...
The `.gitattributes` file unfortunately also impacts other tools. For example, the OpenSSF ScoreCard Scanner will not detect GitHub Actions if those were marked as `export-ignore`. Therefore a 👍 from me...
The scope of `git archive` is not specifically to create composer packages. `git archive` is a more general feature and can be used with different intentions. Based on those intentions,...
@stof I'm aware that distribution artifacts comes with its own set of challenges (monetary, build provenance and much more) and I'm certainly not recommending that composer switches how it works...
@dkuku Is your plural module defined inside your application or in a dependency? We could have an issue with unmet dependencies if the plural module is defined in your application...
Can you try if the problem persists if you put it into a separate app? (Simply start a new mix project and install it in your application via `{:my_app_name_plural, path:...
Here's how I implemented this in Elixir: https://github.com/elixir-lang/elixir/blob/main/.github/workflows/ort/action.yml#L42-L63 ```yml - name: Fetch Default ORT Config id: fetch-default-ort-config uses: actions/checkout@v4 with: repository: oss-review-toolkit/ort-config ref: "main" path: ".ort-config" - name: Setup ORT...