Skip to content

Commit

Permalink
chore(deps): lock file maintenance workers (#2698)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Type | Update | Change | Age | Adoption | Passing |
Confidence |
|---|---|---|---|---|---|---|---|
|  |  | lockFileMaintenance | All locks refreshed |  |  |  |  |
|
[google-cloud-pubsub](https://redirect.github.com/googleapis/python-pubsub)
| dependencies | minor | `==2.23.1` -> `==2.25.2` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/google-cloud-pubsub/2.25.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/google-cloud-pubsub/2.25.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/google-cloud-pubsub/2.23.1/2.25.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/google-cloud-pubsub/2.23.1/2.25.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [redis](https://redirect.github.com/redis/redis-py)
([changelog](https://redirect.github.com/redis/redis-py/releases)) |
dependencies | minor | `==5.0.8` -> `==5.1.0` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/redis/5.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/redis/5.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/redis/5.0.8/5.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/redis/5.0.8/5.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

πŸ”§ This Pull Request updates lock files to use the latest dependency
versions.

---

### Release Notes

<details>
<summary>googleapis/python-pubsub (google-cloud-pubsub)</summary>

###
[`v2.25.2`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2252-2024-09-30)

[Compare
Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.25.1...v2.25.2)

##### Documentation

- Add command line args for OpenTelemetry Subscribe sample
([#&#8203;1265](https://redirect.github.com/googleapis/python-pubsub/issues/1265))
([0ff7f2a](https://redirect.github.com/googleapis/python-pubsub/commit/0ff7f2a64b5aa1b0e014e0933e4edaef0fb3f222))

###
[`v2.25.1`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2251-2024-09-29)

[Compare
Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.25.0...v2.25.1)

##### Bug Fixes

- Update the requirements.txt for samples directory
([#&#8203;1263](https://redirect.github.com/googleapis/python-pubsub/issues/1263))
([5cce8b1](https://redirect.github.com/googleapis/python-pubsub/commit/5cce8b103ab7085613b7ee0efb5c8342d41ebae1))

###
[`v2.25.0`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2250-2024-09-28)

[Compare
Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.23.1...v2.25.0)

##### Features

- Add OpenTelemetry publish sample
([#&#8203;1258](https://redirect.github.com/googleapis/python-pubsub/issues/1258))
([bc13ff0](https://redirect.github.com/googleapis/python-pubsub/commit/bc13ff05c3d1104c17169c360bdc09340430da37))

</details>

<details>
<summary>redis/redis-py (redis)</summary>

###
[`v5.1.0`](https://redirect.github.com/redis/redis-py/releases/tag/v5.1.0):
5.1.0

[Compare
Source](https://redirect.github.com/redis/redis-py/compare/v5.0.8...v5.1.0)

### Changes

#### πŸš€ New Features

- Client-side caching
([#&#8203;3350](https://redirect.github.com/redis/redis-py/issues/3350),
[#&#8203;3110](https://redirect.github.com/redis/redis-py/issues/3110),
[#&#8203;3102](https://redirect.github.com/redis/redis-py/issues/3102),
[#&#8203;3099](https://redirect.github.com/redis/redis-py/issues/3099),
[#&#8203;3089](https://redirect.github.com/redis/redis-py/issues/3089),
[#&#8203;3038](https://redirect.github.com/redis/redis-py/issues/3038))

##### How to start with Client-side caching?

1.  Install redis-py 5.1.0
2.  Use the following code snippet:

```python
r = Redis(protocol=3, cache_config=CacheConfig())

cache = r.get_cache()
r.set("foo", "bar")

### get key from redis and save in local cache
print(r.get("foo"))

### get key from local cache
print(cache.get(CacheKey(command="GET", redis_keys=("foo",))).cache_value)

### change key in redis (cause invalidation)
r.set("foo", "barbar")

### Retrieves a new value from server and cache it
print(r.get("foo"))

### Make sure that new value was cached
print(cache.get(CacheKey(command="GET", redis_keys=("foo",))).cache_value)
```

Check
[documentation](https://redis.readthedocs.io/en/latest/resp3\_features.html#client-side-caching)
to get more examples

#### πŸ”₯ Breaking Changes

- Timeseries insertion filters for close samples
([#&#8203;3228](https://redirect.github.com/redis/redis-py/issues/3228))
- Enhanced classes string representation
([#&#8203;3001](https://redirect.github.com/redis/redis-py/issues/3001))
- Partial clean up of Python 3.7 compatibility
([#&#8203;2928](https://redirect.github.com/redis/redis-py/issues/2928))

#### πŸ› Bug Fixes

- Handle RESP3 sets as Python lists
([#&#8203;3324](https://redirect.github.com/redis/redis-py/issues/3324))
- Prevent async ClusterPipeline instances from becoming "false-y"
([#&#8203;3068](https://redirect.github.com/redis/redis-py/issues/3068))
- Add hostname field to \_parse_node_line
([#&#8203;3343](https://redirect.github.com/redis/redis-py/issues/3343))
- More docs fixes
([#&#8203;3326](https://redirect.github.com/redis/redis-py/issues/3326))
- Delete the first-defined (and thus "duplicate") Script class
([#&#8203;3333](https://redirect.github.com/redis/redis-py/issues/3333))
- Catch a known DeprecationWarning when calling .close()
([#&#8203;3335](https://redirect.github.com/redis/redis-py/issues/3335))
- Add missed redismod at test_commands.py
([#&#8203;3369](https://redirect.github.com/redis/redis-py/issues/3369))

#### 🧰 Maintenance

- Update README.md - mentioning redis 7.4 support
([#&#8203;3375](https://redirect.github.com/redis/redis-py/issues/3375))
- Update PyPy 3.8 to 3.10 in CI
([#&#8203;3370](https://redirect.github.com/redis/redis-py/issues/3370))
- Updated commands from docker-compose to docker compose
([#&#8203;3352](https://redirect.github.com/redis/redis-py/issues/3352))
- Added version restrictions for pytest-asyncio
([#&#8203;3362](https://redirect.github.com/redis/redis-py/issues/3362))
- Documentation examples
([#&#8203;3361](https://redirect.github.com/redis/redis-py/issues/3361),
[#&#8203;3372](https://redirect.github.com/redis/redis-py/issues/3372),
[#&#8203;3374](https://redirect.github.com/redis/redis-py/issues/3374),
[#&#8203;3377](https://redirect.github.com/redis/redis-py/issues/3377),
[#&#8203;3378](https://redirect.github.com/redis/redis-py/issues/3378))

#### Contributors

We'd like to thank all the contributors who worked on this release!

[@&#8203;AYMENJD](https://redirect.github.com/AYMENJD),
[@&#8203;AniketP04](https://redirect.github.com/AniketP04),
[@&#8203;BackflipPenguin](https://redirect.github.com/BackflipPenguin),
[@&#8203;ING-XIAOJIAN](https://redirect.github.com/ING-XIAOJIAN),
[@&#8203;MrDenkoV](https://redirect.github.com/MrDenkoV),
[@&#8203;Pedram-Parsian](https://redirect.github.com/Pedram-Parsian),
[@&#8203;TheBlusky](https://redirect.github.com/TheBlusky),
[@&#8203;TomerHekmati](https://redirect.github.com/TomerHekmati),
[@&#8203;Wh1isper](https://redirect.github.com/Wh1isper),
[@&#8203;Zaczero](https://redirect.github.com/Zaczero),
[@&#8203;ahmedabdou14](https://redirect.github.com/ahmedabdou14),
[@&#8203;akx](https://redirect.github.com/akx),
[@&#8203;andy-stark-redis](https://redirect.github.com/andy-stark-redis),
[@&#8203;catap](https://redirect.github.com/catap),
[@&#8203;chayim](https://redirect.github.com/chayim),
[@&#8203;d184230](https://redirect.github.com/d184230),
[@&#8203;danielzhangau](https://redirect.github.com/danielzhangau),
[@&#8203;daveisfera](https://redirect.github.com/daveisfera),
[@&#8203;dependabot](https://redirect.github.com/dependabot),
[@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot],
[@&#8203;dkuser](https://redirect.github.com/dkuser),
[@&#8203;dmaier-redislabs](https://redirect.github.com/dmaier-redislabs),
[@&#8203;dmkulazhenko](https://redirect.github.com/dmkulazhenko),
[@&#8203;dudizimber](https://redirect.github.com/dudizimber),
[@&#8203;dvora-h](https://redirect.github.com/dvora-h),
[@&#8203;dwdougherty](https://redirect.github.com/dwdougherty),
[@&#8203;enjoy-binbin](https://redirect.github.com/enjoy-binbin),
[@&#8203;gerzse](https://redirect.github.com/gerzse),
[@&#8203;hongqn](https://redirect.github.com/hongqn),
[@&#8203;jakob-keller](https://redirect.github.com/jakob-keller),
[@&#8203;kristjanvalur](https://redirect.github.com/kristjanvalur),
[@&#8203;kurtmckee](https://redirect.github.com/kurtmckee),
[@&#8203;matrey](https://redirect.github.com/matrey),
[@&#8203;mattwang44](https://redirect.github.com/mattwang44),
[@&#8203;max-muoto](https://redirect.github.com/max-muoto),
[@&#8203;parmenashp](https://redirect.github.com/parmenashp),
[@&#8203;poiuj](https://redirect.github.com/poiuj),
[@&#8203;r0ro](https://redirect.github.com/r0ro),
[@&#8203;sjpotter](https://redirect.github.com/sjpotter),
[@&#8203;tbbream](https://redirect.github.com/tbbream),
[@&#8203;trkwyk](https://redirect.github.com/trkwyk),
[@&#8203;uglide](https://redirect.github.com/uglide),
[@&#8203;vladvildanov](https://redirect.github.com/vladvildanov),
[@&#8203;w-miller](https://redirect.github.com/w-miller),
[@&#8203;wKollendorf](https://redirect.github.com/wKollendorf),
[@&#8203;willfrey](https://redirect.github.com/willfrey),
[@&#8203;willianmrs](https://redirect.github.com/willianmrs),
[@&#8203;zakaf](https://redirect.github.com/zakaf),
[@&#8203;zware](https://redirect.github.com/zware) and
[@&#8203;zxjlm](https://redirect.github.com/zxjlm)

</details>

---

### Configuration

πŸ“… **Schedule**: Branch creation - "before 6am on wednesday" in timezone
Australia/Sydney, 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.

πŸ‘» **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

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

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/google/osv.dev).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->
  • Loading branch information
renovate-bot authored Oct 2, 2024
1 parent dc3735c commit 707a4ed
Show file tree
Hide file tree
Showing 2 changed files with 130 additions and 101 deletions.
Loading

0 comments on commit 707a4ed

Please sign in to comment.