Skip to content

Commit 29fdd09

Browse files
committed
Release v1.15.8
1 parent a1934d6 commit 29fdd09

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,25 @@ in the long term.
117117
See the new `Logger` documentation for more information on the
118118
new features and on compatibility.
119119

120+
## v1.15.8 (2024-05-21)
121+
122+
### 1. Bug fixes
123+
124+
#### Elixir
125+
126+
* [bin/elixir] Properly handle the `--dbg` flag in Elixir's CLI
127+
* [System] Add a note that arguments are unsafe when invoking .bat/.com scripts on Windows via `System.cmd/3`
128+
* [Port] Add a note that arguments are unsafe when invoking .bat/.com scripts on Windows
129+
* [URI] Ensure `:undefined` fields are properly converted to `nil` when invoking Erlang's API
130+
131+
#### Logger
132+
133+
* [Logger] Ensure translators are persisted across logger restarts
134+
135+
#### Mix
136+
137+
* [mix compile] Ensure compile paths are accessible during compilation
138+
120139
## v1.15.7 (2023-10-14)
121140

122141
### 1. Enhancements

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.15.7
1+
1.15.8

bin/elixir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
set -e
33

4-
ELIXIR_VERSION=1.15.7
4+
ELIXIR_VERSION=1.15.8
55

66
if [ $# -eq 0 ] || { [ $# -eq 1 ] && { [ "$1" = "--help" ] || [ "$1" = "-h" ]; }; }; then
77
cat <<USAGE >&2

bin/elixir.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@if defined ELIXIR_CLI_ECHO (@echo on) else (@echo off)
22

3-
set ELIXIR_VERSION=1.15.7
3+
set ELIXIR_VERSION=1.15.8
44

55
setlocal enabledelayedexpansion
66
if ""%1""=="""" if ""%2""=="""" goto documentation

0 commit comments

Comments
 (0)