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

Add note about dropping redis<4 support #18959

Merged
merged 2 commits into from
Oct 15, 2024
Merged
Changes from 1 commit
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,22 @@ subject: Python agent
releaseDate: '2023-08-10'
version: 8.10.0
downloadLink: 'https://pypi.python.org/pypi/newrelic'
features: ['Add support for firestore', 'Add support for Redis async', 'Add automatic wrapping for async generators']
features: ['Add support for firestore', 'Add support for Redis async', 'Add automatic wrapping for async generators', 'Drop support for redis 3 and below']
bugs: ['Fix crash on throw for wrapped generator']
security: []
---

## Notes

This release of the Python agent adds support for [Google Cloud Firestore](https://pypi.org/project/google-cloud-firestore/).
This release of the Python agent drops support for redis 3 and below and adds support for [Google Cloud Firestore](https://pypi.org/project/google-cloud-firestore/), async [redis](https://pypi.org/project/redis/), and fixes a crash that occurs when wrapping generators.
hmstepanek marked this conversation as resolved.
Show resolved Hide resolved

Install the agent using `easy_install/pip/distribute` via the [Python Package Index](https://pypi.python.org/pypi/newrelic) or download it directly from the [New Relic download site](https://download.newrelic.com/python_agent/release).

## Deprecations

* **Drop support for redis 3 and below**
hmstepanek marked this conversation as resolved.
Show resolved Hide resolved
As of 8.10.0, [redis](https://pypi.org/project/redis/3.5.3/) 3 and below are no longer supported. Because redis 4 and above no longer support Python2.7, this means Python2.7 support has been dropped from redis as well.
hmstepanek marked this conversation as resolved.
Show resolved Hide resolved

## Enhancements

* **Add support for Firestore**
Expand Down
Loading