Vanja Radovanović
Vanja Radovanović
Hi! So I am trying to reuse an existing serializer for a relation that has a different (include) name/type. For example: ```elixir defmodule AuthorView do has_many :articles, serializer: ArticleView, link:...
I have a serializer defined like this: ```elixir attributes([ :name, :custom_property ]) ``` Where `:name` exists in the original struct, but `:custom_property` is calculated in same named function. If I...
Hi, A Phoenix app I am working on is experiencing binaries related memory leak. It is related to https://github.com/quantum-elixir triggered jobs, but after some investigation found that it is actually...
Hi, A Phoenix app I am working on is experiencing binaries related memory leak. It is related to Quantum triggered jobs, but after some investigation found that it is actually...
Hi, In one project I needed the port to be compared too so I added the needed support. Currently port is extracted/canonicalized from url by default (if present and !=...
Notes: - this just adds docs to the feature already introduced in https://github.com/whitfin/cachex/pull/294 - hope I got all the relevant places covered
The OpenAPI 3.0.3 API definition I am trying to integrate into a project is served from API server as `yaml`. That yml file is valid, e.g. it opens and renders...
Adjusts to the telemetry breaking changes in Bandit 1.4. See https://github.com/mtrudel/bandit/blob/main/CHANGELOG.md#140-26-mar-2024 Related to https://github.com/open-telemetry/opentelemetry-erlang-contrib/issues/308.
Hi, Our regular Ecto repo is configured like this (it fetches credentials from AWS based on some configured role): ```elixir # in runtime.exs credentials = System.get_env("RDS_DB_IAM_ROLE_CREDENTIALS") config :demo, Demo.Repo, configure:...