appmap 0.68.2 → 0.69.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7e87a42863f68312980ff6e9689b74489b147b283854463abbf1e2cf6be4fe29
4
- data.tar.gz: 0d5a7e86d9cea6ba154e6bc1ceb920fcba978074afd4351663832946d0ab0f30
3
+ metadata.gz: 7291177cb4b4c1565130c14731988bc5747f40e63b838b91576d27410820cae5
4
+ data.tar.gz: 9026fd2fb37bb292571582d6f0f5c04bb0752ac3683b5bcf120c103e65fed5de
5
5
  SHA512:
6
- metadata.gz: bc509802c9b69cca4cc88560b23b0d56e6c72f852e21dc414f5732e6e4cbfe8867b7dcfa132673e2a647f072bcafbe0086e2cbc15b2280eb3b5e3fcaef2db577
7
- data.tar.gz: e48934b5719439fa61970e7d239b163c6f42c0e9f5bd7c4a7959f73b62ff9e610fb967b124698129c96271a124d8288e9069e073f1cdeeffc53060270cf30c26
6
+ metadata.gz: e78dcc4ba973bab886940dabbc87fc01e6e973a097782af9086a38efe415de8a64f422f5b0f9a0a36cd4ff1b33ae94a55b41f3b85f9e95cdc32839b95092ea16
7
+ data.tar.gz: c45a0188aa65f1a42c6788fa77ead708e3e2b468af33b9b3603df5c75d5888ed6623940ad1d0f8687bf42ddec6ad202fe8d41dbd862b75a2f87acd0c90472d8b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [0.69.0](https://github.com/applandinc/appmap-ruby/compare/v0.68.2...v0.69.0) (2021-12-01)
2
+
3
+
4
+ ### Features
5
+
6
+ * Add labels for job creation and canceling ([644fafe](https://github.com/applandinc/appmap-ruby/commit/644fafe7f0eab626a9e0a52243ad4faf052a883a))
7
+
1
8
  ## [0.68.2](https://github.com/applandinc/appmap-ruby/compare/v0.68.1...v0.68.2) (2021-11-25)
2
9
 
3
10
 
data/config-schema.yml CHANGED
@@ -45,13 +45,25 @@ properties:
45
45
  type: object
46
46
  additionalProperties: false
47
47
  properties:
48
- package:
48
+ method:
49
49
  type: string
50
- class:
51
- type: string
52
- function:
50
+ label:
53
51
  type: string
52
+ methods:
53
+ type: array
54
+ items:
55
+ type: string
54
56
  labels:
55
57
  type: array
56
58
  items:
57
59
  type: string
60
+ require_name:
61
+ type: string
62
+ gem:
63
+ type: string
64
+ path:
65
+ type: string
66
+ builtin:
67
+ type: boolean
68
+ force:
69
+ type: boolean
@@ -0,0 +1,2 @@
1
+ - method: ActiveJob::Cancel#cancel
2
+ label: job.cancel
@@ -0,0 +1,2 @@
1
+ - method: ActiveJob::Enqueuing#enqueue
2
+ label: job.create
@@ -0,0 +1,4 @@
1
+ - method: Resque::Job.create
2
+ label: job.create
3
+ - method: Resque::Job.destroy
4
+ label: job.cancel
@@ -0,0 +1,4 @@
1
+ - method: Sidekiq::Client#push
2
+ label: job.create
3
+ - method: Sidekiq::Job#delete
4
+ label: job.cancel
@@ -3,7 +3,7 @@
3
3
  module AppMap
4
4
  URL = 'https://github.com/applandinc/appmap-ruby'
5
5
 
6
- VERSION = '0.68.2'
6
+ VERSION = '0.69.0'
7
7
 
8
8
  APPMAP_FORMAT_VERSION = '1.5.1'
9
9
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appmap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.68.2
4
+ version: 0.69.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Gilpin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-11-25 00:00:00.000000000 Z
11
+ date: 2021-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -3429,8 +3429,12 @@ files:
3429
3429
  - lib/appmap/event.rb
3430
3430
  - lib/appmap/gem_hooks/actionpack.yml
3431
3431
  - lib/appmap/gem_hooks/actionview.yml
3432
+ - lib/appmap/gem_hooks/activejob-cancel.yml
3433
+ - lib/appmap/gem_hooks/activejob.yml
3432
3434
  - lib/appmap/gem_hooks/activesupport.yml
3433
3435
  - lib/appmap/gem_hooks/cancancan.yml
3436
+ - lib/appmap/gem_hooks/resque.yml
3437
+ - lib/appmap/gem_hooks/sidekiq.yml
3434
3438
  - lib/appmap/handler/function.rb
3435
3439
  - lib/appmap/handler/net_http.rb
3436
3440
  - lib/appmap/handler/rails/request_handler.rb