FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

doc: update CHANGELOG for v1.17.0 release by scotthart · Pull Request #5001 · googleapis/google-cloud-cpp · GitHub

doc: update CHANGELOG for v1.17.0 release - #5001

Merged
scotthart merged 2 commits into
googleapis:masterfrom
scotthart:release_202009
Sep 2, 2020
Merged

doc: update CHANGELOG for v1.17.0 release#5001
scotthart merged 2 commits into
googleapis:masterfrom
scotthart:release_202009

Conversation

scotthart commented Sep 1, 2020
edited by coryan
Loading

Copy link
Copy Markdown
Member

This change is 

scotthart requested review from a team, coryan, devbww and mr-salty September 1, 2020 23:28
googlebot added the cla: yes This human has signed the Contributor License Agreement. label Sep 1, 2020

codecov Bot commented Sep 2, 2020
edited
Loading

Copy link
Copy Markdown

Codecov Report

Merging #5001 into master will increase coverage by 0.00%.
The diff coverage is n/a.

@@           Coverage Diff           @@
##           master    #5001   +/-   ##
=======================================
  Coverage   94.02%   94.02%           
=======================================
  Files         981      981           
  Lines       75603    75604    +1     
=======================================
+ Hits        71082    71084    +2     
+ Misses       4521     4520    -1     
Impacted Files Coverage Δ
google/cloud/completion_queue.cc 97.91% <0.00%> (-2.09%) ⬇️
google/cloud/storage/parallel_upload.cc 99.23% <0.00%> (-0.39%) ⬇️
google/cloud/storage/internal/retry_client.cc 98.12% <0.00%> (-0.27%) ⬇️
google/cloud/pubsub/internal/subscriber_stub.cc 98.96% <0.00%> (+0.01%) ⬆️
...le/cloud/storage/internal/curl_download_request.cc 79.48% <0.00%> (+0.40%) ⬆️
.../cloud/storage/benchmarks/throughput_experiment.cc 100.00% <0.00%> (+0.52%) ⬆️
...cloud/pubsub/internal/subscription_session_test.cc 98.69% <0.00%> (+0.52%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 1c44ca7...276b5d6. Read the comment docs.

coryan left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Quality

Reviewed 1 of 1 files at r1.
Reviewable status: all files reviewed, 7 unresolved discussions (waiting on @devbww, @mr-salty, and @scotthart)


CHANGELOG.md, line 13 at r1 (raw file):

### Storage

**BREAKING CHANGES**

nit: blank line after the **BREAKING CHANGES**?


CHANGELOG.md, line 14 at r1 (raw file):

**BREAKING CHANGES**
* fix(storage)!: use nlohmann_json library as any other dependency (#4747)

Normally we include a longer description for breaking changes, you could use the original PR/commit description:

* After this change applications using CMake must install the
  [nlohmann_json][nlohmann-json-gh] library. Automatically downloading
  the library (a) creates problems for package maintainers, (b) requires
  brittle code to keep the symbols from leaking, and (c) creates problems
  for users that need newer versions of this library, for example, because
  they are using a compiler that was not supported by the version we pick.
  * Applications using Bazel or CMake super builds should not be impacted.
  * We have updated our instructions to install this library from source on
     multiple Linux distributions.
  * Applications using a package manager will need to update their build
    scripts to add this dependency.
* In addition, this removes a number of symbols in the
  `google_cloud_cpp_internal_nlohmman_json_3_4_0::` namespace.
  Obviously we never intended these symbols for public use, but we
  should have been clearer about it.

[nlohmann-json-gh]: https://github.com/nlohmann/json.git

CHANGELOG.md, line 19 at r1 (raw file):

* doc(storage): fix typo in quickstart/README.md (#4857)
* doc: update quickstart README files (#4980)

The last two could be summarized I think..


CHANGELOG.md, line 27 at r1 (raw file):

* doc(spanner): fix quickstart/README.md (#4855)
* doc: update quickstart README files (#4980)

These two could be summarized I think:

* doc: update quickstart README files (#4980) (#4855)

CHANGELOG.md, line 33 at r1 (raw file):

* feat(common): non-proto values in PaginationRange (#4806)
* feat: a LogWrapper for future<Status> (#4772)

Seems like an internal-only change.


CHANGELOG.md, line 35 at r1 (raw file):

* feat: a LogWrapper for future<Status> (#4772)
* feat: add a `KmsKeyName` class (#4891)
* feat: add the ContainsOnce() matcher to testing_util (#4913)

I would skip test_util changes, they are not interesting for users.


CHANGELOG.md, line 41 at r1 (raw file):

* fix: clang-tidy works on all headers (#4844)
* fix: cmake configs missing find_dependency(abseil) (#4919)
* refactor: use absl::{con,dis}junction instead of our own (#4826)

Probably uninteresting, it is in the internal-namespace only, that is tru for #4972 #4973 and #4806 (above) too.

scotthart left a comment

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Quality

Reviewable status: all files reviewed, 6 unresolved discussions (waiting on @coryan, @devbww, and @mr-salty)


CHANGELOG.md, line 14 at r1 (raw file):

Previously, coryan (Carlos O'Ryan) wrote…

Normally we include a longer description for breaking changes, you could use the original PR/commit description:

* After this change applications using CMake must install the
  [nlohmann_json][nlohmann-json-gh] library. Automatically downloading
  the library (a) creates problems for package maintainers, (b) requires
  brittle code to keep the symbols from leaking, and (c) creates problems
  for users that need newer versions of this library, for example, because
  they are using a compiler that was not supported by the version we pick.
  * Applications using Bazel or CMake super builds should not be impacted.
  * We have updated our instructions to install this library from source on
     multiple Linux distributions.
  * Applications using a package manager will need to update their build
    scripts to add this dependency.
* In addition, this removes a number of symbols in the
  `google_cloud_cpp_internal_nlohmman_json_3_4_0::` namespace.
  Obviously we never intended these symbols for public use, but we
  should have been clearer about it.

[nlohmann-json-gh]: https://github.com/nlohmann/json.git

Done.


CHANGELOG.md, line 19 at r1 (raw file):

Previously, coryan (Carlos O'Ryan) wrote…

The last two could be summarized I think..

Done.


CHANGELOG.md, line 27 at r1 (raw file):

Previously, coryan (Carlos O'Ryan) wrote…

These two could be summarized I think:

* doc: update quickstart README files (#4980) (#4855)

Done.


CHANGELOG.md, line 33 at r1 (raw file):

Previously, coryan (Carlos O'Ryan) wrote…

Seems like an internal-only change.

Done.


CHANGELOG.md, line 35 at r1 (raw file):

Previously, coryan (Carlos O'Ryan) wrote…

I would skip test_util changes, they are not interesting for users.

Done.


CHANGELOG.md, line 41 at r1 (raw file):

Previously, coryan (Carlos O'Ryan) wrote…

Probably uninteresting, it is in the internal-namespace only, that is tru for #4972 #4973 and #4806 (above) too.

Done.

coryan left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Quality

You may want to make sure nothing interesting happened since yesterday, but otherwise this

Reviewed 1 of 1 files at r2.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @devbww and @mr-salty)

scotthart merged commit 8acd9c3 into googleapis:master Sep 2, 2020
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cla: yes This human has signed the Contributor License Agreement.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants


Back | FazBrowse Home | New Git URL