diff options
author | Wolfy-J <[email protected]> | 2019-01-17 13:02:01 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2019-01-17 13:02:01 +0300 |
commit | 9fc88c96d50b44525356be9f1ddb0c4f22ce4d75 (patch) | |
tree | 7bee569a9d4c5a20f8402f5bf902b8d1f066e6eb | |
parent | 7a13e71af6a81039e119cc7b9e7592f93de59e60 (diff) |
- `_SERVER` now exposes headers with HTTP_ prefix (fixing Lravel integration) by @Alex-Bond
- fixed bug causing body payload not being received for custom HTTP methods by @Alex-Bond
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rwxr-xr-x | build.sh | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a0821db..cec53c39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +v1.3.2 (11.01.2019) +------------------- +- `_SERVER` now exposes headers with HTTP_ prefix (fixing Lravel integration) by @Alex-Bond +- fixed bug causing body payload not being received for custom HTTP methods by @Alex-Bond + v1.3.1 (11.01.2019) ------------------- - fixed bug causing static_pool crash when multiple reset requests received at the same time @@ -2,7 +2,7 @@ cd $(dirname "${BASH_SOURCE[0]}") OD="$(pwd)" # Pushes application version into the build information. -RR_VERSION=1.3.1 +RR_VERSION=1.3.2 # Hardcode some values to the core package LDFLAGS="$LDFLAGS -X github.com/spiral/roadrunner/cmd/rr/cmd.Version=${RR_VERSION}" |