Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Diregapic lro #858

Merged
merged 21 commits into from
Oct 6, 2021
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
1b7ee1e
feat: enable self signed jwt for gapic clients (#794)
arithmetic1728 Aug 17, 2021
7691f4e
chore: release 2.1.0 (#827)
release-please[bot] Aug 17, 2021
fdcfe70
feat: REGAPIC initial implementation (#824)
vam-google Aug 26, 2021
445daf4
feat: REGAPIC Multitransport implementation (grpc+rest) (#833)
vam-google Sep 6, 2021
92f7c1c
fix: [bazel] fix rest transport handling in assembly rule (#835)
vam-google Sep 7, 2021
556e7dd
Portable String <--> bytes conversion (#841)
chanseokoh Sep 14, 2021
d335340
Fix development doc (#837)
chanseokoh Sep 14, 2021
8ca140c
Remove warnings (unused vars, dead code, missing annotations, missing…
chanseokoh Sep 14, 2021
a7d905e
Remove warnings for test code (#842)
chanseokoh Sep 17, 2021
6a9f329
Remove extraneous call (#844)
chanseokoh Sep 17, 2021
98b891f
Fix preserving sorted order of a collection (#845)
chanseokoh Sep 20, 2021
cb1b534
feat: Add REST AIP-151 LRO suport
vam-google Sep 21, 2021
f569c11
chore(deps): update dependency gradle to v7 (#713)
renovate-bot Sep 29, 2021
73e5a3e
chore(deps): update dependency bazel_skylib to v1.0.3 (#722)
renovate-bot Sep 29, 2021
108e93d
chore(deps): update dependency bazel_skylib to v1.1.1 (#849)
renovate-bot Oct 1, 2021
cd84efe
chore(deps): update dependency gradle to v7.2 (#848)
renovate-bot Oct 1, 2021
3f0bf5a
chore: rename default branch to main (#851)
Neenu1995 Oct 4, 2021
aba0ec0
feat: enable self signed JWT for http (#850)
arithmetic1728 Oct 6, 2021
39c7b9c
Merge remote-tracking branch 'upstream/master' into diregapic-lro
vam-google Oct 6, 2021
d029941
chore: merge changes from master
vam-google Oct 6, 2021
0cf77b5
Merge remote-tracking branch 'upstream/main' into diregapic-lro
vam-google Oct 6, 2021
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
Prev Previous commit
Next Next commit
chore(deps): update dependency bazel_skylib to v1.0.3 (#722)
[![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [bazel_skylib](https://togithub.com/bazelbuild/bazel-skylib) | http_archive | patch | `1.0.2` -> `1.0.3` |

---

### Release Notes

<details>
<summary>bazelbuild/bazel-skylib</summary>

### [`v1.0.3`](https://togithub.com/bazelbuild/bazel-skylib/releases/1.0.3)

[Compare Source](https://togithub.com/bazelbuild/bazel-skylib/compare/1.0.2...1.0.3)

**New Features**

-   copy_file: Add parameter to allow symlinks ([#&#8203;252](https://togithub.com/bazelbuild/bazel-skylib/issues/252))
-   Create Gazelle language for Starlark ([#&#8203;251](https://togithub.com/bazelbuild/bazel-skylib/issues/251))
-   Create a helper rule (`select_file`) for selecting a file from outputs of another rule ([#&#8203;233](https://togithub.com/bazelbuild/bazel-skylib/issues/233))

**Significant Changes**

-   Move Gazelle extension to //gazelle/bzl and change package name
-   Stop depending on rules_pkg through the federation. ([#&#8203;259](https://togithub.com/bazelbuild/bazel-skylib/issues/259))

**Incompatible Changes**

-   Remove links to maprules ([#&#8203;213](https://togithub.com/bazelbuild/bazel-skylib/issues/213))
-   Remove old_sets.bzl ([#&#8203;231](https://togithub.com/bazelbuild/bazel-skylib/issues/231))
    It has been deprecated for a while, the code is not really compatible with Bazel depset-related changes.

**Contributors**
Andrew Z Allen, Bocete, Bor Kae Hwang, irengrig, Jay Conrod, Jonathan B Coe, Marc Plano-Lesay, Robbert van Ginkel, Thomas Van Lenten, Yannic, and the Bazel team.

**WORKSPACE setup**

```
load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "bazel_skylib",
    urls = [
        "https://github.com/bazelbuild/bazel-skylib/releases/download/1.0.3/bazel-skylib-1.0.3.tar.gz",
        "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.0.3/bazel-skylib-1.0.3.tar.gz",
    ],
    sha256 = "1c531376ac7e5a180e0237938a2536de0c54d93f5c278634818e0efc952dd56c",
)
load("@&#8203;bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
bazel_skylib_workspace()

```

**Using the rules**

See [the source](https://togithub.com/bazelbuild/bazel-skylib/tree/1.0.3).

</details>

---

### Configuration

📅 **Schedule**: At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻️ **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box.

---

This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/gapic-generator-java).
  • Loading branch information
renovate-bot authored Sep 29, 2021
commit 73e5a3e208ee02ccf191c4823d52431b90011ae4
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ load("@bazel_tools//tools/build_defs/repo:jvm.bzl", "jvm_maven_import_external")
# like protobuf will build.
http_archive(
name = "bazel_skylib",
sha256 = "97e70364e9249702246c0e9444bccdc4b847bed1eb03c5a3ece4f83dfe6abc44",
sha256 = "1c531376ac7e5a180e0237938a2536de0c54d93f5c278634818e0efc952dd56c",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.0.3/bazel-skylib-1.0.3.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.0.3/bazel-skylib-1.0.3.tar.gz",
],
)

Expand Down