Skip to content

Commit ebe0c8c

Browse files
author
José Valim
committed
Update CHANGELOG
1 parent de9feb2 commit ebe0c8c

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@
33
## v0.15.2-dev
44

55
* Enhancements
6+
* [ExUnit] Add timeouts to tests (which is configurable via tags)
67
* [GenEvent] Add support for `GenEvent.ack_notify/2`
78
* [GenEvent] Add support for monitored handlers to `GenEvent.add_handler/4` that removes the drawbacks in the previous linked handlers
89
* [Logger] Allow any value that implements `String.Chars` to be logger
910
* [Logger] Allow `Logger.log/3` timeout to be configured
10-
* [Mix] Add --force option to 'mix local.rebar'
11+
* [Mix] Add `--force` option to `mix local.rebar`
1112
* [Mix] Fix `--no-color`/`--color` option for `mix test`
1213
* [Mix] Add a `:language` option to improve the usability of Erlang projects using Mix
14+
* [Mix] Accept wildcards on `Mix.Config.import_config/1`
15+
* [Mix] Support protocol consolidation on escripts
1316

1417
* Bug fixes
1518
* [IEx] Do not print the underlying type for `@opaque` in the `t` helper
@@ -24,6 +27,7 @@
2427

2528
* Deprecations
2629
* [Collectable] Deprecate `Collectable.empty/1` and `Enum.traverse/2`
30+
* [Kernel] `x.Alias` is deprecated in favor of an explicit `Module.concat/2`
2731
* [Stream] Returning `{item, acc} | nil` from `Stream.resource/2` is deprecated, instead return `{[item], acc} | {:halt, acc}` (similar to `Stream.transform/3`)
2832

2933
* Backwards incompatible changes

lib/ex_unit/lib/ex_unit/case.ex

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ defmodule ExUnit.Case do
109109
If the same key is set via `@tag`, the `@tag` value has higher
110110
precedence.
111111
112-
### Reserved tags
112+
### Known tags
113113
114114
The following tags are set automatically by ExUnit and are
115115
therefore reserved:
@@ -119,6 +119,10 @@ defmodule ExUnit.Case do
119119
* `:line` - the line on which the test was defined
120120
* `:file` - the file on which the test was defined
121121
122+
The following tags customize how tests behaves:
123+
124+
* `:timeout` - customizes the test timeout in miliseconds (defaults to 30000)
125+
122126
## Filters
123127
124128
Tags can also be used to identify specific tests, which can then

0 commit comments

Comments
 (0)