[PR #15] [MERGED] Bump google.golang.org/grpc from 1.18.0 to 1.19.0 #149

Closed
opened 2026-02-25 22:31:14 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/evenh/intercert/pull/15
Author: @dependabot-preview[bot]
Created: 2/27/2019
Status: Merged
Merged: 3/10/2019
Merged by: @evenh

Base: masterHead: dependabot/dep/google.golang.org/grpc-1.19.0


📝 Commits (1)

  • 59f0176 Bump google.golang.org/grpc from 1.18.0 to 1.19.0

📊 Changes

2 files changed (+4 additions, -4 deletions)

View changed files

📝 Gopkg.lock (+3 -3)
📝 Gopkg.toml (+1 -1)

📄 Description

Bumps google.golang.org/grpc from 1.18.0 to 1.19.0.

Release notes

Sourced from google.golang.org/grpc's releases.

Release 1.19.0

API Changes

  • dialOption: export WithContextDialer() (#2629)
  • client: deprecate CallCustomCodec and provide new version using encoding.Codec (#2556)

Behavior Changes

  • keepalive: apply minimum ping time of 10s to client and 1s to server (#2642)

Bug Fixes

  • roundrobin: randomize starting address when rebuilding the picker (#2579)
  • client: fix handling of GRPC_GO_REQUIRE_HANDSHAKE=on to not interpret as "hybrid" (#2603)
  • client: minor v1 balancer wrapper fixes (#2511)
  • transport: resetTransport connect deadline is across addresses (#2540)
  • client: don't allow io.EOF to be passed from balancer to user (#2604)
  • grpc: limit reader with maxReceiveMessageSize (#2617)
  • transport: fixes established streams leak in loopy writer. (#2610)

Documentation

  • examples: add keepalive example (#2637)
  • examples: reflection (#2594)
  • Fix error message formatting (#2615)
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/evenh/intercert/pull/15 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 2/27/2019 **Status:** ✅ Merged **Merged:** 3/10/2019 **Merged by:** [@evenh](https://github.com/evenh) **Base:** `master` ← **Head:** `dependabot/dep/google.golang.org/grpc-1.19.0` --- ### 📝 Commits (1) - [`59f0176`](https://github.com/evenh/intercert/commit/59f017653c7afcbecf13fe58db2a1fce7963f8ae) Bump google.golang.org/grpc from 1.18.0 to 1.19.0 ### 📊 Changes **2 files changed** (+4 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `Gopkg.lock` (+3 -3) 📝 `Gopkg.toml` (+1 -1) </details> ### 📄 Description Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.18.0 to 1.19.0. <details> <summary>Release notes</summary> *Sourced from [google.golang.org/grpc's releases](https://github.com/grpc/grpc-go/releases).* > ## Release 1.19.0 > # API Changes > > * dialOption: export WithContextDialer() ([#2629](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2629)) > * client: deprecate CallCustomCodec and provide new version using encoding.Codec ([#2556](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2556)) > > # Behavior Changes > > * keepalive: apply minimum ping time of 10s to client and 1s to server ([#2642](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2642)) > > # Bug Fixes > > * roundrobin: randomize starting address when rebuilding the picker ([#2579](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2579)) > * client: fix handling of GRPC_GO_REQUIRE_HANDSHAKE=on to not interpret as "hybrid" ([#2603](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2603)) > - Special Thanks: [@&#8203;dntj](https://github.com/dntj) > * client: minor v1 balancer wrapper fixes ([#2511](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2511)) > * transport: resetTransport connect deadline is across addresses ([#2540](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2540)) > * client: don't allow io.EOF to be passed from balancer to user ([#2604](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2604)) > * grpc: limit reader with maxReceiveMessageSize ([#2617](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2617)) > * transport: fixes established streams leak in loopy writer. ([#2610](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2610)) > > # Documentation > > * examples: add keepalive example ([#2637](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2637)) > * examples: reflection ([#2594](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2594)) > * Fix error message formatting ([#2615](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2615)) > </details> <details> <summary>Commits</summary> - [`2fdaae2`](https://github.com/grpc/grpc-go/commit/2fdaae294f38ed9a121193c51ec99fecd3b13eb7) Change version to 1.19.0 ([#2658](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2658)) - [`40cb561`](https://github.com/grpc/grpc-go/commit/40cb5618f475e7b9d61aa7920ae4b04ef9bbaf89) dialOption: export WithContextDialer() ([#2629](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2629)) - [`871b88c`](https://github.com/grpc/grpc-go/commit/871b88ce2e8b9d8e1304740aa55c568cde7641ee) doc: fix typos ([#2655](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2655)) - [`9c297a4`](https://github.com/grpc/grpc-go/commit/9c297a48bb426531447f9f9a0aca99dc7ddce595) examples: remove duplicated words ([#2654](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2654)) - [`2773c7b`](https://github.com/grpc/grpc-go/commit/2773c7bbcf81cf358d3f0038b1469b2d44062acb) Fix styling ([#2647](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2647)) - [`ed70822`](https://github.com/grpc/grpc-go/commit/ed70822b12337d9379b40a95029f4b519d1b9084) keepalive: apply minimum ping time of 10s to client and 1s to server ([#2642](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2642)) - [`ae7b4f2`](https://github.com/grpc/grpc-go/commit/ae7b4f21da0bb793d483fb01a01fa681c07004c4) examples: correct typo in keepalive example ([#2645](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2645)) - [`b86a9db`](https://github.com/grpc/grpc-go/commit/b86a9dbd22245f708a7c68d21723e33ed20fc96e) documentation: Adds package level comments ([#2612](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2612)) - [`587cec0`](https://github.com/grpc/grpc-go/commit/587cec03e63111cd747d281a38abd4fc4cadad56) Moves swapState up, so it gets executed no matter what. ([#2649](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2649)) - [`29c406a`](https://github.com/grpc/grpc-go/commit/29c406a5bd0ed61c5752d00c6aabd9fa036ed328) examples: add keepalive example ([#2637](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2637)) - Additional commits viewable in [compare view](https://github.com/grpc/grpc-go/compare/v1.18.0...v1.19.0) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=google.golang.org/grpc&package-manager=dep&previous-version=1.18.0&new-version=1.19.0)](https://dependabot.com/compatibility-score.html?dependency-name=google.golang.org/grpc&package-manager=dep&previous-version=1.18.0&new-version=1.19.0) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot. </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-25 22:31:14 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/intercert#149
No description provided.