ancestry icon indicating copy to clipboard operation
ancestry copied to clipboard

The tree structure implementations for Elixir Ecto.

Results 9 ancestry issues
Sort by recently updated
recently updated
newest added

Bumps [ex_doc](https://github.com/elixir-lang/ex_doc) from 0.22.1 to 0.25.1. Release notes Sourced from ex_doc's releases. v0.22.3 Bug fixes [HTML+EPUB] Remove overlapping functions from defaults [HTML] Don't show tooltip for module sections and non-html...

dependencies

Bumps [postgrex](https://github.com/elixir-ecto/postgrex) from 0.15.5 to 0.15.10. Changelog Sourced from postgrex's changelog. v0.15.10 (2021-07-27) Enhancements Define child_spec for Postgrex.Notifications Improve error handling when using multiple endpoints Bug fixes Fix dialyzer warnings...

dependencies

Bumps [excoveralls](https://github.com/parroty/excoveralls) from 0.10.6 to 0.14.2. Release notes Sourced from excoveralls's releases. v0.14.2 Enhancements Minimum support for lcov - experimental (#261, #264). v0.14.1 Changes Fix HTML tag typo (#259). v0.14.0...

dependencies

_Dependabot Preview will be shut down on August 3rd, 2021. In order to keep getting Dependabot updates, please merge this PR and migrate to GitHub-native Dependabot before then._ Dependabot has...

dependencies

Bumps [ecto_sql](https://github.com/elixir-ecto/ecto_sql) from 3.1.5 to 3.6.2. Changelog Sourced from ecto_sql's changelog. v3.6.2 (2021-05-28) Bug fixes [migration] Improve error message on invalid migration type [postgres] Avoid duplicate order_by with distinct [sql]...

dependencies

Bumps [ex_machina](https://github.com/thoughtbot/ex_machina) from 2.3.0 to 2.7.0. Release notes Sourced from ex_machina's releases. v2.7.0 Added Allow setting sequence starting point (#414) Changelog Sourced from ex_machina's changelog. 2.7.0 Added Allow setting sequence...

dependencies

``` def arrange(record, _opts, module) do case module.has_children?(record) do true -> Map.merge(record, %{children: do_build_children(record, module)}) false -> record end end defp do_build_children(record, module) do record |> module.children() |> Enum.map(fn x...

Right now, `Ancestry.Repo.delete/3` [breaks convention]( https://hexdocs.pm/elixir/master/naming-conventions.html#trailing-bang-foo) by using the unsafe [`Repo.delete!/2`](https://hexdocs.pm/ecto/Ecto.Repo.html#c:delete!/2). Please, provide an alternate version of the function that uses [`Repo.delete/2`](https://hexdocs.pm/ecto/Ecto.Repo.html#c:delete/2) instead. Also, rename the current function to reflect...

The like statement is not accurate, example if id of the record is 1 it will find all subrecord having an ancestry of `10..`, `100...` ```elixir # https://github.com/zven21/ancestry/blob/master/lib/ancestry.ex#L265 query =...