[PR #5] [MERGED] Bump google.golang.org/grpc from 1.17.0 to 1.18.0 #139

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

📋 Pull Request Information

Original PR: https://github.com/evenh/intercert/pull/5
Author: @dependabot-preview[bot]
Created: 1/17/2019
Status: Merged
Merged: 1/22/2019
Merged by: @evenh

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


📝 Commits (1)

  • 1089434 Bump google.golang.org/grpc from 1.17.0 to 1.18.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.17.0 to 1.18.0.

Release notes

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

Release 1.18.0

API Changes

  • client: deprecates FailFast & replaces its use by WaitForReady. (#2522)

Behavior Changes

  • client: make handshake required 'on' by default, not 'hybrid' (#2565)
    • See issue #2406 for more information

New Features

  • health: shutdown server to set NOT_SERVING and disallow future updates (#2513)
  • channelz: implement GetServer method (#2537)
  • health: resume health server (#2528)

Bug Fixes

  • client: report last connection error to RPCs via v1 balancer API (#2508)
  • grpclb: re-resolve when the stream to GRPCLB balancer fails (#2502)
  • client: do not expose trailer if client cancels RPC before receiving its status (#2554)
  • grpclb: filter out grpclb addresses if balancer in use is not grpclb (#2509)
  • channelz: respect max_results in listing methods (#2516)

Documentation

  • example: add echo proto (#2505)
  • example: load_balancing (#2504)
  • example: deadline (#2494)
  • example: compression (#2527)
  • example: interceptor (#2541)
  • example: errors (#2521)
  • example: authentication (#2531)
  • example: debugging (#2536)
  • example: encryption (#2524)
  • example: errors (#2534)
  • example: metadata (#2500)
  • example: wait_for_ready (#2503)
  • example: multiplex (#2477)
  • example: cancellation (#2525)
  • example: name_resolving (#2514)
Commits
  • a02b077 Change version to 1.18.0 (#2567)
  • 6cc789b client: make handshake required 'on' by default, not 'hybrid' (#2565)
  • 98a94b0 test: disable leakcheck after the first failure (#2563)
  • f647b6f grpctest: defer Teardown to guarantee it is run even after t.Fatal (#2562)
  • 9e7c146 Return nil trailer metadata, if the RPC's status is context canceled. (#2554)
  • 954fe27 benchmark: Unconstrained streaming benchmark (#2512)
  • bd0b3b2 grpctest: fix comments to be more readable (#2555)
  • 253dfbc internal: use -go option to target 1.9 (#2550)
  • b6f0a0f grpctest: add example to show how it is used (#2552)
  • 8fd063a channelz: Implement GetServer method for channelz (#2537)
  • Additional commits viewable in compare view

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 cancel merge will cancel a previously requested merge
  • @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/5 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 1/17/2019 **Status:** ✅ Merged **Merged:** 1/22/2019 **Merged by:** [@evenh](https://github.com/evenh) **Base:** `master` ← **Head:** `dependabot/dep/google.golang.org/grpc-1.18.0` --- ### 📝 Commits (1) - [`1089434`](https://github.com/evenh/intercert/commit/10894345b351aaf4cb3e8879e38d2ff965e6475a) Bump google.golang.org/grpc from 1.17.0 to 1.18.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.17.0 to 1.18.0. <details> <summary>Release notes</summary> *Sourced from [google.golang.org/grpc's releases](https://github.com/grpc/grpc-go/releases).* > ## Release 1.18.0 > # API Changes > > * client: deprecates FailFast & replaces its use by WaitForReady. ([#2522](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2522)) > > # Behavior Changes > > * client: make handshake required 'on' by default, not 'hybrid' ([#2565](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2565)) > * See issue [#2406](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2406) for more information > > # New Features > > * health: shutdown server to set NOT_SERVING and disallow future updates ([#2513](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2513)) > * channelz: implement GetServer method ([#2537](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2537)) > - Special Thanks: [**kazegusuri**](https://github.com/kazegusuri) > * health: resume health server ([#2528](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2528)) > > # Bug Fixes > > * client: report last connection error to RPCs via v1 balancer API ([#2508](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2508)) > * grpclb: re-resolve when the stream to GRPCLB balancer fails ([#2502](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2502)) > * client: do not expose trailer if client cancels RPC before receiving its status ([#2554](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2554)) > * grpclb: filter out grpclb addresses if balancer in use is not grpclb ([#2509](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2509)) > * channelz: respect max_results in listing methods ([#2516](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2516)) > - Special Thanks: [**kazegusuri**](https://github.com/kazegusuri) > > # Documentation > > * example: add echo proto ([#2505](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2505)) > * example: load_balancing ([#2504](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2504)) > * example: deadline ([#2494](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2494)) > * example: compression ([#2527](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2527)) > * example: interceptor ([#2541](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2541)) > * example: errors ([#2521](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2521)) > * example: authentication ([#2531](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2531)) > * example: debugging ([#2536](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2536)) > * example: encryption ([#2524](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2524)) > * example: errors ([#2534](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2534)) > * example: metadata ([#2500](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2500)) > * example: wait_for_ready ([#2503](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2503)) > * example: multiplex ([#2477](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2477)) > * example: cancellation ([#2525](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2525)) > * example: name_resolving ([#2514](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2514)) > </details> <details> <summary>Commits</summary> - [`a02b077`](https://github.com/grpc/grpc-go/commit/a02b0774206b209466313a0b525d2c738fe407eb) Change version to 1.18.0 ([#2567](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2567)) - [`6cc789b`](https://github.com/grpc/grpc-go/commit/6cc789b34b72d30116d6139ae4af87d5bfc91478) client: make handshake required 'on' by default, not 'hybrid' ([#2565](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2565)) - [`98a94b0`](https://github.com/grpc/grpc-go/commit/98a94b0cb0eb5a3745a93749673779b756465b95) test: disable leakcheck after the first failure ([#2563](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2563)) - [`f647b6f`](https://github.com/grpc/grpc-go/commit/f647b6facb5e801263a5f36623977567810ddc2e) grpctest: defer Teardown to guarantee it is run even after t.Fatal ([#2562](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2562)) - [`9e7c146`](https://github.com/grpc/grpc-go/commit/9e7c1463564add763b262504eabda61fde9c3f1d) Return nil trailer metadata, if the RPC's status is context canceled. ([#2554](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2554)) - [`954fe27`](https://github.com/grpc/grpc-go/commit/954fe2732443c3d6a3d74c760a2e561b2e1bc680) benchmark: Unconstrained streaming benchmark ([#2512](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2512)) - [`bd0b3b2`](https://github.com/grpc/grpc-go/commit/bd0b3b2aa2a9c87b323ee812359b0e9cda680dad) grpctest: fix comments to be more readable ([#2555](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2555)) - [`253dfbc`](https://github.com/grpc/grpc-go/commit/253dfbcf7df6f170da2f603537cf37e706963203) internal: use -go option to target 1.9 ([#2550](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2550)) - [`b6f0a0f`](https://github.com/grpc/grpc-go/commit/b6f0a0f3fc650f4977c0b6869f5e4e717c1c0f24) grpctest: add example to show how it is used ([#2552](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2552)) - [`8fd063a`](https://github.com/grpc/grpc-go/commit/8fd063a5aa013e51ad25d421dc713e4bef92aac4) channelz: Implement GetServer method for channelz ([#2537](https://github-redirect.dependabot.com/grpc/grpc-go/issues/2537)) - Additional commits viewable in [compare view](https://github.com/grpc/grpc-go/compare/v1.17.0...v1.18.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.17.0&new-version=1.18.0)](https://dependabot.com/compatibility-score.html?dependency-name=google.golang.org/grpc&package-manager=dep&previous-version=1.17.0&new-version=1.18.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 cancel merge` will cancel a previously requested merge - `@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:12 +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#139
No description provided.