Skip to content

Commit

Permalink
Release v3.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed May 28, 2021
1 parent 913ce08 commit e9dead9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog for v3.x

## v3.6.2 (2021-05-28)

### Enhancements

* [Ecto.Query] Support macros in `with_cte`
* [Ecto.Repo] Add `Ecto.Repo.all_running/0` to list all running repos

### Bug fixes

* [Ecto.Query] Do not omit nil fields in a subquery select
* [Ecto.Query] Allow `parent_as` to look for an alias all the way up across subqueries
* [Ecto.Query] Raise if a nil value is given to a query from a nested map parameter
* [Ecto.Query] Fix `insert_all` when using both `:on_conflict` and `:placeholders`
* [mix ecto.load] Do not pass `--force` to underlying compile task

## v3.6.1 (2021-04-12)

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ all-test:
BUILD \
--build-arg ELIXIR_BASE=1.11.0-erlang-23.1.1-alpine-3.13.1 \
--build-arg ELIXIR_BASE=1.11.0-erlang-21.3.8.21-alpine-3.13.1 \
--build-arg ELIXIR_BASE=1.8.2-erlang-20.3.8.26-alpine-3.11.6 \
--build-arg ELIXIR_BASE=1.9.4-erlang-20.3.8.26-alpine-3.11.6 \
+test


Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Ecto.MixProject do
use Mix.Project

@source_url "https://github.com/elixir-ecto/ecto"
@version "3.6.1"
@version "3.6.2"

def project do
[
Expand Down
1 change: 0 additions & 1 deletion test/ecto/query/planner_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,6 @@ defmodule Ecto.Query.PlannerTest do
assert Macro.to_string(hd(hd(query.joins).source.query.wheres).expr) =~ "in %Ecto.SubQuery{"
end


test "normalize: assoc join with wheres that have regular filters" do
# Mixing both has_many and many_to_many
{_query, params, _select} =
Expand Down

0 comments on commit e9dead9

Please sign in to comment.