Skip to content

Commit fee8dbb

Browse files
bors[bot]rustatian
andauthored
Merge #311
311: Release 1.7.1 r=48d90782 a=48d90782 Co-authored-by: Valery Piashchynski <[email protected]>
2 parents ca7300a + 4179f90 commit fee8dbb

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

.rr.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@ http:
8383
# connection method (pipes, tcp://:9000, unix://socket.unix). default "pipes"
8484
relay: "pipes"
8585

86+
# user under which process will be started
87+
user: ""
88+
8689
# worker pool configuration.
8790
pool:
8891
# number of workers to be serving.

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
CHANGELOG
22
=========
33

4+
v1.7.1 (22.04.2020)
5+
-------------------
6+
- Syscall usage optimized. Now the data is packing and sending via 1 (or 2 in some cases) send_socket calls, instead of 2-3 (by @vvval)
7+
- Unix sockets in Windows (AF_UNIX) now supported.
8+
- Systemd unit file now in the root of the repository. Feel free to read the [docs](https://roadrunner.dev/docs/beep-beep-systemd) about running RR as daemon on Linux based systems.
9+
- Added ability to run the worker process from the particular user on Linux-based systems. Make sure, that the user have the permissions to run the script. See the [config](https://roadrunner.dev/docs/intro-config), option `user`.
10+
- Fixed: vendor directory conflict with golang part of the application. Now php uses vendor_php directory for the dependencies.
11+
- Goridge updated to version 2.3.2.
12+
- Deprecated Zend dependency replaced with Laminas-diactoros.
13+
- See the full log: [Milestone](https://github.com/spiral/roadrunner/milestone/9?closed=1)
14+
415
v1.7.0 (23.03.2020)
516
-------------------
617
- Replaced std encoding/json package with the https://github.com/json-iterator/go

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Features:
4646
- Very fast (~250k rpc calls per second on Ryzen 1700X using 16 threads)
4747
- Integrations with Symfony, Laravel, Slim, CakePHP, Zend Expressive, Spiral
4848
- Automatic reloading on file changes
49-
- Works on Windows
49+
- Works on Windows (Unix sockets (AF_UNIX) supported on Windows 10)
5050

5151
Installation:
5252
--------

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cd $(dirname "${BASH_SOURCE[0]}")
33
OD="$(pwd)"
44

55
# Pushes application version into the build information.
6-
RR_VERSION=1.7.0
6+
RR_VERSION=1.7.1
77

88
# Hardcode some values to the core package
99
LDFLAGS="$LDFLAGS -X github.com/spiral/roadrunner/cmd/rr/cmd.Version=${RR_VERSION}"

0 commit comments

Comments
 (0)