appsignal 2.10.8-java → 2.11.0.beta.1-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/.rubocop.yml +3 -0
- data/.semaphore/semaphore.yml +75 -61
- data/CHANGELOG.md +21 -0
- data/build_matrix.yml +13 -7
- data/ext/agent.yml +19 -19
- data/ext/appsignal_extension.c +10 -1
- data/ext/base.rb +11 -2
- data/gemfiles/padrino.gemfile +2 -2
- data/gemfiles/rails-4.2.gemfile +9 -2
- data/gemfiles/rails-5.0.gemfile +1 -0
- data/gemfiles/rails-5.1.gemfile +1 -0
- data/gemfiles/rails-5.2.gemfile +1 -0
- data/gemfiles/rails-6.0.gemfile +1 -0
- data/gemfiles/resque-1.gemfile +7 -0
- data/gemfiles/{resque.gemfile → resque-2.gemfile} +1 -1
- 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.rb +2 -0
- data/lib/appsignal/hooks/active_job.rb +89 -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/resque.rb +60 -0
- data/lib/appsignal/hooks/sequel.rb +2 -0
- data/lib/appsignal/hooks/sidekiq.rb +18 -191
- data/lib/appsignal/integrations/object.rb +4 -0
- data/lib/appsignal/integrations/que.rb +1 -1
- data/lib/appsignal/integrations/resque.rb +9 -12
- data/lib/appsignal/integrations/resque_active_job.rb +9 -24
- 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 +32 -7
- data/lib/appsignal/utils/deprecation_message.rb +5 -1
- 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/activejob_spec.rb +458 -0
- data/spec/lib/appsignal/hooks/puma_spec.rb +2 -181
- data/spec/lib/appsignal/hooks/resque_spec.rb +185 -0
- data/spec/lib/appsignal/hooks/sidekiq_spec.rb +292 -546
- data/spec/lib/appsignal/integrations/padrino_spec.rb +1 -1
- data/spec/lib/appsignal/integrations/que_spec.rb +25 -6
- data/spec/lib/appsignal/integrations/resque_active_job_spec.rb +20 -137
- data/spec/lib/appsignal/integrations/resque_spec.rb +20 -85
- data/spec/lib/appsignal/probes/puma_spec.rb +180 -0
- data/spec/lib/appsignal/probes/sidekiq_spec.rb +204 -0
- data/spec/lib/appsignal/rack/js_exception_catcher_spec.rb +9 -4
- data/spec/lib/appsignal/transaction_spec.rb +35 -20
- data/spec/lib/appsignal_spec.rb +22 -0
- data/spec/lib/puma/appsignal_spec.rb +1 -1
- data/spec/support/helpers/action_mailer_helpers.rb +25 -0
- data/spec/support/helpers/dependency_helper.rb +12 -0
- data/spec/support/helpers/env_helpers.rb +1 -1
- data/spec/support/helpers/environment_metdata_helper.rb +16 -0
- data/spec/support/helpers/transaction_helpers.rb +6 -0
- data/spec/support/stubs/sidekiq/api.rb +2 -2
- metadata +25 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3403327daac577742fc279cc704c58cc766e64e71995d2206cdefa104512993
|
4
|
+
data.tar.gz: 638b4104fc2ac814a28b98ff9de32a675531fed3e6d451adb3dc996551e52458
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c51e569187ea8f8fa5d99b237c22d4ad14472527329d78463ef2c12d59cb4abce350398ead4a22e8358378eb0d12ee67fd84808c5e91c30c1e0464368b42990
|
7
|
+
data.tar.gz: 4c822a8d331d632f2fc47c06e0823092b29605e1b1f4070a978edd78f5feb4896bedc17d59437fe8b382757d93cf676fa40af0775a98ec53df6227a659cc5282
|
data/.rubocop.yml
CHANGED
data/.semaphore/semaphore.yml
CHANGED
@@ -33,8 +33,8 @@ 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
39
|
- bundle config set clean 'true'
|
40
40
|
- "./support/bundler_wrapper install --jobs=3 --retry=3"
|
@@ -172,20 +172,6 @@ blocks:
|
|
172
172
|
value: 1.17.3
|
173
173
|
commands:
|
174
174
|
- "./support/bundler_wrapper exec rake test"
|
175
|
-
- name: Ruby 2.0.0-p648 for padrino
|
176
|
-
env_vars:
|
177
|
-
- name: RUBY_VERSION
|
178
|
-
value: 2.0.0-p648
|
179
|
-
- name: GEMSET
|
180
|
-
value: padrino
|
181
|
-
- name: BUNDLE_GEMFILE
|
182
|
-
value: gemfiles/padrino.gemfile
|
183
|
-
- name: _RUBYGEMS_VERSION
|
184
|
-
value: 2.7.8
|
185
|
-
- name: _BUNDLER_VERSION
|
186
|
-
value: 1.17.3
|
187
|
-
commands:
|
188
|
-
- "./support/bundler_wrapper exec rake test"
|
189
175
|
- name: Ruby 2.0.0-p648 for que
|
190
176
|
env_vars:
|
191
177
|
- name: RUBY_VERSION
|
@@ -228,14 +214,14 @@ blocks:
|
|
228
214
|
value: 1.17.3
|
229
215
|
commands:
|
230
216
|
- "./support/bundler_wrapper exec rake test"
|
231
|
-
- name: Ruby 2.0.0-p648 for resque
|
217
|
+
- name: Ruby 2.0.0-p648 for resque-1
|
232
218
|
env_vars:
|
233
219
|
- name: RUBY_VERSION
|
234
220
|
value: 2.0.0-p648
|
235
221
|
- name: GEMSET
|
236
|
-
value: resque
|
222
|
+
value: resque-1
|
237
223
|
- name: BUNDLE_GEMFILE
|
238
|
-
value: gemfiles/resque.gemfile
|
224
|
+
value: gemfiles/resque-1.gemfile
|
239
225
|
- name: _RUBYGEMS_VERSION
|
240
226
|
value: 2.7.8
|
241
227
|
- name: _BUNDLER_VERSION
|
@@ -527,7 +513,7 @@ blocks:
|
|
527
513
|
- name: _RUBYGEMS_VERSION
|
528
514
|
value: latest
|
529
515
|
- name: _BUNDLER_VERSION
|
530
|
-
value:
|
516
|
+
value: latest
|
531
517
|
commands:
|
532
518
|
- "./support/bundler_wrapper exec rake test"
|
533
519
|
- name: Ruby 2.6.5 for que
|
@@ -614,20 +600,34 @@ blocks:
|
|
614
600
|
value: latest
|
615
601
|
commands:
|
616
602
|
- "./support/bundler_wrapper exec rake test"
|
617
|
-
- name: Ruby 2.6.5 for resque
|
603
|
+
- name: Ruby 2.6.5 for resque-1
|
618
604
|
env_vars:
|
619
605
|
- name: RUBY_VERSION
|
620
606
|
value: 2.6.5
|
621
607
|
- name: GEMSET
|
622
|
-
value: resque
|
608
|
+
value: resque-1
|
623
609
|
- name: BUNDLE_GEMFILE
|
624
|
-
value: gemfiles/resque.gemfile
|
610
|
+
value: gemfiles/resque-1.gemfile
|
625
611
|
- name: _RUBYGEMS_VERSION
|
626
612
|
value: latest
|
627
613
|
- name: _BUNDLER_VERSION
|
628
614
|
value: 1.17.3
|
629
615
|
commands:
|
630
616
|
- "./support/bundler_wrapper exec rake test"
|
617
|
+
- name: Ruby 2.6.5 for resque-2
|
618
|
+
env_vars:
|
619
|
+
- name: RUBY_VERSION
|
620
|
+
value: 2.6.5
|
621
|
+
- name: GEMSET
|
622
|
+
value: resque-2
|
623
|
+
- name: BUNDLE_GEMFILE
|
624
|
+
value: gemfiles/resque-2.gemfile
|
625
|
+
- name: _RUBYGEMS_VERSION
|
626
|
+
value: latest
|
627
|
+
- name: _BUNDLER_VERSION
|
628
|
+
value: latest
|
629
|
+
commands:
|
630
|
+
- "./support/bundler_wrapper exec rake test"
|
631
631
|
- name: Ruby 2.6.5 for sequel
|
632
632
|
env_vars:
|
633
633
|
- name: RUBY_VERSION
|
@@ -684,7 +684,7 @@ blocks:
|
|
684
684
|
value: latest
|
685
685
|
commands:
|
686
686
|
- "./support/bundler_wrapper exec rake test"
|
687
|
-
- name: Ruby 2.7.
|
687
|
+
- name: Ruby 2.7.1
|
688
688
|
dependencies:
|
689
689
|
- Validation
|
690
690
|
task:
|
@@ -692,10 +692,10 @@ blocks:
|
|
692
692
|
commands:
|
693
693
|
- "./support/bundler_wrapper exec rake extension:install"
|
694
694
|
jobs:
|
695
|
-
- name: Ruby 2.7.
|
695
|
+
- name: Ruby 2.7.1 for no_dependencies
|
696
696
|
env_vars:
|
697
697
|
- name: RUBY_VERSION
|
698
|
-
value: 2.7.
|
698
|
+
value: 2.7.1
|
699
699
|
- name: GEMSET
|
700
700
|
value: no_dependencies
|
701
701
|
- name: BUNDLE_GEMFILE
|
@@ -706,18 +706,18 @@ blocks:
|
|
706
706
|
value: latest
|
707
707
|
commands:
|
708
708
|
- "./support/bundler_wrapper exec rake test"
|
709
|
-
- name: Ruby 2.7.
|
709
|
+
- name: Ruby 2.7.1 - Gems
|
710
710
|
dependencies:
|
711
|
-
- Ruby 2.7.
|
711
|
+
- Ruby 2.7.1
|
712
712
|
task:
|
713
713
|
prologue:
|
714
714
|
commands:
|
715
715
|
- "./support/bundler_wrapper exec rake extension:install"
|
716
716
|
jobs:
|
717
|
-
- name: Ruby 2.7.
|
717
|
+
- name: Ruby 2.7.1 for capistrano2
|
718
718
|
env_vars:
|
719
719
|
- name: RUBY_VERSION
|
720
|
-
value: 2.7.
|
720
|
+
value: 2.7.1
|
721
721
|
- name: GEMSET
|
722
722
|
value: capistrano2
|
723
723
|
- name: BUNDLE_GEMFILE
|
@@ -728,10 +728,10 @@ blocks:
|
|
728
728
|
value: latest
|
729
729
|
commands:
|
730
730
|
- "./support/bundler_wrapper exec rake test"
|
731
|
-
- name: Ruby 2.7.
|
731
|
+
- name: Ruby 2.7.1 for capistrano3
|
732
732
|
env_vars:
|
733
733
|
- name: RUBY_VERSION
|
734
|
-
value: 2.7.
|
734
|
+
value: 2.7.1
|
735
735
|
- name: GEMSET
|
736
736
|
value: capistrano3
|
737
737
|
- name: BUNDLE_GEMFILE
|
@@ -742,10 +742,10 @@ blocks:
|
|
742
742
|
value: latest
|
743
743
|
commands:
|
744
744
|
- "./support/bundler_wrapper exec rake test"
|
745
|
-
- name: Ruby 2.7.
|
745
|
+
- name: Ruby 2.7.1 for grape
|
746
746
|
env_vars:
|
747
747
|
- name: RUBY_VERSION
|
748
|
-
value: 2.7.
|
748
|
+
value: 2.7.1
|
749
749
|
- name: GEMSET
|
750
750
|
value: grape
|
751
751
|
- name: BUNDLE_GEMFILE
|
@@ -756,10 +756,10 @@ blocks:
|
|
756
756
|
value: latest
|
757
757
|
commands:
|
758
758
|
- "./support/bundler_wrapper exec rake test"
|
759
|
-
- name: Ruby 2.7.
|
759
|
+
- name: Ruby 2.7.1 for padrino
|
760
760
|
env_vars:
|
761
761
|
- name: RUBY_VERSION
|
762
|
-
value: 2.7.
|
762
|
+
value: 2.7.1
|
763
763
|
- name: GEMSET
|
764
764
|
value: padrino
|
765
765
|
- name: BUNDLE_GEMFILE
|
@@ -767,13 +767,13 @@ blocks:
|
|
767
767
|
- name: _RUBYGEMS_VERSION
|
768
768
|
value: latest
|
769
769
|
- name: _BUNDLER_VERSION
|
770
|
-
value:
|
770
|
+
value: latest
|
771
771
|
commands:
|
772
772
|
- "./support/bundler_wrapper exec rake test"
|
773
|
-
- name: Ruby 2.7.
|
773
|
+
- name: Ruby 2.7.1 for que
|
774
774
|
env_vars:
|
775
775
|
- name: RUBY_VERSION
|
776
|
-
value: 2.7.
|
776
|
+
value: 2.7.1
|
777
777
|
- name: GEMSET
|
778
778
|
value: que
|
779
779
|
- name: BUNDLE_GEMFILE
|
@@ -784,10 +784,10 @@ blocks:
|
|
784
784
|
value: latest
|
785
785
|
commands:
|
786
786
|
- "./support/bundler_wrapper exec rake test"
|
787
|
-
- name: Ruby 2.7.
|
787
|
+
- name: Ruby 2.7.1 for que_beta
|
788
788
|
env_vars:
|
789
789
|
- name: RUBY_VERSION
|
790
|
-
value: 2.7.
|
790
|
+
value: 2.7.1
|
791
791
|
- name: GEMSET
|
792
792
|
value: que_beta
|
793
793
|
- name: BUNDLE_GEMFILE
|
@@ -798,10 +798,10 @@ blocks:
|
|
798
798
|
value: latest
|
799
799
|
commands:
|
800
800
|
- "./support/bundler_wrapper exec rake test"
|
801
|
-
- name: Ruby 2.7.
|
801
|
+
- name: Ruby 2.7.1 for rails-5.0
|
802
802
|
env_vars:
|
803
803
|
- name: RUBY_VERSION
|
804
|
-
value: 2.7.
|
804
|
+
value: 2.7.1
|
805
805
|
- name: GEMSET
|
806
806
|
value: rails-5.0
|
807
807
|
- name: BUNDLE_GEMFILE
|
@@ -812,10 +812,10 @@ blocks:
|
|
812
812
|
value: latest
|
813
813
|
commands:
|
814
814
|
- "./support/bundler_wrapper exec rake test"
|
815
|
-
- name: Ruby 2.7.
|
815
|
+
- name: Ruby 2.7.1 for rails-5.1
|
816
816
|
env_vars:
|
817
817
|
- name: RUBY_VERSION
|
818
|
-
value: 2.7.
|
818
|
+
value: 2.7.1
|
819
819
|
- name: GEMSET
|
820
820
|
value: rails-5.1
|
821
821
|
- name: BUNDLE_GEMFILE
|
@@ -826,10 +826,10 @@ blocks:
|
|
826
826
|
value: latest
|
827
827
|
commands:
|
828
828
|
- "./support/bundler_wrapper exec rake test"
|
829
|
-
- name: Ruby 2.7.
|
829
|
+
- name: Ruby 2.7.1 for rails-5.2
|
830
830
|
env_vars:
|
831
831
|
- name: RUBY_VERSION
|
832
|
-
value: 2.7.
|
832
|
+
value: 2.7.1
|
833
833
|
- name: GEMSET
|
834
834
|
value: rails-5.2
|
835
835
|
- name: BUNDLE_GEMFILE
|
@@ -840,10 +840,10 @@ blocks:
|
|
840
840
|
value: latest
|
841
841
|
commands:
|
842
842
|
- "./support/bundler_wrapper exec rake test"
|
843
|
-
- name: Ruby 2.7.
|
843
|
+
- name: Ruby 2.7.1 for rails-6.0
|
844
844
|
env_vars:
|
845
845
|
- name: RUBY_VERSION
|
846
|
-
value: 2.7.
|
846
|
+
value: 2.7.1
|
847
847
|
- name: GEMSET
|
848
848
|
value: rails-6.0
|
849
849
|
- name: BUNDLE_GEMFILE
|
@@ -854,24 +854,38 @@ blocks:
|
|
854
854
|
value: latest
|
855
855
|
commands:
|
856
856
|
- "./support/bundler_wrapper exec rake test"
|
857
|
-
- name: Ruby 2.7.
|
857
|
+
- name: Ruby 2.7.1 for resque-1
|
858
858
|
env_vars:
|
859
859
|
- name: RUBY_VERSION
|
860
|
-
value: 2.7.
|
860
|
+
value: 2.7.1
|
861
861
|
- name: GEMSET
|
862
|
-
value: resque
|
862
|
+
value: resque-1
|
863
863
|
- name: BUNDLE_GEMFILE
|
864
|
-
value: gemfiles/resque.gemfile
|
864
|
+
value: gemfiles/resque-1.gemfile
|
865
865
|
- name: _RUBYGEMS_VERSION
|
866
866
|
value: latest
|
867
867
|
- name: _BUNDLER_VERSION
|
868
868
|
value: 1.17.3
|
869
869
|
commands:
|
870
870
|
- "./support/bundler_wrapper exec rake test"
|
871
|
-
- name: Ruby 2.7.
|
871
|
+
- name: Ruby 2.7.1 for resque-2
|
872
|
+
env_vars:
|
873
|
+
- name: RUBY_VERSION
|
874
|
+
value: 2.7.1
|
875
|
+
- name: GEMSET
|
876
|
+
value: resque-2
|
877
|
+
- name: BUNDLE_GEMFILE
|
878
|
+
value: gemfiles/resque-2.gemfile
|
879
|
+
- name: _RUBYGEMS_VERSION
|
880
|
+
value: latest
|
881
|
+
- name: _BUNDLER_VERSION
|
882
|
+
value: latest
|
883
|
+
commands:
|
884
|
+
- "./support/bundler_wrapper exec rake test"
|
885
|
+
- name: Ruby 2.7.1 for sequel
|
872
886
|
env_vars:
|
873
887
|
- name: RUBY_VERSION
|
874
|
-
value: 2.7.
|
888
|
+
value: 2.7.1
|
875
889
|
- name: GEMSET
|
876
890
|
value: sequel
|
877
891
|
- name: BUNDLE_GEMFILE
|
@@ -882,10 +896,10 @@ blocks:
|
|
882
896
|
value: latest
|
883
897
|
commands:
|
884
898
|
- "./support/bundler_wrapper exec rake test"
|
885
|
-
- name: Ruby 2.7.
|
899
|
+
- name: Ruby 2.7.1 for sequel-435
|
886
900
|
env_vars:
|
887
901
|
- name: RUBY_VERSION
|
888
|
-
value: 2.7.
|
902
|
+
value: 2.7.1
|
889
903
|
- name: GEMSET
|
890
904
|
value: sequel-435
|
891
905
|
- name: BUNDLE_GEMFILE
|
@@ -896,10 +910,10 @@ blocks:
|
|
896
910
|
value: latest
|
897
911
|
commands:
|
898
912
|
- "./support/bundler_wrapper exec rake test"
|
899
|
-
- name: Ruby 2.7.
|
913
|
+
- name: Ruby 2.7.1 for sinatra
|
900
914
|
env_vars:
|
901
915
|
- name: RUBY_VERSION
|
902
|
-
value: 2.7.
|
916
|
+
value: 2.7.1
|
903
917
|
- name: GEMSET
|
904
918
|
value: sinatra
|
905
919
|
- name: BUNDLE_GEMFILE
|
@@ -910,10 +924,10 @@ blocks:
|
|
910
924
|
value: latest
|
911
925
|
commands:
|
912
926
|
- "./support/bundler_wrapper exec rake test"
|
913
|
-
- name: Ruby 2.7.
|
927
|
+
- name: Ruby 2.7.1 for webmachine
|
914
928
|
env_vars:
|
915
929
|
- name: RUBY_VERSION
|
916
|
-
value: 2.7.
|
930
|
+
value: 2.7.1
|
917
931
|
- name: GEMSET
|
918
932
|
value: webmachine
|
919
933
|
- name: BUNDLE_GEMFILE
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
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, #619, #618
|
7
|
+
- Refactor: Move minutely probes to their own files and modules. PR #623
|
8
|
+
- Allow custom action names in Que integration. Needed for Active Job
|
9
|
+
integration. PR #628
|
10
|
+
- Add Active Job support. Support Active Job without separate AppSignal
|
11
|
+
integration of the background job library. Add support for previously
|
12
|
+
unsupported Active Job adapters. Adapters that were previously already
|
13
|
+
supported (Sidekiq, DelayedJob and Resque) still work in this new setup.
|
14
|
+
PR #629
|
15
|
+
- Add automatic Resque integration. Remove manual Resque and Resque Active Job
|
16
|
+
integrations. PR #630
|
17
|
+
|
18
|
+
# 2.10.9
|
19
|
+
- Use http proxy if configured when downloading agent. PR #606
|
20
|
+
- Clear event details cache every 48 hours.
|
21
|
+
Commit eb5e899db69fcd7cfa221567bfd6ac04f2654c9c
|
22
|
+
- Add support for Resque ActiveJob queue time reporting. PR #616
|
23
|
+
|
3
24
|
## 2.10.8
|
4
25
|
- Fix failed checksum error log. PR #609
|
5
26
|
- Fix DelayedJob action name detection for objects that listen to the `[]`
|
data/build_matrix.yml
CHANGED
@@ -34,8 +34,8 @@ 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
40
|
- bundle config set clean 'true'
|
41
41
|
- ./support/bundler_wrapper install --jobs=3 --retry=3
|
@@ -115,7 +115,7 @@ matrix:
|
|
115
115
|
- ruby: "2.5.7"
|
116
116
|
gems: "minimal"
|
117
117
|
- ruby: "2.6.5"
|
118
|
-
- ruby: "2.7.
|
118
|
+
- ruby: "2.7.1"
|
119
119
|
- ruby: "jruby-9.1.17.0"
|
120
120
|
gems: "minimal"
|
121
121
|
gems:
|
@@ -124,7 +124,9 @@ matrix:
|
|
124
124
|
- gem: "capistrano3"
|
125
125
|
- gem: "grape"
|
126
126
|
- gem: "padrino"
|
127
|
-
|
127
|
+
exclude:
|
128
|
+
ruby:
|
129
|
+
- "2.0.0-p648"
|
128
130
|
- gem: "que"
|
129
131
|
- gem: "que_beta"
|
130
132
|
exclude:
|
@@ -135,13 +137,13 @@ matrix:
|
|
135
137
|
exclude:
|
136
138
|
ruby:
|
137
139
|
- "2.6.5"
|
138
|
-
- "2.7.
|
140
|
+
- "2.7.1"
|
139
141
|
- gem: "rails-4.2"
|
140
142
|
bundler: "1.17.3"
|
141
143
|
exclude:
|
142
144
|
ruby:
|
143
145
|
- "2.6.5"
|
144
|
-
- "2.7.
|
146
|
+
- "2.7.1"
|
145
147
|
- gem: "rails-5.0"
|
146
148
|
exclude:
|
147
149
|
ruby:
|
@@ -163,8 +165,12 @@ matrix:
|
|
163
165
|
- "2.3.8"
|
164
166
|
- "2.4.9"
|
165
167
|
- "jruby-9.1.17.0"
|
166
|
-
- gem: "resque"
|
168
|
+
- gem: "resque-1"
|
167
169
|
bundler: "1.17.3"
|
170
|
+
- gem: "resque-2"
|
171
|
+
exclude:
|
172
|
+
ruby:
|
173
|
+
- "2.0.0-p648"
|
168
174
|
- gem: "sequel"
|
169
175
|
- gem: "sequel-435"
|
170
176
|
- gem: "sinatra"
|
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
|