appsignal 2.10.7-java → 2.11.0.alpha.2-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.semaphore/semaphore.yml +45 -53
- data/CHANGELOG.md +18 -0
- data/build_matrix.yml +13 -6
- data/ext/agent.yml +19 -19
- data/ext/appsignal_extension.c +10 -1
- data/ext/base.rb +15 -4
- data/gemfiles/padrino.gemfile +2 -2
- data/lib/appsignal.rb +21 -1
- data/lib/appsignal/capistrano.rb +2 -0
- data/lib/appsignal/config.rb +6 -2
- data/lib/appsignal/environment.rb +126 -0
- data/lib/appsignal/extension/jruby.rb +10 -0
- data/lib/appsignal/hooks/net_http.rb +2 -0
- data/lib/appsignal/hooks/puma.rb +2 -58
- data/lib/appsignal/hooks/redis.rb +2 -0
- data/lib/appsignal/hooks/sequel.rb +2 -0
- data/lib/appsignal/hooks/sidekiq.rb +2 -99
- data/lib/appsignal/integrations/delayed_job_plugin.rb +16 -3
- data/lib/appsignal/integrations/object.rb +4 -0
- data/lib/appsignal/integrations/resque_active_job.rb +12 -4
- data/lib/appsignal/probes/puma.rb +61 -0
- data/lib/appsignal/probes/sidekiq.rb +102 -0
- data/lib/appsignal/rack/js_exception_catcher.rb +5 -2
- data/lib/appsignal/transaction.rb +22 -7
- data/lib/appsignal/version.rb +1 -1
- data/lib/puma/plugin/appsignal.rb +2 -1
- data/spec/lib/appsignal/cli/diagnose_spec.rb +2 -1
- data/spec/lib/appsignal/config_spec.rb +6 -1
- data/spec/lib/appsignal/environment_spec.rb +167 -0
- data/spec/lib/appsignal/hooks/delayed_job_spec.rb +198 -166
- data/spec/lib/appsignal/hooks/puma_spec.rb +2 -181
- data/spec/lib/appsignal/hooks/sidekiq_spec.rb +256 -462
- data/spec/lib/appsignal/integrations/padrino_spec.rb +1 -1
- data/spec/lib/appsignal/integrations/resque_active_job_spec.rb +55 -13
- data/spec/lib/appsignal/probes/puma_spec.rb +180 -0
- data/spec/lib/appsignal/probes/sidekiq_spec.rb +201 -0
- data/spec/lib/appsignal/rack/js_exception_catcher_spec.rb +9 -4
- data/spec/lib/appsignal/transaction_spec.rb +30 -13
- data/spec/lib/appsignal_spec.rb +22 -0
- data/spec/lib/puma/appsignal_spec.rb +1 -1
- data/spec/support/helpers/dependency_helper.rb +5 -0
- data/spec/support/helpers/env_helpers.rb +1 -1
- data/spec/support/helpers/environment_metdata_helper.rb +16 -0
- data/spec/support/stubs/sidekiq/api.rb +1 -1
- metadata +19 -8
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 4a510cdd0af6ef1f3780e5d559a41762d7d2b094fb5309d0e10d143b223e76fb
         | 
| 4 | 
            +
              data.tar.gz: d7195e855b5a2ea44db9cfdd9c132dfb2afda1994bc4c7c8aba08181f47081d8
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: bcf0aa5c31a43142fb264dab678ae2b19896d2b1618ae3caf6fbacfff67c3fd46c62c87f062968a92ca93abfc88f159d7c849ca03862c661fd5540112b2a5b9a
         | 
| 7 | 
            +
              data.tar.gz: 9eb9618c8cb83f87db2b183573e64313a6fe01651bf2f5e93b748347de38e64716053ba7dcf42ce9a2954caa1c3e2096153acb37543a49cfe4c069afe7e8c705
         | 
    
        data/.semaphore/semaphore.yml
    CHANGED
    
    | @@ -33,9 +33,10 @@ global_job_config: | |
| 33 33 | 
             
                - checkout
         | 
| 34 34 | 
             
                - sem-version ruby $RUBY_VERSION
         | 
| 35 35 | 
             
                - "./support/check_versions"
         | 
| 36 | 
            -
                - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE) | 
| 37 | 
            -
                - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE) | 
| 36 | 
            +
                - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 37 | 
            +
                - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 38 38 | 
             
                - "./support/install_deps"
         | 
| 39 | 
            +
                - bundle config set clean 'true'
         | 
| 39 40 | 
             
                - "./support/bundler_wrapper install --jobs=3 --retry=3"
         | 
| 40 41 | 
             
              epilogue:
         | 
| 41 42 | 
             
                on_pass:
         | 
| @@ -43,6 +44,11 @@ global_job_config: | |
| 43 44 | 
             
                  - cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 44 45 | 
             
                    .bundle
         | 
| 45 46 | 
             
                  - cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE) $HOME/.gem
         | 
| 47 | 
            +
                on_fail:
         | 
| 48 | 
            +
                  commands:
         | 
| 49 | 
            +
                  - "[ -e ext/install.report ] && cat ext/install.report || echo 'No ext/install.report
         | 
| 50 | 
            +
                    file found'"
         | 
| 51 | 
            +
                  - "[ -f ext/mkmf.log ] && cat ext/mkmf.log || echo 'No ext/mkmf.log file found'"
         | 
| 46 52 | 
             
            blocks:
         | 
| 47 53 | 
             
            - name: Validation
         | 
| 48 54 | 
             
              dependencies: []
         | 
| @@ -166,20 +172,6 @@ blocks: | |
| 166 172 | 
             
                    value: 1.17.3
         | 
| 167 173 | 
             
                  commands:
         | 
| 168 174 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 169 | 
            -
                - name: Ruby 2.0.0-p648 for padrino
         | 
| 170 | 
            -
                  env_vars:
         | 
| 171 | 
            -
                  - name: RUBY_VERSION
         | 
| 172 | 
            -
                    value: 2.0.0-p648
         | 
| 173 | 
            -
                  - name: GEMSET
         | 
| 174 | 
            -
                    value: padrino
         | 
| 175 | 
            -
                  - name: BUNDLE_GEMFILE
         | 
| 176 | 
            -
                    value: gemfiles/padrino.gemfile
         | 
| 177 | 
            -
                  - name: _RUBYGEMS_VERSION
         | 
| 178 | 
            -
                    value: 2.7.8
         | 
| 179 | 
            -
                  - name: _BUNDLER_VERSION
         | 
| 180 | 
            -
                    value: 1.17.3
         | 
| 181 | 
            -
                  commands:
         | 
| 182 | 
            -
                  - "./support/bundler_wrapper exec rake test"
         | 
| 183 175 | 
             
                - name: Ruby 2.0.0-p648 for que
         | 
| 184 176 | 
             
                  env_vars:
         | 
| 185 177 | 
             
                  - name: RUBY_VERSION
         | 
| @@ -521,7 +513,7 @@ blocks: | |
| 521 513 | 
             
                  - name: _RUBYGEMS_VERSION
         | 
| 522 514 | 
             
                    value: latest
         | 
| 523 515 | 
             
                  - name: _BUNDLER_VERSION
         | 
| 524 | 
            -
                    value:  | 
| 516 | 
            +
                    value: latest
         | 
| 525 517 | 
             
                  commands:
         | 
| 526 518 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 527 519 | 
             
                - name: Ruby 2.6.5 for que
         | 
| @@ -678,7 +670,7 @@ blocks: | |
| 678 670 | 
             
                    value: latest
         | 
| 679 671 | 
             
                  commands:
         | 
| 680 672 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 681 | 
            -
            - name: Ruby 2.7. | 
| 673 | 
            +
            - name: Ruby 2.7.1
         | 
| 682 674 | 
             
              dependencies:
         | 
| 683 675 | 
             
              - Validation
         | 
| 684 676 | 
             
              task:
         | 
| @@ -686,10 +678,10 @@ blocks: | |
| 686 678 | 
             
                  commands:
         | 
| 687 679 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 688 680 | 
             
                jobs:
         | 
| 689 | 
            -
                - name: Ruby 2.7. | 
| 681 | 
            +
                - name: Ruby 2.7.1 for no_dependencies
         | 
| 690 682 | 
             
                  env_vars:
         | 
| 691 683 | 
             
                  - name: RUBY_VERSION
         | 
| 692 | 
            -
                    value: 2.7. | 
| 684 | 
            +
                    value: 2.7.1
         | 
| 693 685 | 
             
                  - name: GEMSET
         | 
| 694 686 | 
             
                    value: no_dependencies
         | 
| 695 687 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -700,18 +692,18 @@ blocks: | |
| 700 692 | 
             
                    value: latest
         | 
| 701 693 | 
             
                  commands:
         | 
| 702 694 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 703 | 
            -
            - name: Ruby 2.7. | 
| 695 | 
            +
            - name: Ruby 2.7.1 - Gems
         | 
| 704 696 | 
             
              dependencies:
         | 
| 705 | 
            -
              - Ruby 2.7. | 
| 697 | 
            +
              - Ruby 2.7.1
         | 
| 706 698 | 
             
              task:
         | 
| 707 699 | 
             
                prologue:
         | 
| 708 700 | 
             
                  commands:
         | 
| 709 701 | 
             
                  - "./support/bundler_wrapper exec rake extension:install"
         | 
| 710 702 | 
             
                jobs:
         | 
| 711 | 
            -
                - name: Ruby 2.7. | 
| 703 | 
            +
                - name: Ruby 2.7.1 for capistrano2
         | 
| 712 704 | 
             
                  env_vars:
         | 
| 713 705 | 
             
                  - name: RUBY_VERSION
         | 
| 714 | 
            -
                    value: 2.7. | 
| 706 | 
            +
                    value: 2.7.1
         | 
| 715 707 | 
             
                  - name: GEMSET
         | 
| 716 708 | 
             
                    value: capistrano2
         | 
| 717 709 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -722,10 +714,10 @@ blocks: | |
| 722 714 | 
             
                    value: latest
         | 
| 723 715 | 
             
                  commands:
         | 
| 724 716 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 725 | 
            -
                - name: Ruby 2.7. | 
| 717 | 
            +
                - name: Ruby 2.7.1 for capistrano3
         | 
| 726 718 | 
             
                  env_vars:
         | 
| 727 719 | 
             
                  - name: RUBY_VERSION
         | 
| 728 | 
            -
                    value: 2.7. | 
| 720 | 
            +
                    value: 2.7.1
         | 
| 729 721 | 
             
                  - name: GEMSET
         | 
| 730 722 | 
             
                    value: capistrano3
         | 
| 731 723 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -736,10 +728,10 @@ blocks: | |
| 736 728 | 
             
                    value: latest
         | 
| 737 729 | 
             
                  commands:
         | 
| 738 730 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 739 | 
            -
                - name: Ruby 2.7. | 
| 731 | 
            +
                - name: Ruby 2.7.1 for grape
         | 
| 740 732 | 
             
                  env_vars:
         | 
| 741 733 | 
             
                  - name: RUBY_VERSION
         | 
| 742 | 
            -
                    value: 2.7. | 
| 734 | 
            +
                    value: 2.7.1
         | 
| 743 735 | 
             
                  - name: GEMSET
         | 
| 744 736 | 
             
                    value: grape
         | 
| 745 737 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -750,10 +742,10 @@ blocks: | |
| 750 742 | 
             
                    value: latest
         | 
| 751 743 | 
             
                  commands:
         | 
| 752 744 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 753 | 
            -
                - name: Ruby 2.7. | 
| 745 | 
            +
                - name: Ruby 2.7.1 for padrino
         | 
| 754 746 | 
             
                  env_vars:
         | 
| 755 747 | 
             
                  - name: RUBY_VERSION
         | 
| 756 | 
            -
                    value: 2.7. | 
| 748 | 
            +
                    value: 2.7.1
         | 
| 757 749 | 
             
                  - name: GEMSET
         | 
| 758 750 | 
             
                    value: padrino
         | 
| 759 751 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -761,13 +753,13 @@ blocks: | |
| 761 753 | 
             
                  - name: _RUBYGEMS_VERSION
         | 
| 762 754 | 
             
                    value: latest
         | 
| 763 755 | 
             
                  - name: _BUNDLER_VERSION
         | 
| 764 | 
            -
                    value:  | 
| 756 | 
            +
                    value: latest
         | 
| 765 757 | 
             
                  commands:
         | 
| 766 758 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 767 | 
            -
                - name: Ruby 2.7. | 
| 759 | 
            +
                - name: Ruby 2.7.1 for que
         | 
| 768 760 | 
             
                  env_vars:
         | 
| 769 761 | 
             
                  - name: RUBY_VERSION
         | 
| 770 | 
            -
                    value: 2.7. | 
| 762 | 
            +
                    value: 2.7.1
         | 
| 771 763 | 
             
                  - name: GEMSET
         | 
| 772 764 | 
             
                    value: que
         | 
| 773 765 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -778,10 +770,10 @@ blocks: | |
| 778 770 | 
             
                    value: latest
         | 
| 779 771 | 
             
                  commands:
         | 
| 780 772 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 781 | 
            -
                - name: Ruby 2.7. | 
| 773 | 
            +
                - name: Ruby 2.7.1 for que_beta
         | 
| 782 774 | 
             
                  env_vars:
         | 
| 783 775 | 
             
                  - name: RUBY_VERSION
         | 
| 784 | 
            -
                    value: 2.7. | 
| 776 | 
            +
                    value: 2.7.1
         | 
| 785 777 | 
             
                  - name: GEMSET
         | 
| 786 778 | 
             
                    value: que_beta
         | 
| 787 779 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -792,10 +784,10 @@ blocks: | |
| 792 784 | 
             
                    value: latest
         | 
| 793 785 | 
             
                  commands:
         | 
| 794 786 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 795 | 
            -
                - name: Ruby 2.7. | 
| 787 | 
            +
                - name: Ruby 2.7.1 for rails-5.0
         | 
| 796 788 | 
             
                  env_vars:
         | 
| 797 789 | 
             
                  - name: RUBY_VERSION
         | 
| 798 | 
            -
                    value: 2.7. | 
| 790 | 
            +
                    value: 2.7.1
         | 
| 799 791 | 
             
                  - name: GEMSET
         | 
| 800 792 | 
             
                    value: rails-5.0
         | 
| 801 793 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -806,10 +798,10 @@ blocks: | |
| 806 798 | 
             
                    value: latest
         | 
| 807 799 | 
             
                  commands:
         | 
| 808 800 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 809 | 
            -
                - name: Ruby 2.7. | 
| 801 | 
            +
                - name: Ruby 2.7.1 for rails-5.1
         | 
| 810 802 | 
             
                  env_vars:
         | 
| 811 803 | 
             
                  - name: RUBY_VERSION
         | 
| 812 | 
            -
                    value: 2.7. | 
| 804 | 
            +
                    value: 2.7.1
         | 
| 813 805 | 
             
                  - name: GEMSET
         | 
| 814 806 | 
             
                    value: rails-5.1
         | 
| 815 807 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -820,10 +812,10 @@ blocks: | |
| 820 812 | 
             
                    value: latest
         | 
| 821 813 | 
             
                  commands:
         | 
| 822 814 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 823 | 
            -
                - name: Ruby 2.7. | 
| 815 | 
            +
                - name: Ruby 2.7.1 for rails-5.2
         | 
| 824 816 | 
             
                  env_vars:
         | 
| 825 817 | 
             
                  - name: RUBY_VERSION
         | 
| 826 | 
            -
                    value: 2.7. | 
| 818 | 
            +
                    value: 2.7.1
         | 
| 827 819 | 
             
                  - name: GEMSET
         | 
| 828 820 | 
             
                    value: rails-5.2
         | 
| 829 821 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -834,10 +826,10 @@ blocks: | |
| 834 826 | 
             
                    value: latest
         | 
| 835 827 | 
             
                  commands:
         | 
| 836 828 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 837 | 
            -
                - name: Ruby 2.7. | 
| 829 | 
            +
                - name: Ruby 2.7.1 for rails-6.0
         | 
| 838 830 | 
             
                  env_vars:
         | 
| 839 831 | 
             
                  - name: RUBY_VERSION
         | 
| 840 | 
            -
                    value: 2.7. | 
| 832 | 
            +
                    value: 2.7.1
         | 
| 841 833 | 
             
                  - name: GEMSET
         | 
| 842 834 | 
             
                    value: rails-6.0
         | 
| 843 835 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -848,10 +840,10 @@ blocks: | |
| 848 840 | 
             
                    value: latest
         | 
| 849 841 | 
             
                  commands:
         | 
| 850 842 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 851 | 
            -
                - name: Ruby 2.7. | 
| 843 | 
            +
                - name: Ruby 2.7.1 for resque
         | 
| 852 844 | 
             
                  env_vars:
         | 
| 853 845 | 
             
                  - name: RUBY_VERSION
         | 
| 854 | 
            -
                    value: 2.7. | 
| 846 | 
            +
                    value: 2.7.1
         | 
| 855 847 | 
             
                  - name: GEMSET
         | 
| 856 848 | 
             
                    value: resque
         | 
| 857 849 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -862,10 +854,10 @@ blocks: | |
| 862 854 | 
             
                    value: 1.17.3
         | 
| 863 855 | 
             
                  commands:
         | 
| 864 856 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 865 | 
            -
                - name: Ruby 2.7. | 
| 857 | 
            +
                - name: Ruby 2.7.1 for sequel
         | 
| 866 858 | 
             
                  env_vars:
         | 
| 867 859 | 
             
                  - name: RUBY_VERSION
         | 
| 868 | 
            -
                    value: 2.7. | 
| 860 | 
            +
                    value: 2.7.1
         | 
| 869 861 | 
             
                  - name: GEMSET
         | 
| 870 862 | 
             
                    value: sequel
         | 
| 871 863 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -876,10 +868,10 @@ blocks: | |
| 876 868 | 
             
                    value: latest
         | 
| 877 869 | 
             
                  commands:
         | 
| 878 870 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 879 | 
            -
                - name: Ruby 2.7. | 
| 871 | 
            +
                - name: Ruby 2.7.1 for sequel-435
         | 
| 880 872 | 
             
                  env_vars:
         | 
| 881 873 | 
             
                  - name: RUBY_VERSION
         | 
| 882 | 
            -
                    value: 2.7. | 
| 874 | 
            +
                    value: 2.7.1
         | 
| 883 875 | 
             
                  - name: GEMSET
         | 
| 884 876 | 
             
                    value: sequel-435
         | 
| 885 877 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -890,10 +882,10 @@ blocks: | |
| 890 882 | 
             
                    value: latest
         | 
| 891 883 | 
             
                  commands:
         | 
| 892 884 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 893 | 
            -
                - name: Ruby 2.7. | 
| 885 | 
            +
                - name: Ruby 2.7.1 for sinatra
         | 
| 894 886 | 
             
                  env_vars:
         | 
| 895 887 | 
             
                  - name: RUBY_VERSION
         | 
| 896 | 
            -
                    value: 2.7. | 
| 888 | 
            +
                    value: 2.7.1
         | 
| 897 889 | 
             
                  - name: GEMSET
         | 
| 898 890 | 
             
                    value: sinatra
         | 
| 899 891 | 
             
                  - name: BUNDLE_GEMFILE
         | 
| @@ -904,10 +896,10 @@ blocks: | |
| 904 896 | 
             
                    value: latest
         | 
| 905 897 | 
             
                  commands:
         | 
| 906 898 | 
             
                  - "./support/bundler_wrapper exec rake test"
         | 
| 907 | 
            -
                - name: Ruby 2.7. | 
| 899 | 
            +
                - name: Ruby 2.7.1 for webmachine
         | 
| 908 900 | 
             
                  env_vars:
         | 
| 909 901 | 
             
                  - name: RUBY_VERSION
         | 
| 910 | 
            -
                    value: 2.7. | 
| 902 | 
            +
                    value: 2.7.1
         | 
| 911 903 | 
             
                  - name: GEMSET
         | 
| 912 904 | 
             
                    value: webmachine
         | 
| 913 905 | 
             
                  - name: BUNDLE_GEMFILE
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,5 +1,23 @@ | |
| 1 1 | 
             
            # Changelog
         | 
| 2 2 |  | 
| 3 | 
            +
            # 2.11.0
         | 
| 4 | 
            +
            - Track queue time regardless of namespace. Support custom namespaces. PR #602
         | 
| 5 | 
            +
            - Improve deprecation message from frontend error middleware. PR #620
         | 
| 6 | 
            +
            - Report Ruby environment metadata. PR #621, #627
         | 
| 7 | 
            +
            - Refactor: Move minutely probes to their own files and modules. PR #623
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            # 2.10.9
         | 
| 10 | 
            +
            - Use http proxy if configured when downloading agent. PR #606
         | 
| 11 | 
            +
            - Clear event details cache every 48 hours.
         | 
| 12 | 
            +
              Commit eb5e899db69fcd7cfa221567bfd6ac04f2654c9c
         | 
| 13 | 
            +
            - Add support for Resque ActiveJob queue time reporting. PR #616
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            ## 2.10.8
         | 
| 16 | 
            +
            - Fix failed checksum error log. PR #609
         | 
| 17 | 
            +
            - Fix DelayedJob action name detection for objects that listen to the `[]`
         | 
| 18 | 
            +
              method and return a non-String value. #611
         | 
| 19 | 
            +
            - CI test build improvements. PR #607, #608, #614
         | 
| 20 | 
            +
             | 
| 3 21 | 
             
            ## 2.10.7
         | 
| 4 22 | 
             
            - Revert fix for compatibility with the `http_logger` gem. PR #604.
         | 
| 5 23 | 
             
              For more information, see issue #603 about our reasoning and discussion.
         | 
    
        data/build_matrix.yml
    CHANGED
    
    | @@ -34,15 +34,20 @@ semaphore: # Default `.semaphore/semaphore.yml` contents | |
| 34 34 | 
             
                    - checkout
         | 
| 35 35 | 
             
                    - sem-version ruby $RUBY_VERSION
         | 
| 36 36 | 
             
                    - ./support/check_versions
         | 
| 37 | 
            -
                    - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE) | 
| 38 | 
            -
                    - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE) | 
| 37 | 
            +
                    - cache restore $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE)
         | 
| 38 | 
            +
                    - cache restore $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE)
         | 
| 39 39 | 
             
                    - ./support/install_deps
         | 
| 40 | 
            +
                    - bundle config set clean 'true'
         | 
| 40 41 | 
             
                    - ./support/bundler_wrapper install --jobs=3 --retry=3
         | 
| 41 42 | 
             
                epilogue:
         | 
| 42 43 | 
             
                  on_pass:
         | 
| 43 44 | 
             
                    commands:
         | 
| 44 45 | 
             
                      - cache store $_BUNDLER_CACHE-bundler-$RUBY_VERSION-$GEMSET-$(checksum $BUNDLE_GEMFILE) .bundle
         | 
| 45 46 | 
             
                      - cache store $_GEMS_CACHE-gems-$RUBY_VERSION-$(checksum $BUNDLE_GEMFILE) $HOME/.gem
         | 
| 47 | 
            +
                  on_fail:
         | 
| 48 | 
            +
                    commands:
         | 
| 49 | 
            +
                      - "[ -e ext/install.report ] && cat ext/install.report || echo 'No ext/install.report file found'"
         | 
| 50 | 
            +
                      - "[ -f ext/mkmf.log ] && cat ext/mkmf.log || echo 'No ext/mkmf.log file found'"
         | 
| 46 51 |  | 
| 47 52 | 
             
              blocks:
         | 
| 48 53 | 
             
                - name: Validation
         | 
| @@ -110,7 +115,7 @@ matrix: | |
| 110 115 | 
             
                - ruby: "2.5.7"
         | 
| 111 116 | 
             
                  gems: "minimal"
         | 
| 112 117 | 
             
                - ruby: "2.6.5"
         | 
| 113 | 
            -
                - ruby: "2.7. | 
| 118 | 
            +
                - ruby: "2.7.1"
         | 
| 114 119 | 
             
                - ruby: "jruby-9.1.17.0"
         | 
| 115 120 | 
             
                  gems: "minimal"
         | 
| 116 121 | 
             
              gems:
         | 
| @@ -119,7 +124,9 @@ matrix: | |
| 119 124 | 
             
                - gem: "capistrano3"
         | 
| 120 125 | 
             
                - gem: "grape"
         | 
| 121 126 | 
             
                - gem: "padrino"
         | 
| 122 | 
            -
                   | 
| 127 | 
            +
                  exclude:
         | 
| 128 | 
            +
                    ruby:
         | 
| 129 | 
            +
                      - "2.0.0-p648"
         | 
| 123 130 | 
             
                - gem: "que"
         | 
| 124 131 | 
             
                - gem: "que_beta"
         | 
| 125 132 | 
             
                  exclude:
         | 
| @@ -130,13 +137,13 @@ matrix: | |
| 130 137 | 
             
                  exclude:
         | 
| 131 138 | 
             
                    ruby:
         | 
| 132 139 | 
             
                      - "2.6.5"
         | 
| 133 | 
            -
                      - "2.7. | 
| 140 | 
            +
                      - "2.7.1"
         | 
| 134 141 | 
             
                - gem: "rails-4.2"
         | 
| 135 142 | 
             
                  bundler: "1.17.3"
         | 
| 136 143 | 
             
                  exclude:
         | 
| 137 144 | 
             
                    ruby:
         | 
| 138 145 | 
             
                      - "2.6.5"
         | 
| 139 | 
            -
                      - "2.7. | 
| 146 | 
            +
                      - "2.7.1"
         | 
| 140 147 | 
             
                - gem: "rails-5.0"
         | 
| 141 148 | 
             
                  exclude:
         | 
| 142 149 | 
             
                    ruby:
         | 
    
        data/ext/agent.yml
    CHANGED
    
    | @@ -1,70 +1,70 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 | 
            -
            version:  | 
| 2 | 
            +
            version: 710d341
         | 
| 3 3 | 
             
            mirrors:
         | 
| 4 4 | 
             
            - https://appsignal-agent-releases.global.ssl.fastly.net
         | 
| 5 5 | 
             
            - https://d135dj0rjqvssy.cloudfront.net
         | 
| 6 6 | 
             
            triples:
         | 
| 7 7 | 
             
              x86_64-darwin:
         | 
| 8 8 | 
             
                static:
         | 
| 9 | 
            -
                  checksum:  | 
| 9 | 
            +
                  checksum: 47f53b67d5e28e23859ed7bbcc6cde7ba3c142bf0f7c32ffa0d89c628178d4cc
         | 
| 10 10 | 
             
                  filename: appsignal-x86_64-darwin-all-static.tar.gz
         | 
| 11 11 | 
             
                dynamic:
         | 
| 12 | 
            -
                  checksum:  | 
| 12 | 
            +
                  checksum: 0b2b1533cf5c6f400fbe367fd6a3200c60ecfe6cd8b44a6707bc2a57ef78fe4d
         | 
| 13 13 | 
             
                  filename: appsignal-x86_64-darwin-all-dynamic.tar.gz
         | 
| 14 14 | 
             
              universal-darwin:
         | 
| 15 15 | 
             
                static:
         | 
| 16 | 
            -
                  checksum:  | 
| 16 | 
            +
                  checksum: 47f53b67d5e28e23859ed7bbcc6cde7ba3c142bf0f7c32ffa0d89c628178d4cc
         | 
| 17 17 | 
             
                  filename: appsignal-x86_64-darwin-all-static.tar.gz
         | 
| 18 18 | 
             
                dynamic:
         | 
| 19 | 
            -
                  checksum:  | 
| 19 | 
            +
                  checksum: 0b2b1533cf5c6f400fbe367fd6a3200c60ecfe6cd8b44a6707bc2a57ef78fe4d
         | 
| 20 20 | 
             
                  filename: appsignal-x86_64-darwin-all-dynamic.tar.gz
         | 
| 21 21 | 
             
              i686-linux:
         | 
| 22 22 | 
             
                static:
         | 
| 23 | 
            -
                  checksum:  | 
| 23 | 
            +
                  checksum: d815dd40495175a83d1bed0facfb97a472a74bdfe7aafbe6f72192e66b45a559
         | 
| 24 24 | 
             
                  filename: appsignal-i686-linux-all-static.tar.gz
         | 
| 25 25 | 
             
                dynamic:
         | 
| 26 | 
            -
                  checksum:  | 
| 26 | 
            +
                  checksum: 2e785cf04d500eaad577c3391d236c38d850fed9b541a0e79803ee9bf66852aa
         | 
| 27 27 | 
             
                  filename: appsignal-i686-linux-all-dynamic.tar.gz
         | 
| 28 28 | 
             
              x86-linux:
         | 
| 29 29 | 
             
                static:
         | 
| 30 | 
            -
                  checksum:  | 
| 30 | 
            +
                  checksum: d815dd40495175a83d1bed0facfb97a472a74bdfe7aafbe6f72192e66b45a559
         | 
| 31 31 | 
             
                  filename: appsignal-i686-linux-all-static.tar.gz
         | 
| 32 32 | 
             
                dynamic:
         | 
| 33 | 
            -
                  checksum:  | 
| 33 | 
            +
                  checksum: 2e785cf04d500eaad577c3391d236c38d850fed9b541a0e79803ee9bf66852aa
         | 
| 34 34 | 
             
                  filename: appsignal-i686-linux-all-dynamic.tar.gz
         | 
| 35 35 | 
             
              i686-linux-musl:
         | 
| 36 36 | 
             
                static:
         | 
| 37 | 
            -
                  checksum:  | 
| 37 | 
            +
                  checksum: 4c66f26fb7925445ba0bb353cbf753f00572ffdae16a28220f6306bcb34a686b
         | 
| 38 38 | 
             
                  filename: appsignal-i686-linux-musl-all-static.tar.gz
         | 
| 39 39 | 
             
              x86-linux-musl:
         | 
| 40 40 | 
             
                static:
         | 
| 41 | 
            -
                  checksum:  | 
| 41 | 
            +
                  checksum: 4c66f26fb7925445ba0bb353cbf753f00572ffdae16a28220f6306bcb34a686b
         | 
| 42 42 | 
             
                  filename: appsignal-i686-linux-musl-all-static.tar.gz
         | 
| 43 43 | 
             
              x86_64-linux:
         | 
| 44 44 | 
             
                static:
         | 
| 45 | 
            -
                  checksum:  | 
| 45 | 
            +
                  checksum: d59929c9b2075eb93f0b66a8f9ea4d7d90a897b996a4ff054fd68610282ed616
         | 
| 46 46 | 
             
                  filename: appsignal-x86_64-linux-all-static.tar.gz
         | 
| 47 47 | 
             
                dynamic:
         | 
| 48 | 
            -
                  checksum:  | 
| 48 | 
            +
                  checksum: b1d22b323fdf9d8dbce17194ae42d3f7ddb252342db70428aea1c6baab5e6959
         | 
| 49 49 | 
             
                  filename: appsignal-x86_64-linux-all-dynamic.tar.gz
         | 
| 50 50 | 
             
              x86_64-linux-musl:
         | 
| 51 51 | 
             
                static:
         | 
| 52 | 
            -
                  checksum:  | 
| 52 | 
            +
                  checksum: 7b8cd90260f6bc31ed2aa61dac8889a79a8c5b35f453b2f9d47d1e74133d2c2f
         | 
| 53 53 | 
             
                  filename: appsignal-x86_64-linux-musl-all-static.tar.gz
         | 
| 54 54 | 
             
                dynamic:
         | 
| 55 | 
            -
                  checksum:  | 
| 55 | 
            +
                  checksum: 8922f1e3a845ea869a1553aeb87681346c709dbab96636f703dfc3bc855621d8
         | 
| 56 56 | 
             
                  filename: appsignal-x86_64-linux-musl-all-dynamic.tar.gz
         | 
| 57 57 | 
             
              x86_64-freebsd:
         | 
| 58 58 | 
             
                static:
         | 
| 59 | 
            -
                  checksum:  | 
| 59 | 
            +
                  checksum: bb15ae46b7df4f2851982bcd8b079cd6b5ea384c19eaed9f20cdf152e435c4ea
         | 
| 60 60 | 
             
                  filename: appsignal-x86_64-freebsd-all-static.tar.gz
         | 
| 61 61 | 
             
                dynamic:
         | 
| 62 | 
            -
                  checksum:  | 
| 62 | 
            +
                  checksum: 0be60faf18df3eddedd5d85e34fdbcccb3ce6aae52ef6faeebe881c3e0fe2022
         | 
| 63 63 | 
             
                  filename: appsignal-x86_64-freebsd-all-dynamic.tar.gz
         | 
| 64 64 | 
             
              amd64-freebsd:
         | 
| 65 65 | 
             
                static:
         | 
| 66 | 
            -
                  checksum:  | 
| 66 | 
            +
                  checksum: bb15ae46b7df4f2851982bcd8b079cd6b5ea384c19eaed9f20cdf152e435c4ea
         | 
| 67 67 | 
             
                  filename: appsignal-x86_64-freebsd-all-static.tar.gz
         | 
| 68 68 | 
             
                dynamic:
         | 
| 69 | 
            -
                  checksum:  | 
| 69 | 
            +
                  checksum: 0be60faf18df3eddedd5d85e34fdbcccb3ce6aae52ef6faeebe881c3e0fe2022
         | 
| 70 70 | 
             
                  filename: appsignal-x86_64-freebsd-all-dynamic.tar.gz
         |