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

release 1.2.2 #39

Merged
merged 1 commit into from
May 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGELOG
=========

v1.2.2 (05.05.2020)
-------------------
- roadrunner version bump to 1.8.0

v1.2.1 (22.04.2020)
-------------------
- replaced deprecated github.com/golang/protobuf/proto with new google.golang.org/protobuf/proto
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
cd $(dirname "${BASH_SOURCE[0]}")
OD="$(pwd)"
# Pushes application version into the build information.
RR_VERSION=1.2.1
RR_VERSION=1.2.2

# Hardcode some values to the core package
LDFLAGS="$LDFLAGS -X github.com/spiral/roadrunner/cmd/rr/cmd.Version=${RR_VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"php": "^7.2",
"ext-json": "*",
"google/protobuf": "^3.7",
"spiral/roadrunner": "^1.2"
"spiral/roadrunner": "^1.8"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/spiral/php-grpc

go 1.14
go 1.13

require (
github.com/buger/goterm v0.0.0-20200322175922-2f3e71b85129
Expand All @@ -10,7 +10,7 @@ require (
github.com/prometheus/client_golang v1.5.1
github.com/sirupsen/logrus v1.5.0
github.com/spf13/cobra v1.0.0
github.com/spiral/roadrunner v1.7.0
github.com/spiral/roadrunner v1.8.0
github.com/stretchr/testify v1.5.1
golang.org/x/net v0.0.0-20200421231249-e086a090c8fd
google.golang.org/grpc v1.29.0
Expand Down
1 change: 1 addition & 0 deletions rpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package grpc

import (
"errors"

"github.com/spiral/roadrunner/util"
)

Expand Down
7 changes: 4 additions & 3 deletions service.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@ package grpc
import (
"context"
"fmt"
"path"
"sync"
"time"

"github.com/spiral/php-grpc/parser"
"github.com/spiral/roadrunner"
"github.com/spiral/roadrunner/service/env"
"github.com/spiral/roadrunner/service/rpc"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
"google.golang.org/grpc/encoding"
"path"
"sync"
"time"
)

// ID sets public GRPC service ID for roadrunner.Container.
Expand Down