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

Bump rollbar from 0.16.2 to 1.1.0 in /requirements #989

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 13, 2024

Bumps rollbar from 0.16.2 to 1.1.0.

Release notes

Sourced from rollbar's releases.

v1.1.0

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

... (truncated)

Changelog

Sourced from rollbar's changelog.

Change Log

The change log is also available on the GitHub Releases Page.

1.1.0

1.1.0-beta

1.1.0-alpha

1.0.0

0.16.3

  • Pinned Python 2 CI tests to legacy version of dependencies. See #408
  • Add PyPI badge for supported Python versions. See #408
  • Add Django 4.0+ compatibility. See #408
  • Update PR template. See #408
  • SC-95272: Remove support for Python 3.3. See #408

... (truncated)

Commits
  • a809a6b Merge pull request #464 from rollbar/release/1.1.0
  • 035f8be Bumped version to 1.1.0 and added changelog.
  • a641597 Merge pull request #462 from rollbar/release/1.1.0-beta
  • 4685480 Bumped version to 1.1.0-beta and added changelog.
  • 9d08577 Merge pull request #461 from rollbar/changed/shortner-to-breadth-first-traverse
  • 9200f86 Fixed test of dropped dictionary.
  • 5fe14fc Changed dropped dictionary from empty to {'...': '...'}.
  • d0c6de6 Fixed Python < 3.9 typing imports
  • fd06df3 Changed the ShortenerTransform to use breadth first traversal
  • 3a2330f Merge pull request #460 from rollbar/added/python3.12
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [rollbar](https://github.com/rollbar/pyrollbar) from 0.16.2 to 1.1.0.
- [Release notes](https://github.com/rollbar/pyrollbar/releases)
- [Changelog](https://github.com/rollbar/pyrollbar/blob/master/CHANGELOG.md)
- [Commits](rollbar/pyrollbar@v0.16.2...v1.1.0)

---
updated-dependencies:
- dependency-name: rollbar
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants