[DRE-commits] [ruby-sentry-raven] branch master updated (80b4be7 -> 906a2c0)

Sagar Ippalpalli isaagar-guest at moszumanska.debian.org
Wed Jun 7 04:26:37 UTC 2017


This is an automated email from the git hooks/post-receive script.

isaagar-guest pushed a change to branch master
in repository ruby-sentry-raven.

      from  80b4be7   reupload to unstable
      adds  27727f5   New upstream version 2.5.1
       new  2102523   Merge tag 'upstream/2.5.1'
       new  13874f4   update changelog
       new  906a2c0   refresh patch

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |   1 +
 .rubocop.yml                                       |  13 +-
 .travis.yml                                        |  23 +--
 Gemfile                                            |   2 +-
 README.md                                          |  91 ++++++++++-
 Rakefile                                           |   4 +-
 benchmarks/allocation_report.rb                    |  30 ++++
 benchmarks/{benchmark.rb => async_benchmark.rb}    |   5 +-
 benchmarks/benchmark.rb                            |   4 +-
 benchmarks/json.rb                                 |  22 ---
 benchmarks/profile.rb                              |  35 +++++
 changelog.md                                       |  65 ++++++++
 debian/changelog                                   |   7 +
 .../patches/disable-tests-requiring-rubocop.patch  |  16 +-
 docs/config.rst                                    |  21 ++-
 docs/context.rst                                   |   4 +-
 docs/integrations/index.rst                        |   1 +
 docs/integrations/puma.rst                         |  30 ++++
 docs/integrations/rack.rst                         |  12 ++
 docs/integrations/rails.rst                        |  31 ++--
 docs/sentry-doc-config.json                        |   2 -
 examples/rails-5.0/config/application.rb           |   2 +
 gemfiles/rails32.gemfile                           |   6 -
 gemfiles/rails42.gemfile                           |  11 +-
 gemfiles/rails5.gemfile                            |   2 +-
 lib/raven/backtrace.rb                             |   9 +-
 lib/raven/base.rb                                  |   5 +-
 lib/raven/cli.rb                                   |   2 -
 lib/raven/client.rb                                |  11 +-
 lib/raven/configuration.rb                         |  53 +++++--
 lib/raven/context.rb                               |  20 +--
 lib/raven/event.rb                                 |  58 +++----
 lib/raven/instance.rb                              |  30 ++--
 lib/raven/integrations/delayed_job.rb              |   4 +-
 lib/raven/integrations/rack-timeout.rb             |   3 +-
 lib/raven/integrations/rack.rb                     |   2 +-
 lib/raven/integrations/rails.rb                    |   5 +-
 lib/raven/integrations/rake.rb                     |   2 +-
 lib/raven/integrations/sidekiq.rb                  |  21 ++-
 lib/raven/interfaces/message.rb                    |   2 +-
 lib/raven/interfaces/stack_trace.rb                |  29 ++--
 lib/raven/linecache.rb                             |  48 ++++--
 lib/raven/logger.rb                                |  26 ++--
 lib/raven/processor.rb                             |   2 +-
 lib/raven/processor/cookies.rb                     |  26 +++-
 lib/raven/processor/http_headers.rb                |  23 ++-
 lib/raven/processor/post_data.rb                   |  17 +-
 lib/raven/processor/removecircularreferences.rb    |  18 ++-
 lib/raven/processor/removestacktrace.rb            |  23 ++-
 lib/raven/processor/sanitizedata.rb                |  49 +++---
 lib/raven/processor/utf8conversion.rb              |  43 +++--
 lib/raven/transports.rb                            |   6 -
 lib/raven/transports/http.rb                       |  17 +-
 lib/raven/utils/deep_merge.rb                      |   2 +
 lib/raven/version.rb                               |   2 +-
 sentry-raven.gemspec                               |   2 +-
 spec/raven/configuration_spec.rb                   |  21 ++-
 spec/raven/event_spec.rb                           | 124 +++++++++++----
 spec/raven/instance_spec.rb                        |  48 ++++--
 spec/raven/integration_spec.rb                     |   6 +-
 spec/raven/integrations/rack_spec.rb               |  21 ++-
 .../middleware/debug_exceptions_catcher_spec.rb    |  73 ---------
 .../overrides/debug_exceptions_catcher_spec.rb     |  32 ++--
 spec/raven/integrations/rails_spec.rb              |  12 +-
 spec/raven/integrations/rake_spec.rb               |   5 +-
 spec/raven/integrations/sidekiq_spec.rb            |   4 +-
 spec/raven/interface_spec.rb                       |   4 +
 spec/raven/interfaces/stack_trace_spec.rb          |  11 ++
 spec/raven/json_spec.rb                            |  37 ++++-
 spec/raven/linecache_spec.rb                       |  40 +++++
 spec/raven/logger_spec.rb                          |  29 +---
 spec/raven/processors/cookies_spec.rb              |  24 ++-
 spec/raven/processors/http_headers_spec.rb         |  16 ++
 spec/raven/processors/post_data_spec.rb            |  15 ++
 .../processors/removecirculareferences_spec.rb     |   2 +-
 spec/raven/processors/removestacktrace_spec.rb     |  10 ++
 .../processors/sanitizedata_processor_spec.rb      |   4 +-
 spec/raven/processors/utf8conversion_spec.rb       |  17 +-
 spec/raven/raven_spec.rb                           | 173 ++-------------------
 spec/raven/transports/http_spec.rb                 |  25 +++
 spec/spec_helper.rb                                |   2 +-
 spec/support/Rakefile                              |   3 +-
 spec/support/linecache.txt                         |   6 +
 83 files changed, 1106 insertions(+), 658 deletions(-)
 create mode 100644 benchmarks/allocation_report.rb
 copy benchmarks/{benchmark.rb => async_benchmark.rb} (83%)
 delete mode 100644 benchmarks/json.rb
 create mode 100644 benchmarks/profile.rb
 create mode 100644 docs/integrations/puma.rst
 delete mode 100644 gemfiles/rails32.gemfile
 delete mode 100644 spec/raven/integrations/rails/middleware/debug_exceptions_catcher_spec.rb
 create mode 100644 spec/raven/interfaces/stack_trace_spec.rb
 create mode 100644 spec/raven/linecache_spec.rb
 create mode 100644 spec/support/linecache.txt

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-sentry-raven.git



More information about the Pkg-ruby-extras-commits mailing list