Skip to content

Commit

Permalink
Merge #311
Browse files Browse the repository at this point in the history
311: Release 1.7.1 r=48d90782 a=48d90782



Co-authored-by: Valery Piashchynski <[email protected]>
  • Loading branch information
bors[bot] and rustatian authored Apr 22, 2020
2 parents ca7300a + 4179f90 commit fee8dbb
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .rr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
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.
- 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)
-------------------
- Replaced std encoding/json package with the https://github.com/json-iterator/go
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
--------
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit fee8dbb

Please sign in to comment.