appsignal 2.11.0.beta.4-java → 2.11.0.beta.5-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 +57 -1
- data/CHANGELOG.md +12 -0
- data/README.md +4 -4
- data/Rakefile +16 -4
- data/appsignal.gemspec +1 -1
- data/build_matrix.yml +2 -2
- data/ext/Rakefile +2 -0
- data/ext/agent.yml +19 -19
- data/ext/base.rb +7 -0
- data/ext/extconf.rb +2 -0
- data/lib/appsignal.rb +1 -0
- data/lib/appsignal/auth_check.rb +4 -2
- data/lib/appsignal/cli/diagnose.rb +1 -1
- data/lib/appsignal/config.rb +35 -2
- data/lib/appsignal/extension.rb +6 -5
- data/lib/appsignal/extension/jruby.rb +6 -5
- data/lib/appsignal/hooks.rb +23 -0
- data/lib/appsignal/hooks/active_job.rb +32 -9
- data/lib/appsignal/hooks/puma.rb +0 -1
- data/lib/appsignal/hooks/sidekiq.rb +0 -1
- data/lib/appsignal/probes.rb +7 -0
- data/lib/appsignal/probes/puma.rb +1 -1
- data/lib/appsignal/probes/sidekiq.rb +3 -1
- data/lib/appsignal/utils/deprecation_message.rb +1 -1
- data/lib/appsignal/version.rb +1 -1
- data/spec/lib/appsignal/auth_check_spec.rb +23 -0
- data/spec/lib/appsignal/capistrano2_spec.rb +1 -1
- data/spec/lib/appsignal/capistrano3_spec.rb +1 -1
- data/spec/lib/appsignal/cli/diagnose_spec.rb +42 -0
- data/spec/lib/appsignal/config_spec.rb +21 -0
- data/spec/lib/appsignal/extension/jruby_spec.rb +31 -28
- data/spec/lib/appsignal/extension_install_failure_spec.rb +23 -0
- data/spec/lib/appsignal/hooks/activejob_spec.rb +44 -1
- data/spec/lib/appsignal/hooks_spec.rb +57 -0
- data/spec/lib/appsignal/marker_spec.rb +1 -1
- data/spec/spec_helper.rb +5 -0
- data/spec/support/helpers/config_helpers.rb +3 -2
- data/spec/support/helpers/transaction_helpers.rb +1 -1
- data/spec/support/testing.rb +19 -19
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ae586184205dfe5ce077492eda928e4477a5874a1c42c69651786e18620f574
|
4
|
+
data.tar.gz: 4a0d60779f89ebc82f4e1fad60f102b6f16d2a40d18570b7617cb5ce841ca69a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec140f7ec18148b75805b083db89341815644d84419aba14c3f6f6f646340b6c593210e515085a3aac6793ad1ee7630b778cb70ab90ad664ae3535dacd1e1888
|
7
|
+
data.tar.gz: 88609203e7577b347e97f8d52cac7b8f8dcc2c8bb412e4c1f33ae12ed9bd5fc87aca15ebd11a12422541c0bf20b8f6cf13f67b504c7130e67dec654cdae3d642
|
data/.semaphore/semaphore.yml
CHANGED
@@ -11,7 +11,7 @@ agent:
|
|
11
11
|
os_image: ubuntu1804
|
12
12
|
auto_cancel:
|
13
13
|
running:
|
14
|
-
when: branch != '
|
14
|
+
when: branch != 'main' AND branch != 'develop'
|
15
15
|
global_job_config:
|
16
16
|
env_vars:
|
17
17
|
- name: _BUNDLER_CACHE
|
@@ -100,6 +100,7 @@ blocks:
|
|
100
100
|
value: 1.17.3
|
101
101
|
commands:
|
102
102
|
- "./support/bundler_wrapper exec rake test"
|
103
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
103
104
|
- name: Ruby 2.0.0-p648
|
104
105
|
dependencies:
|
105
106
|
- Validation
|
@@ -122,6 +123,7 @@ blocks:
|
|
122
123
|
value: 1.17.3
|
123
124
|
commands:
|
124
125
|
- "./support/bundler_wrapper exec rake test"
|
126
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
125
127
|
- name: Ruby 2.0.0-p648 - Gems
|
126
128
|
dependencies:
|
127
129
|
- Ruby 2.0.0-p648
|
@@ -144,6 +146,7 @@ blocks:
|
|
144
146
|
value: 1.17.3
|
145
147
|
commands:
|
146
148
|
- "./support/bundler_wrapper exec rake test"
|
149
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
147
150
|
- name: Ruby 2.0.0-p648 for capistrano3
|
148
151
|
env_vars:
|
149
152
|
- name: RUBY_VERSION
|
@@ -158,6 +161,7 @@ blocks:
|
|
158
161
|
value: 1.17.3
|
159
162
|
commands:
|
160
163
|
- "./support/bundler_wrapper exec rake test"
|
164
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
161
165
|
- name: Ruby 2.0.0-p648 for grape
|
162
166
|
env_vars:
|
163
167
|
- name: RUBY_VERSION
|
@@ -172,6 +176,7 @@ blocks:
|
|
172
176
|
value: 1.17.3
|
173
177
|
commands:
|
174
178
|
- "./support/bundler_wrapper exec rake test"
|
179
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
175
180
|
- name: Ruby 2.0.0-p648 for que
|
176
181
|
env_vars:
|
177
182
|
- name: RUBY_VERSION
|
@@ -186,6 +191,7 @@ blocks:
|
|
186
191
|
value: 1.17.3
|
187
192
|
commands:
|
188
193
|
- "./support/bundler_wrapper exec rake test"
|
194
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
189
195
|
- name: Ruby 2.0.0-p648 for rails-3.2
|
190
196
|
env_vars:
|
191
197
|
- name: RUBY_VERSION
|
@@ -200,6 +206,7 @@ blocks:
|
|
200
206
|
value: 1.17.3
|
201
207
|
commands:
|
202
208
|
- "./support/bundler_wrapper exec rake test"
|
209
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
203
210
|
- name: Ruby 2.0.0-p648 for rails-4.2
|
204
211
|
env_vars:
|
205
212
|
- name: RUBY_VERSION
|
@@ -214,6 +221,7 @@ blocks:
|
|
214
221
|
value: 1.17.3
|
215
222
|
commands:
|
216
223
|
- "./support/bundler_wrapper exec rake test"
|
224
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
217
225
|
- name: Ruby 2.0.0-p648 for resque-1
|
218
226
|
env_vars:
|
219
227
|
- name: RUBY_VERSION
|
@@ -228,6 +236,7 @@ blocks:
|
|
228
236
|
value: 1.17.3
|
229
237
|
commands:
|
230
238
|
- "./support/bundler_wrapper exec rake test"
|
239
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
231
240
|
- name: Ruby 2.0.0-p648 for sequel
|
232
241
|
env_vars:
|
233
242
|
- name: RUBY_VERSION
|
@@ -242,6 +251,7 @@ blocks:
|
|
242
251
|
value: 1.17.3
|
243
252
|
commands:
|
244
253
|
- "./support/bundler_wrapper exec rake test"
|
254
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
245
255
|
- name: Ruby 2.0.0-p648 for sequel-435
|
246
256
|
env_vars:
|
247
257
|
- name: RUBY_VERSION
|
@@ -256,6 +266,7 @@ blocks:
|
|
256
266
|
value: 1.17.3
|
257
267
|
commands:
|
258
268
|
- "./support/bundler_wrapper exec rake test"
|
269
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
259
270
|
- name: Ruby 2.0.0-p648 for sinatra
|
260
271
|
env_vars:
|
261
272
|
- name: RUBY_VERSION
|
@@ -270,6 +281,7 @@ blocks:
|
|
270
281
|
value: 1.17.3
|
271
282
|
commands:
|
272
283
|
- "./support/bundler_wrapper exec rake test"
|
284
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
273
285
|
- name: Ruby 2.0.0-p648 for webmachine
|
274
286
|
env_vars:
|
275
287
|
- name: RUBY_VERSION
|
@@ -284,6 +296,7 @@ blocks:
|
|
284
296
|
value: 1.17.3
|
285
297
|
commands:
|
286
298
|
- "./support/bundler_wrapper exec rake test"
|
299
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
287
300
|
- name: Ruby 2.1.10
|
288
301
|
dependencies:
|
289
302
|
- Validation
|
@@ -306,6 +319,7 @@ blocks:
|
|
306
319
|
value: 1.17.3
|
307
320
|
commands:
|
308
321
|
- "./support/bundler_wrapper exec rake test"
|
322
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
309
323
|
- name: Ruby 2.2.10
|
310
324
|
dependencies:
|
311
325
|
- Validation
|
@@ -328,6 +342,7 @@ blocks:
|
|
328
342
|
value: 1.17.3
|
329
343
|
commands:
|
330
344
|
- "./support/bundler_wrapper exec rake test"
|
345
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
331
346
|
- name: Ruby 2.3.8
|
332
347
|
dependencies:
|
333
348
|
- Validation
|
@@ -350,6 +365,7 @@ blocks:
|
|
350
365
|
value: latest
|
351
366
|
commands:
|
352
367
|
- "./support/bundler_wrapper exec rake test"
|
368
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
353
369
|
- name: Ruby 2.4.9
|
354
370
|
dependencies:
|
355
371
|
- Validation
|
@@ -372,6 +388,7 @@ blocks:
|
|
372
388
|
value: latest
|
373
389
|
commands:
|
374
390
|
- "./support/bundler_wrapper exec rake test"
|
391
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
375
392
|
- name: Ruby 2.5.7
|
376
393
|
dependencies:
|
377
394
|
- Validation
|
@@ -394,6 +411,7 @@ blocks:
|
|
394
411
|
value: latest
|
395
412
|
commands:
|
396
413
|
- "./support/bundler_wrapper exec rake test"
|
414
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
397
415
|
- name: Ruby 2.5.7 - Gems
|
398
416
|
dependencies:
|
399
417
|
- Ruby 2.5.7
|
@@ -416,6 +434,7 @@ blocks:
|
|
416
434
|
value: latest
|
417
435
|
commands:
|
418
436
|
- "./support/bundler_wrapper exec rake test"
|
437
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
419
438
|
- name: Ruby 2.5.7 for rails-6.0
|
420
439
|
env_vars:
|
421
440
|
- name: RUBY_VERSION
|
@@ -430,6 +449,7 @@ blocks:
|
|
430
449
|
value: latest
|
431
450
|
commands:
|
432
451
|
- "./support/bundler_wrapper exec rake test"
|
452
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
433
453
|
- name: Ruby 2.6.5
|
434
454
|
dependencies:
|
435
455
|
- Validation
|
@@ -452,6 +472,7 @@ blocks:
|
|
452
472
|
value: latest
|
453
473
|
commands:
|
454
474
|
- "./support/bundler_wrapper exec rake test"
|
475
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
455
476
|
- name: Ruby 2.6.5 - Gems
|
456
477
|
dependencies:
|
457
478
|
- Ruby 2.6.5
|
@@ -474,6 +495,7 @@ blocks:
|
|
474
495
|
value: latest
|
475
496
|
commands:
|
476
497
|
- "./support/bundler_wrapper exec rake test"
|
498
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
477
499
|
- name: Ruby 2.6.5 for capistrano3
|
478
500
|
env_vars:
|
479
501
|
- name: RUBY_VERSION
|
@@ -488,6 +510,7 @@ blocks:
|
|
488
510
|
value: latest
|
489
511
|
commands:
|
490
512
|
- "./support/bundler_wrapper exec rake test"
|
513
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
491
514
|
- name: Ruby 2.6.5 for grape
|
492
515
|
env_vars:
|
493
516
|
- name: RUBY_VERSION
|
@@ -502,6 +525,7 @@ blocks:
|
|
502
525
|
value: latest
|
503
526
|
commands:
|
504
527
|
- "./support/bundler_wrapper exec rake test"
|
528
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
505
529
|
- name: Ruby 2.6.5 for padrino
|
506
530
|
env_vars:
|
507
531
|
- name: RUBY_VERSION
|
@@ -516,6 +540,7 @@ blocks:
|
|
516
540
|
value: latest
|
517
541
|
commands:
|
518
542
|
- "./support/bundler_wrapper exec rake test"
|
543
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
519
544
|
- name: Ruby 2.6.5 for que
|
520
545
|
env_vars:
|
521
546
|
- name: RUBY_VERSION
|
@@ -530,6 +555,7 @@ blocks:
|
|
530
555
|
value: latest
|
531
556
|
commands:
|
532
557
|
- "./support/bundler_wrapper exec rake test"
|
558
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
533
559
|
- name: Ruby 2.6.5 for que_beta
|
534
560
|
env_vars:
|
535
561
|
- name: RUBY_VERSION
|
@@ -544,6 +570,7 @@ blocks:
|
|
544
570
|
value: latest
|
545
571
|
commands:
|
546
572
|
- "./support/bundler_wrapper exec rake test"
|
573
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
547
574
|
- name: Ruby 2.6.5 for rails-5.0
|
548
575
|
env_vars:
|
549
576
|
- name: RUBY_VERSION
|
@@ -558,6 +585,7 @@ blocks:
|
|
558
585
|
value: latest
|
559
586
|
commands:
|
560
587
|
- "./support/bundler_wrapper exec rake test"
|
588
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
561
589
|
- name: Ruby 2.6.5 for rails-5.1
|
562
590
|
env_vars:
|
563
591
|
- name: RUBY_VERSION
|
@@ -572,6 +600,7 @@ blocks:
|
|
572
600
|
value: latest
|
573
601
|
commands:
|
574
602
|
- "./support/bundler_wrapper exec rake test"
|
603
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
575
604
|
- name: Ruby 2.6.5 for rails-5.2
|
576
605
|
env_vars:
|
577
606
|
- name: RUBY_VERSION
|
@@ -586,6 +615,7 @@ blocks:
|
|
586
615
|
value: latest
|
587
616
|
commands:
|
588
617
|
- "./support/bundler_wrapper exec rake test"
|
618
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
589
619
|
- name: Ruby 2.6.5 for rails-6.0
|
590
620
|
env_vars:
|
591
621
|
- name: RUBY_VERSION
|
@@ -600,6 +630,7 @@ blocks:
|
|
600
630
|
value: latest
|
601
631
|
commands:
|
602
632
|
- "./support/bundler_wrapper exec rake test"
|
633
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
603
634
|
- name: Ruby 2.6.5 for resque-1
|
604
635
|
env_vars:
|
605
636
|
- name: RUBY_VERSION
|
@@ -614,6 +645,7 @@ blocks:
|
|
614
645
|
value: 1.17.3
|
615
646
|
commands:
|
616
647
|
- "./support/bundler_wrapper exec rake test"
|
648
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
617
649
|
- name: Ruby 2.6.5 for resque-2
|
618
650
|
env_vars:
|
619
651
|
- name: RUBY_VERSION
|
@@ -628,6 +660,7 @@ blocks:
|
|
628
660
|
value: latest
|
629
661
|
commands:
|
630
662
|
- "./support/bundler_wrapper exec rake test"
|
663
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
631
664
|
- name: Ruby 2.6.5 for sequel
|
632
665
|
env_vars:
|
633
666
|
- name: RUBY_VERSION
|
@@ -642,6 +675,7 @@ blocks:
|
|
642
675
|
value: latest
|
643
676
|
commands:
|
644
677
|
- "./support/bundler_wrapper exec rake test"
|
678
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
645
679
|
- name: Ruby 2.6.5 for sequel-435
|
646
680
|
env_vars:
|
647
681
|
- name: RUBY_VERSION
|
@@ -656,6 +690,7 @@ blocks:
|
|
656
690
|
value: latest
|
657
691
|
commands:
|
658
692
|
- "./support/bundler_wrapper exec rake test"
|
693
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
659
694
|
- name: Ruby 2.6.5 for sinatra
|
660
695
|
env_vars:
|
661
696
|
- name: RUBY_VERSION
|
@@ -670,6 +705,7 @@ blocks:
|
|
670
705
|
value: latest
|
671
706
|
commands:
|
672
707
|
- "./support/bundler_wrapper exec rake test"
|
708
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
673
709
|
- name: Ruby 2.6.5 for webmachine
|
674
710
|
env_vars:
|
675
711
|
- name: RUBY_VERSION
|
@@ -684,6 +720,7 @@ blocks:
|
|
684
720
|
value: latest
|
685
721
|
commands:
|
686
722
|
- "./support/bundler_wrapper exec rake test"
|
723
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
687
724
|
- name: Ruby 2.7.1
|
688
725
|
dependencies:
|
689
726
|
- Validation
|
@@ -706,6 +743,7 @@ blocks:
|
|
706
743
|
value: latest
|
707
744
|
commands:
|
708
745
|
- "./support/bundler_wrapper exec rake test"
|
746
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
709
747
|
- name: Ruby 2.7.1 - Gems
|
710
748
|
dependencies:
|
711
749
|
- Ruby 2.7.1
|
@@ -728,6 +766,7 @@ blocks:
|
|
728
766
|
value: latest
|
729
767
|
commands:
|
730
768
|
- "./support/bundler_wrapper exec rake test"
|
769
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
731
770
|
- name: Ruby 2.7.1 for capistrano3
|
732
771
|
env_vars:
|
733
772
|
- name: RUBY_VERSION
|
@@ -742,6 +781,7 @@ blocks:
|
|
742
781
|
value: latest
|
743
782
|
commands:
|
744
783
|
- "./support/bundler_wrapper exec rake test"
|
784
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
745
785
|
- name: Ruby 2.7.1 for grape
|
746
786
|
env_vars:
|
747
787
|
- name: RUBY_VERSION
|
@@ -756,6 +796,7 @@ blocks:
|
|
756
796
|
value: latest
|
757
797
|
commands:
|
758
798
|
- "./support/bundler_wrapper exec rake test"
|
799
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
759
800
|
- name: Ruby 2.7.1 for padrino
|
760
801
|
env_vars:
|
761
802
|
- name: RUBY_VERSION
|
@@ -770,6 +811,7 @@ blocks:
|
|
770
811
|
value: latest
|
771
812
|
commands:
|
772
813
|
- "./support/bundler_wrapper exec rake test"
|
814
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
773
815
|
- name: Ruby 2.7.1 for que
|
774
816
|
env_vars:
|
775
817
|
- name: RUBY_VERSION
|
@@ -784,6 +826,7 @@ blocks:
|
|
784
826
|
value: latest
|
785
827
|
commands:
|
786
828
|
- "./support/bundler_wrapper exec rake test"
|
829
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
787
830
|
- name: Ruby 2.7.1 for que_beta
|
788
831
|
env_vars:
|
789
832
|
- name: RUBY_VERSION
|
@@ -798,6 +841,7 @@ blocks:
|
|
798
841
|
value: latest
|
799
842
|
commands:
|
800
843
|
- "./support/bundler_wrapper exec rake test"
|
844
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
801
845
|
- name: Ruby 2.7.1 for rails-5.0
|
802
846
|
env_vars:
|
803
847
|
- name: RUBY_VERSION
|
@@ -812,6 +856,7 @@ blocks:
|
|
812
856
|
value: latest
|
813
857
|
commands:
|
814
858
|
- "./support/bundler_wrapper exec rake test"
|
859
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
815
860
|
- name: Ruby 2.7.1 for rails-5.1
|
816
861
|
env_vars:
|
817
862
|
- name: RUBY_VERSION
|
@@ -826,6 +871,7 @@ blocks:
|
|
826
871
|
value: latest
|
827
872
|
commands:
|
828
873
|
- "./support/bundler_wrapper exec rake test"
|
874
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
829
875
|
- name: Ruby 2.7.1 for rails-5.2
|
830
876
|
env_vars:
|
831
877
|
- name: RUBY_VERSION
|
@@ -840,6 +886,7 @@ blocks:
|
|
840
886
|
value: latest
|
841
887
|
commands:
|
842
888
|
- "./support/bundler_wrapper exec rake test"
|
889
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
843
890
|
- name: Ruby 2.7.1 for rails-6.0
|
844
891
|
env_vars:
|
845
892
|
- name: RUBY_VERSION
|
@@ -854,6 +901,7 @@ blocks:
|
|
854
901
|
value: latest
|
855
902
|
commands:
|
856
903
|
- "./support/bundler_wrapper exec rake test"
|
904
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
857
905
|
- name: Ruby 2.7.1 for resque-1
|
858
906
|
env_vars:
|
859
907
|
- name: RUBY_VERSION
|
@@ -868,6 +916,7 @@ blocks:
|
|
868
916
|
value: 1.17.3
|
869
917
|
commands:
|
870
918
|
- "./support/bundler_wrapper exec rake test"
|
919
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
871
920
|
- name: Ruby 2.7.1 for resque-2
|
872
921
|
env_vars:
|
873
922
|
- name: RUBY_VERSION
|
@@ -882,6 +931,7 @@ blocks:
|
|
882
931
|
value: latest
|
883
932
|
commands:
|
884
933
|
- "./support/bundler_wrapper exec rake test"
|
934
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
885
935
|
- name: Ruby 2.7.1 for sequel
|
886
936
|
env_vars:
|
887
937
|
- name: RUBY_VERSION
|
@@ -896,6 +946,7 @@ blocks:
|
|
896
946
|
value: latest
|
897
947
|
commands:
|
898
948
|
- "./support/bundler_wrapper exec rake test"
|
949
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
899
950
|
- name: Ruby 2.7.1 for sequel-435
|
900
951
|
env_vars:
|
901
952
|
- name: RUBY_VERSION
|
@@ -910,6 +961,7 @@ blocks:
|
|
910
961
|
value: latest
|
911
962
|
commands:
|
912
963
|
- "./support/bundler_wrapper exec rake test"
|
964
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
913
965
|
- name: Ruby 2.7.1 for sinatra
|
914
966
|
env_vars:
|
915
967
|
- name: RUBY_VERSION
|
@@ -924,6 +976,7 @@ blocks:
|
|
924
976
|
value: latest
|
925
977
|
commands:
|
926
978
|
- "./support/bundler_wrapper exec rake test"
|
979
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
927
980
|
- name: Ruby 2.7.1 for webmachine
|
928
981
|
env_vars:
|
929
982
|
- name: RUBY_VERSION
|
@@ -938,6 +991,7 @@ blocks:
|
|
938
991
|
value: latest
|
939
992
|
commands:
|
940
993
|
- "./support/bundler_wrapper exec rake test"
|
994
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
941
995
|
- name: Ruby jruby-9.1.17.0
|
942
996
|
dependencies:
|
943
997
|
- Validation
|
@@ -960,6 +1014,7 @@ blocks:
|
|
960
1014
|
value: latest
|
961
1015
|
commands:
|
962
1016
|
- "./support/bundler_wrapper exec rake test"
|
1017
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
963
1018
|
- name: Ruby jruby-9.1.17.0 - Gems
|
964
1019
|
dependencies:
|
965
1020
|
- Ruby jruby-9.1.17.0
|
@@ -982,3 +1037,4 @@ blocks:
|
|
982
1037
|
value: latest
|
983
1038
|
commands:
|
984
1039
|
- "./support/bundler_wrapper exec rake test"
|
1040
|
+
- "./support/bundler_wrapper exec rake test:failure"
|
data/CHANGELOG.md
CHANGED
@@ -23,6 +23,18 @@
|
|
23
23
|
- Always report Active Job ID, an internal ID used by Active Job. PR #639
|
24
24
|
- Support Delayed::Job jobs without specific method name, using
|
25
25
|
`Delayed::Job.enqueue`. PR #642
|
26
|
+
- Print warnings using Kernel.warn. PR #648
|
27
|
+
- Update AuthCheck class to use DeprecationMessage helper. PR #649
|
28
|
+
- Print extension load error when AppSignal is loaded. PR #651
|
29
|
+
|
30
|
+
# 2.10.11
|
31
|
+
- Fix extension install report status output in `appsignal diagnose`. PR #636
|
32
|
+
- Support setting a specific configuration file to load with the
|
33
|
+
`Appsignal::Config` initializer. PR #638
|
34
|
+
|
35
|
+
# 2.10.10
|
36
|
+
- Bump agent to v-4548c88. PR #634
|
37
|
+
- Fix issue with host metrics values being reported as "Infinity".
|
26
38
|
|
27
39
|
# 2.10.9
|
28
40
|
- Use http proxy if configured when downloading agent. PR #606
|