Jonatan Männchen

Results 84 issues of Jonatan Männchen

Add a guide on Vulnerability Disclosure. The current state relies heavily on ChatGPT, but should outline the contents that I wanted to cover. If we merge this, I would ask...

help wanted

It would be nice if `composite` (`per`) units could be multiplied with its base units. For example: ```elixir drain_rate = Cldr.Unit.new!("liter_per_hour", 6) time = Cldr.Unit.new!("minute", 30) Cldr.Unit.mult(drain_rate, time) # =>...

> @maennchen I did have one question about this. My read of the spec was that `RS256` should be allowed but not `HS256`, but there's a specific test case which...

question
certification-not-ready

### Description for FAPI 2.0 - Message Signing * https://openid.bitbucket.io/fapi/fapi-2_0-message-signing.html#name-http-message-signing * https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-message-signatures-19

enhancement
certification-not-ready

Lists in responses are handled wrong. ```patch diff --git a/test/adbc_test.exs b/test/adbc_test.exs index 2758db6..3a96b79 100644 --- a/test/adbc_test.exs +++ b/test/adbc_test.exs @@ -33,6 +33,9 @@ defmodule AdbcTest do test "runs queries", %{conn: conn}...

The following code is not currently supported: ```elixir Adbc.Connection.query( connection_pid, """ SELECT * FROM posts WHERE id = ANY(?1::INT[]) """, [[1, 2]] ) ``` => ```elixir {:error, %ArgumentError{message: "type not...

* Generate Type Declarations * Expose via `package.json` / `types` * Update all Dependencies

## Script ```elixir Mix.install([{:explorer, "0.8.2"}]) df_a = Explorer.DataFrame.new([%{a: 1, b: 2}]) df_b = Explorer.DataFrame.new([%{b: 3}]) df_b = Explorer.DataFrame.put(df_b, :a, Explorer.Series.from_list([4])) dbg Explorer.DataFrame.concat_rows(df_a, df_b) ``` ## Expected (This is the result...

When adjusting the `search_path` of a connection / user, I would expect `ecto_enum` to respect the given search path. This PR modifies the behavior so that the schema is only...

``` ===> Compiling jose ===> Compiling _build/default/lib/jose/src/jwa/jose_jwa.erl failed _build/default/lib/jose/src/jwa/jose_jwa.erl:120:2: public_key:decrypt_private/3 is deprecated; do not use _build/default/lib/jose/src/jwa/jose_jwa.erl:127:2: public_key:encrypt_public/3 is deprecated; do not use ``` See: https://github.com/erlef/oidcc_cowboy/actions/runs/9034558041/job/24963222738?pr=33