File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ ## [ 0.26.2] - 2025-05-28
6
+
7
+ ### Added
8
+
9
+ - Recipe for partial UUID filters.
10
+
11
+ ### Changed
12
+
13
+ - Emit warning if ordering parameters are applied and the query already contains
14
+ an ` ORDER BY ` clause.
15
+
16
+ ### Fixed
17
+
18
+ - Fix "protocol Enumerable not implemented for type X" error when there is a
19
+ validation error and a filter value is a struct.
20
+
5
21
## [ 0.26.1] - 2024-08-19
6
22
7
23
### Fixed
Original file line number Diff line number Diff line change 39
39
``` elixir
40
40
def deps do
41
41
[
42
- {:flop , " ~> 0.26.1 " }
42
+ {:flop , " ~> 0.26.2 " }
43
43
]
44
44
end
45
45
```
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ defmodule Flop.MixProject do
2
2
use Mix.Project
3
3
4
4
@ source_url "https://github.com/woylie/flop"
5
- @ version "0.26.1 "
5
+ @ version "0.26.2 "
6
6
@ adapters ~w( postgres sqlite)
7
7
8
8
def project do
You can’t perform that action at this time.
0 commit comments