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

chore(deps): update dependency rollbar to v1.1.0 #2832

Merged
merged 1 commit into from
Nov 22, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 22, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
rollbar (changelog) ==1.0.0 -> ==1.1.0 age adoption passing confidence

Release Notes

rollbar/pyrollbar (rollbar)

v1.1.0

Compare Source

Key Changes

Support for Python 3.12

The SDK officially supports and is tested against Python 3.12.

Support for pathlib.Path()

Thanks to a community contributor David Baumgold we now support pathlib.Path() instead of just strings for both serialization and settings.

Enforce Locals Max Sizes

In this release we have made some significant improvements to how we process large complex stack frames. There were shortening settings that were not properly being applied while truncating large objects. We have resolved those issues and made some other performance improvements to our data processing within the SDK.

We recommend reviewing the locals max sizes settings. The defaults are as follows...

import rollbar

rollbar.init(
    access_token='<your token>',
    locals={
        'sizes': {
            'maxlevel': 5,
            'maxdict': 10,
            'maxlist': 10,
            'maxtuple': 10,
            'maxset': 10,
            'maxfrozenset': 10,
            'maxdeque': 10,
            'maxarray': 10,
            'maxstring': 100,
            'maxlong': 40,
            'maxother': 100,
        },
    }
)

The locals max sizes values were not consistently enforced in versions prior to 1.1.0, and so you may find that data previously included in prior version of the SDK is now being truncated. If that data is vital to your error investigation, you will want to adjust these values.
 

What's Changed

Full Changelog: rollbar/pyrollbar@v1.0.0...v1.1.0


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

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


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Third-party library dependencies. label Nov 22, 2024
@renovate renovate bot enabled auto-merge (squash) November 22, 2024 19:09
@renovate renovate bot merged commit 388ee46 into main Nov 22, 2024
40 checks passed
@renovate renovate bot deleted the renovate/rollbar-1.x branch November 22, 2024 19:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Third-party library dependencies.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants