Cristian Álvarez Belaustegui

Results 13 issues of Cristian Álvarez Belaustegui

Compiling the library on Elixir 1.11 throws the following warning: ``` Compiling 14 files (.ex) warning: Supervisor.Spec.worker/2 is deprecated. Use the new child specifications outlined in the Supervisor module instead...

Decoratex only reads data from existing fields in the struct model, and creates some virtual fields to store the calculated data. Since fetching the required data for performing the calculations...

When using `polymorphic_embeds_one` or `polymorphic_embeds_many` we create compile-time dependencies from the parent schema to the embedded schemas. For example, let's say we have the following code: ```elixir # lib/article.ex defmodule...

When using `polymorphic_embeds_one` and `polymorphic_embeds_many` this library creates compile time dependencies between the parent module and the polymorphic embed modules. This causes huge dependency graphs in which changing a file...

### Summary of changes Catalan translation is missing ### Checklist - [ ] New functions have typespecs, changed functions were updated - [ ] Same for documentation, including moduledocs -...

This pull request ensures that when inserting a symbol we clean up the existing symbols for the same file. Previously we were just removing the existing symbols for the same...

Let's say we have the following module: ```elixir defmodule MyModule do @moduledoc false def greet, do: "Hello" end ``` The `symbols` table contains this: ```sql sqlite> select * from symbols...

Pull request #244 added support for `x-amz-checksum` headers when using other hash algorithms than `md5`. This pull request adds the relevant header when using `put_object` so new objects will have...