Skip to content

Commit

Permalink
[#1310]: feat: release v2.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rustatian authored Sep 29, 2022
2 parents a44d751 + 2bdb234 commit f851d4b
Show file tree
Hide file tree
Showing 5 changed files with 148 additions and 76 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release_grpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
run: sudo apt-get install -y musl-tools

- name: Download dependencies
run: go mod download
run: cd protoc_plugins && go mod download

- name: Generate builder values
id: values
Expand Down Expand Up @@ -89,9 +89,9 @@ jobs:
LDFLAGS: >-
-s
run: |
go build -trimpath -ldflags "$LDFLAGS" -o "./${{ steps.values.outputs.binary-name }}" protoc_plugins/protoc-gen-php-grpc/main.go
stat "./${{ steps.values.outputs.binary-name }}"
gpg --detach-sign --armor "./${{ steps.values.outputs.binary-name }}"
cd protoc_plugins && go build -trimpath -ldflags "$LDFLAGS" -o "../${{ steps.values.outputs.binary-name }}" protoc-gen-php-grpc/main.go
stat "../${{ steps.values.outputs.binary-name }}"
gpg --detach-sign --armor "../${{ steps.values.outputs.binary-name }}"
- name: Generate distributive directory name
id: dist-dir
Expand Down
38 changes: 38 additions & 0 deletions .github/workflows/release_grpc_buf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: release_grpc_buf

on:
release: # Docs: <https://help.github.com/en/articles/events-that-trigger-workflows#release-event-release>
types:
- prereleased
- released

jobs:
build:
name: BSR build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19

- name: Check out code
uses: actions/checkout@v3
with:
repository: 'roadrunner-server/grpc'
ref: 'master'

- name: Generate builder values
id: values
run: |
echo "::set-output name=version::`echo ${GITHUB_REF##*/} | sed -e 's/*//'`"
- name: Build image
run: |
echo ${{ secrets.BSR_TOKEN }} | docker login -u roadrunner-server plugins.buf.build --password-stdin
docker build . -f protoc_plugins/Dockerfile -t plugins.buf.build/roadrunner/protoc-gen-php-grpc:${{ steps.values.outputs.version }} --build-arg "APP_VERSION=${{ steps.values.outputs.version }}"
docker push plugins.buf.build/roadrunner/protoc-gen-php-grpc:${{ steps.values.outputs.version }}
35 changes: 34 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# CHANGELOG

## v2.11.3 (29.09.2022)

## 👀 New:
-**[ALPHA] gRPC plugin**: `buf` remote plugins support for the `protoc-gen-php-grpc` plugin. [FR](/~https://github.com/roadrunner-server/roadrunner/issues/1297), (thanks @rauanmayemir)
-**Temporal plugin**: `mTLS` support. [FR](/~https://github.com/roadrunner-server/roadrunner/issues/1300), (thanks @seregazhuk)

[Configuration sample](/~https://github.com/roadrunner-server/roadrunner/blob/master/.rr.yaml#L252):

```yaml
temporal:
address: 127.0.0.1:7233
cache_size: 100000
activities:
num_workers: 4

tls:
key: client.key
cert: client.pem
root_ca: ca.cert
client_auth_type: require_and_verify_client_cert
server_name: "tls-sample"
```
## 🩹 Fixes:
- 🐛 **Config plugin**: properly replace environment variables for the array `yaml` values. [BUG](/~https://github.com/roadrunner-server/roadrunner/issues/1308), (thanks @lyt8384)

## 🧹 Chore:

- 🧑‍🏭: **[ALPHA] gRPC plugin**: `base64` decoder for the google's `ErrorProto` structure. [FR](/~https://github.com/roadrunner-server/roadrunner/issues/1273), (thanks @rauanmayemir)

---

## v2.11.2 (13.09.2022)

## 👀 New:
Expand All @@ -9,7 +42,7 @@
- ✏ **Internal**: `./rr reset` now works in parallel. All workers will be restarted simultaneously instead of a one-by-one sync approach.
- ✏ **Internal**: `./rr reset` and destroy (when stopping RR) now gracefully stop the workers (giving a chance for the finalizers to work). If the worker doesn't respond in 10 seconds, it'll be killed.

-

## 🩹 Fixes:

- 🐛 **SQS plugin**: Incorrect detection of the `AWS IMDSv2` instances, [BUG](/~https://github.com/roadrunner-server/roadrunner/issues/1250) (thanks @paulermo)
Expand Down
48 changes: 24 additions & 24 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,41 +12,41 @@ require (
github.com/roadrunner-server/amqp/v2 v2.18.0
github.com/roadrunner-server/api/v2 v2.23.0
github.com/roadrunner-server/beanstalk/v2 v2.17.0
github.com/roadrunner-server/boltdb/v2 v2.17.2
github.com/roadrunner-server/boltdb/v2 v2.17.3
github.com/roadrunner-server/broadcast/v2 v2.14.0
github.com/roadrunner-server/config/v2 v2.16.3
github.com/roadrunner-server/config/v2 v2.16.4
github.com/roadrunner-server/endure v1.4.5
github.com/roadrunner-server/errors v1.2.0
github.com/roadrunner-server/fileserver/v2 v2.14.2
github.com/roadrunner-server/fileserver/v2 v2.14.3
github.com/roadrunner-server/goridge/v3 v3.5.3
github.com/roadrunner-server/grpc/v2 v2.22.3
github.com/roadrunner-server/gzip/v2 v2.13.3
github.com/roadrunner-server/headers/v2 v2.13.3
github.com/roadrunner-server/http/v2 v2.23.3
github.com/roadrunner-server/grpc/v2 v2.23.2
github.com/roadrunner-server/gzip/v2 v2.13.4
github.com/roadrunner-server/headers/v2 v2.13.4
github.com/roadrunner-server/http/v2 v2.23.4
github.com/roadrunner-server/informer/v2 v2.13.0
github.com/roadrunner-server/jobs/v2 v2.18.2
github.com/roadrunner-server/kafka/v2 v2.2.1
github.com/roadrunner-server/jobs/v2 v2.18.3
github.com/roadrunner-server/kafka/v2 v2.2.2
github.com/roadrunner-server/kv/v2 v2.14.0
github.com/roadrunner-server/logger/v2 v2.15.2
github.com/roadrunner-server/logger/v2 v2.15.3
github.com/roadrunner-server/memcached/v2 v2.13.0
github.com/roadrunner-server/memory/v2 v2.17.0
github.com/roadrunner-server/metrics/v2 v2.14.2
github.com/roadrunner-server/nats/v2 v2.17.1
github.com/roadrunner-server/otel/v2 v2.5.4
github.com/roadrunner-server/prometheus/v2 v2.14.3
github.com/roadrunner-server/metrics/v2 v2.14.3
github.com/roadrunner-server/nats/v2 v2.17.2
github.com/roadrunner-server/otel/v2 v2.5.5
github.com/roadrunner-server/prometheus/v2 v2.14.4
github.com/roadrunner-server/proxy_ip_parser/v2 v2.5.1
github.com/roadrunner-server/redis/v2 v2.16.0
github.com/roadrunner-server/reload/v2 v2.14.0
github.com/roadrunner-server/resetter/v2 v2.13.0
github.com/roadrunner-server/rpc/v2 v2.15.0
github.com/roadrunner-server/send/v2 v2.13.3
github.com/roadrunner-server/server/v2 v2.16.2
github.com/roadrunner-server/service/v2 v2.17.2
github.com/roadrunner-server/sqs/v2 v2.20.2
github.com/roadrunner-server/static/v2 v2.14.3
github.com/roadrunner-server/status/v2 v2.15.2
github.com/roadrunner-server/tcp/v2 v2.15.2
github.com/roadrunner-server/websockets/v2 v2.16.3
github.com/roadrunner-server/send/v2 v2.13.4
github.com/roadrunner-server/server/v2 v2.16.3
github.com/roadrunner-server/service/v2 v2.17.3
github.com/roadrunner-server/sqs/v2 v2.20.3
github.com/roadrunner-server/static/v2 v2.14.4
github.com/roadrunner-server/status/v2 v2.15.3
github.com/roadrunner-server/tcp/v2 v2.15.3
github.com/roadrunner-server/websockets/v2 v2.16.4
github.com/spf13/cobra v1.5.0
github.com/spf13/viper v1.13.0
github.com/stretchr/testify v1.8.0
Expand Down Expand Up @@ -226,13 +226,13 @@ require (
golang.org/x/crypto v0.0.0-20220926161630-eccd6366d1be // indirect
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 //indirect
golang.org/x/net v0.0.0-20220927171203-f486391704dc // indirect
golang.org/x/sync v0.0.0-20220923202941-7f9b1623fab7 // indirect
golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0 // indirect
golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af // indirect
golang.org/x/tools v0.1.12 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20220927151529-dcaddaf36704 // indirect
google.golang.org/genproto v0.0.0-20220929141241-1ce7b20da813 // indirect
google.golang.org/grpc v1.49.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
Expand Down
Loading

0 comments on commit f851d4b

Please sign in to comment.