Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sentrivana authored Mar 20, 2024
1 parent 2020eca commit 970c577
Showing 1 changed file with 24 additions and 5 deletions.
29 changes: 24 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,32 @@

### Various fixes & improvements

- feat: Add optional `keep_alive` (#2842) by @sentrivana
- fix(awslambda): aws_event can be an empty list (#2849) by @sentrivana
- build(deps): bump checkouts/data-schemas from `ed078ed` to `8232f17` (#2832) by @dependabot
- feat(integrations): Add support for celery-redbeat cron tasks (#2643) by @kwigley
- Small APIdocs improvement (#2828) by @antonpirker
- Add optional `keep_alive` (#2842) by @sentrivana

If you're experiencing frequent network issues between the SDK and Sentry,
you can try turning on TCP keep-alive:

```python
import sentry_sdk

sentry_sdk.init(
# ...your usual settings...
keep_alive=True,
)
```

- Add support for Celery Redbeat cron tasks (#2643) by @kwigley

The SDK now supports the Redbeat scheduler in addition to the default
Celery Beat scheduler for auto instrumenting crons. See
[the docs](https://docs.sentry.io/platforms/python/integrations/celery/crons/)
for more information about how to set this up.

- `aws_event` can be an empty list (#2849) by @sentrivana
- Re-export `Event` in `types.py` (#2829) by @szokeasaurusrex
- Small API docs improvement (#2828) by @antonpirker
- Fixed OpenAI tests (#2834) by @antonpirker
- Bump `checkouts/data-schemas` from `ed078ed` to `8232f17` (#2832) by @dependabot

## 1.42.0

Expand Down

0 comments on commit 970c577

Please sign in to comment.