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 +4 -4
- data/CHANGELOG.md +7 -0
- data/config-schema.yml +16 -4
- data/lib/appmap/gem_hooks/activejob-cancel.yml +2 -0
- data/lib/appmap/gem_hooks/activejob.yml +2 -0
- data/lib/appmap/gem_hooks/resque.yml +4 -0
- data/lib/appmap/gem_hooks/sidekiq.yml +4 -0
- data/lib/appmap/version.rb +1 -1
- metadata +6 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7291177cb4b4c1565130c14731988bc5747f40e63b838b91576d27410820cae5
|
|
4
|
+
data.tar.gz: 9026fd2fb37bb292571582d6f0f5c04bb0752ac3683b5bcf120c103e65fed5de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
48
|
+
method:
|
|
49
49
|
type: string
|
|
50
|
-
|
|
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
|
data/lib/appmap/version.rb
CHANGED
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.
|
|
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
|
+
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
|