Skip to content
This repository was archived by the owner on Jan 21, 2022. It is now read-only.

Commit e9948b8

Browse files
authored
Merge pull request #42 from spiral/release_1_3_0
release 1.3.0
2 parents 2623d74 + 8f6bf08 commit e9948b8

File tree

3 files changed

+29
-24
lines changed

3 files changed

+29
-24
lines changed

CHANGELOG.md

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,61 @@
11
CHANGELOG
22
=========
33

4+
v1.3.0 (25.05.2020)
5+
-------------------
6+
- Add the ability to append the certificate authority in the config under the `tls: rootCA` key
7+
- RoadRunner version bump to 1.8.1
8+
49
v1.2.2 (05.05.2020)
510
-------------------
6-
- roadrunner version bump to 1.8.0
11+
- RoadRunner version bump to 1.8.0
712

813
v1.2.1 (22.04.2020)
914
-------------------
10-
- replaced deprecated github.com/golang/protobuf/proto with new google.golang.org/protobuf/proto
11-
- roadrunner version bump to 1.7.1
15+
- Replaced deprecated github.com/golang/protobuf/proto with new google.golang.org/protobuf/proto
16+
- RoadRunner version bump to 1.7.1
1217

1318
v1.2.0 (27.01.2020)
1419
-------------------
15-
- added the ability to work on Golang level only (without roadrunner worker and proto file)
20+
- Add the ability to work on Golang level only (without roadrunner worker and proto file)
1621

1722
v1.1.1 (27.01.2020)
1823
-------------------
1924
- [bugfix] invalid constructor parameters in ServiceException by @everflux
2025

2126
v1.1.0 (30.11.2019)
2227
-------------------
23-
- added automatic CS fixing
24-
- the minimum PHP version is set to 7.2
25-
- added ResponseHeaders and metadata generation by server by @wolfgang-braun
28+
- Add automatic CS fixing
29+
- The minimum PHP version set to 7.2
30+
- Add ResponseHeaders and metadata generation by server by @wolfgang-braun
2631

2732
v1.0.8 (06.09.2019)
2833
-------------------
29-
- included `limit` and `metrics` service
30-
- ability to expose GRPC stats to Prometheus
34+
- Include `limit` and `metrics` service
35+
- Ability to expose GRPC stats to Prometheus
3136

3237
v1.0.7 (22.05.2019)
3338
-------------------
3439
- Server and Invoker are final
35-
- added support for pool controller (roadrunner 1.4.0)
36-
- added strict_types=1
40+
- Add support for pool controller (roadrunner 1.4.0)
41+
- Add strict_types=1
3742

3843
v1.0.4-1.0.6 (26.04.2019)
3944
-------------------
4045
- bugfix, support for imported services in proto annotation by @oneslash
4146

4247
v1.0.2 (18.03.2019)
4348
-------------------
44-
- added support for `php_namespace` option
45-
- added support for nested namespace resolution in generated code
49+
- Add support for `php_namespace` option
50+
- Add support for nested namespace resolution in generated code
4651
(thanks to @zarianec)
4752
- protobuf version bump to 1.3.1
4853

4954
v1.0.1 (30.01.2019)
5055
-------------------
51-
- fixed bug causing server not working with empty payloads
52-
- fixed bug with disabled RPC service
53-
- added elapsed time to the debug log
56+
- Fix bug causing server not working with empty payloads
57+
- Fix bug with disabled RPC service
58+
- Add elapsed time to the debug log
5459

5560
v1.0.0 (20.10.2018)
5661
-------------------

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
cd $(dirname "${BASH_SOURCE[0]}")
33
OD="$(pwd)"
44
# Pushes application version into the build information.
5-
RR_VERSION=1.2.2
5+
RR_VERSION=1.3.0
66

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

go.mod

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ require (
66
github.com/buger/goterm v0.0.0-20200322175922-2f3e71b85129
77
github.com/c9s/inflect v0.0.0-20130402162822-006c50878f3f
88
github.com/emicklei/proto v1.9.0
9-
github.com/golang/protobuf v1.4.0
10-
github.com/prometheus/client_golang v1.5.1
11-
github.com/sirupsen/logrus v1.5.0
9+
github.com/golang/protobuf v1.4.2
10+
github.com/prometheus/client_golang v1.6.0
11+
github.com/sirupsen/logrus v1.6.0
1212
github.com/spf13/cobra v1.0.0
13-
github.com/spiral/roadrunner v1.8.0
13+
github.com/spiral/roadrunner v1.8.1
1414
github.com/stretchr/testify v1.5.1
15-
golang.org/x/net v0.0.0-20200421231249-e086a090c8fd
16-
google.golang.org/grpc v1.29.0
17-
google.golang.org/protobuf v1.21.0
15+
golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2
16+
google.golang.org/grpc v1.29.1
17+
google.golang.org/protobuf v1.23.0
1818
)

0 commit comments

Comments
 (0)