From a6bd7b7aa36de67501ff69a6ef000ebd748b576b Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Tue, 21 Apr 2020 23:56:39 +0300 Subject: update release changelog --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4f9ac28..d9ec8393 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ CHANGELOG ========= +v1.7.1 (22.04.2020) +------------------- +- 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) +- Unix sockets in Windows (AF_UNIX) now supported. +- 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. +- 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`. +- Fixed: vendor directory conflict with golang part of the application. Now php uses vendor_php directory for the dependencies. +- Goridge updated to version 2.3.2. +- See the full log: [Milestone](https://github.com/spiral/roadrunner/milestone/9?closed=1) + v1.7.0 (23.03.2020) ------------------- - Replaced std encoding/json package with the https://github.com/json-iterator/go -- cgit v1.2.3 From 4383ea22324920d5f901ee9cbbf9493480ecf1ea Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Wed, 22 Apr 2020 00:00:08 +0300 Subject: update build, readme, .rr.yaml --- .rr.yaml | 3 +++ README.md | 2 +- build.sh | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.rr.yaml b/.rr.yaml index fc05112c..8fd42314 100644 --- a/.rr.yaml +++ b/.rr.yaml @@ -83,6 +83,9 @@ http: # connection method (pipes, tcp://:9000, unix://socket.unix). default "pipes" relay: "pipes" + # user under which process will be started + user: "" + # worker pool configuration. pool: # number of workers to be serving. diff --git a/README.md b/README.md index ac5b6483..30eb2ab3 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Features: - Very fast (~250k rpc calls per second on Ryzen 1700X using 16 threads) - Integrations with Symfony, Laravel, Slim, CakePHP, Zend Expressive, Spiral - Automatic reloading on file changes -- Works on Windows +- Works on Windows (Unix sockets (AF_UNIX) supported on Windows 10) Installation: -------- diff --git a/build.sh b/build.sh index 5b36dbea..da6826f9 100755 --- a/build.sh +++ b/build.sh @@ -3,7 +3,7 @@ cd $(dirname "${BASH_SOURCE[0]}") OD="$(pwd)" # Pushes application version into the build information. -RR_VERSION=1.7.0 +RR_VERSION=1.7.1 # Hardcode some values to the core package LDFLAGS="$LDFLAGS -X github.com/spiral/roadrunner/cmd/rr/cmd.Version=${RR_VERSION}" -- cgit v1.2.3 From 4179f90436243cb1aed1bc57754f6b4187d5a16f Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Wed, 22 Apr 2020 00:58:52 +0300 Subject: update --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9ec8393..229609fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ v1.7.1 (22.04.2020) - 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`. - Fixed: vendor directory conflict with golang part of the application. Now php uses vendor_php directory for the dependencies. - Goridge updated to version 2.3.2. +- Deprecated Zend dependency replaced with Laminas-diactoros. - See the full log: [Milestone](https://github.com/spiral/roadrunner/milestone/9?closed=1) v1.7.0 (23.03.2020) -- cgit v1.2.3