Skip to content

Commit

Permalink
Release v1.15.8
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed May 20, 2024
1 parent a1934d6 commit 29fdd09
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,25 @@ in the long term.
See the new `Logger` documentation for more information on the
new features and on compatibility.

## v1.15.8 (2024-05-21)

### 1. Bug fixes

#### Elixir

* [bin/elixir] Properly handle the `--dbg` flag in Elixir's CLI
* [System] Add a note that arguments are unsafe when invoking .bat/.com scripts on Windows via `System.cmd/3`
* [Port] Add a note that arguments are unsafe when invoking .bat/.com scripts on Windows
* [URI] Ensure `:undefined` fields are properly converted to `nil` when invoking Erlang's API

#### Logger

* [Logger] Ensure translators are persisted across logger restarts

#### Mix

* [mix compile] Ensure compile paths are accessible during compilation

## v1.15.7 (2023-10-14)

### 1. Enhancements
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.15.7
1.15.8
2 changes: 1 addition & 1 deletion bin/elixir
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
set -e

ELIXIR_VERSION=1.15.7
ELIXIR_VERSION=1.15.8

if [ $# -eq 0 ] || { [ $# -eq 1 ] && { [ "$1" = "--help" ] || [ "$1" = "-h" ]; }; }; then
cat <<USAGE >&2
Expand Down
2 changes: 1 addition & 1 deletion bin/elixir.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@if defined ELIXIR_CLI_ECHO (@echo on) else (@echo off)

set ELIXIR_VERSION=1.15.7
set ELIXIR_VERSION=1.15.8

setlocal enabledelayedexpansion
if ""%1""=="""" if ""%2""=="""" goto documentation
Expand Down

0 comments on commit 29fdd09

Please sign in to comment.