Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Releases: rollbar/pyrollbar

v1.3.0

26 Mar 15:07
84efba4
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading

What's Changed

Added

  • Added support for classes to define the method__rollbar_repr__ to control how objects are serialized by@danielmorell in#479
  • Added support for Python 3.13 by@danielmorell in#477

Removed

Changed

Full Changelog:v1.2.0...v1.3.0

Contributors

  • @danielmorell
danielmorell
Assets2
Loading

v1.2.0

14 Feb 20:54
eda7210
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading

What's Changed

Added

Fixed

New Contributors

Full Changelog:v1.1.2...v1.2.0

Contributors

  • @waltjones
  • @danielmorell
  • @ilkecan
waltjones, danielmorell, and ilkecan
Loading

v1.1.2

21 Jan 12:58
768d45a
This commit was signed with the committer’sverified signature.
danielmorell Daniel Morell
SSH Key Fingerprint:ubfROLRAuTLCPDRXW+mdHYJyvycju4mBMC+Wp7L+C8U
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading

What's Changed

  • Fixed build missing entrypoints for pyramid and cli by@brianr in#471

Full Changelog:v1.1.1...v1.1.2

Contributors

  • @brianr
brianr
Loading

v1.1.1

10 Jan 22:01
b7b489d
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading

What's Changed

Full Changelog:v1.1.0...v1.1.1

Contributors

  • @danielmorell
danielmorell
Loading

v1.1.0

22 Nov 17:48
a809a6b
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading

Key Changes

Support for Python 3.12

The SDK officially supports and is tested against Python 3.12.

Support forpathlib.Path()

Thanks to a community contributor David Baumgold we now supportpathlib.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...

importrollbarrollbar.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 to1.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:v1.0.0...v1.1.0

Contributors

  • @singingwolfboy
  • @danielmorell
  • @pawelsz-rb
singingwolfboy, danielmorell, and pawelsz-rb
Loading

v1.1.0-beta

06 Nov 12:31
a641597
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading
v1.1.0-betaPre-release
Pre-release

What's Changed

New Contributors

Full Changelog:v1.1.0-alpha...v1.1.0-beta

Contributors

  • @singingwolfboy
  • @danielmorell
singingwolfboy and danielmorell
Loading

v1.1.0-alpha

24 May 20:06
8493ac0
This commit was created on GitHub.com and signed with GitHub’sverified signature.
GPG key ID:B5690EEEBB952194
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading
v1.1.0-alphaPre-release
Pre-release

This release fixes a long-standing bug in the shortening logic that prevented it from fully shortening error reports that are two large. Because this can (and most likely will) change what data is reported to the Rollbar platform, we are releasing this as an alpha. We recommend testing it and adjusting the defaults for local variable shortening as needed.

You can fine tune the local sizes by changing the values from the defaults as shown here:

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

What's Changed

Full Changelog:v1.0.0...v1.0.0-alpha

Contributors

  • @danielmorell
  • @pawelsz-rb
danielmorell and pawelsz-rb
Loading
AdrianB-sovo reacted with thumbs up emoji
1 person reacted

v1.0.0

16 Nov 14:43
dab08cd
This commit was created on GitHub.com and signed with GitHub’sverified signature. The key has expired.
GPG key ID:4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading

PyRollbar 1.0.0 is stable! A big thank you to every one of the amazing contributors who helped get us to this point!

Performance Improvements

Some of the major work has been on making performance improvements to the more data intensive parts of the package. There should be some improvements across the board, however some exciting new performance features include:

  • A new HTTP transfer mechanism that uses a pool of background worker threads to transmit logs and reports to the Rollbar system. You can enable it with the following...
    rollbar.init('<token>','<env>',handler='thread_pool')# Optionally include `thread_pool_workers` to set the number of worker threads.
  • Improved data sanitization and serialization with a batched transform. This can be enabled by settingrollbar.init(..., batch_transforms=True).
    rollbar.init('<token>','<env>',batch_transforms=True)

Note: performance may vary. For example, theasync or another handler may perform better for your environment and workload. We strongly recommend testing before adopting.

Removed Python 2

In version 1.0.0 we have removed support for Python 2. This opens up the opportunity to embrace the ever-improving world of Python 3. If you still require support for Python 2 you should usev0.16.x; it is stable and will continue to receive security fixes for at least another year.

What's Changed

Fixed

Added

Removed

Changed

New Contributors

Full Changelog:v0.16.3...v1.0.0

Contributors

  • @brianr
  • @ayharano
  • @waltjones
  • @mcepl
  • @terencehonles
  • @compyman
  • @albertyw
  • @paulserraino
  • @ijsnow
  • @danielmorell
  • @arpad-fulop-rb
  • @pawelsz-rb
brianr, ayharano, and 10 other contributors
Loading
versusbassz reacted with hooray emoji
1 person reacted

v1.0.0beta1

18 Sep 11:17
781da55
This commit was created on GitHub.com and signed with GitHub’sverified signature. The key has expired.
GPG key ID:4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading
v1.0.0beta1Pre-release
Pre-release

What's Changed

Full Changelog:v1.0.0beta0...v1.0.0beta1

Contributors

  • @danielmorell
danielmorell
Loading

v1.0.0beta0

01 Sep 22:24
9fe5f8e
This commit was created on GitHub.com and signed with GitHub’sverified signature. The key has expired.
GPG key ID:4AEE18F83AFDEB23
Expired
Verified
Learn about vigilant mode.
Compare
Choose a tag to compare
Loading
v1.0.0beta0Pre-release
Pre-release

Inv1.0.0 we will be removing support for Python 2. There are also a number of bug fixes and other small improvements. Removing the support for Python 2 reduced function calls and memory allocations allowing our data collection, cleaning, and serialization to be around 18% percent faster in benchmarks.

What's Changed

New Contributors

Full Changelog:v0.16.4beta1...v1.0.0beta0

Contributors

  • @ayharano
  • @terencehonles
  • @albertyw
  • @danielmorell
ayharano, terencehonles, and 2 other contributors
Loading
Previous1345
Previous

[8]ページ先頭

©2009-2025 Movatter.jp