appmap 0.70.2 → 0.71.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: d65574736497b9626d5d45bedee98bf5b4e810dada23199cb3b6857928c609a7
4
- data.tar.gz: d90ebdbb5978d36a9fa78aab06df63578645d600dc26e8a3c3e78e5a9c3f198d
3
+ metadata.gz: cac567f064d0d5059d29abbeb91341fcbfc7ede0ae449ef6731272bd4f36e313
4
+ data.tar.gz: df9ce73e1770a9d6f171df8f8796cecd9dde98409167900fa575d26ef93ea6f4
5
5
  SHA512:
6
- metadata.gz: e6645bda09b9fb033825c4230518322b537b013d96ec5c76de25736729a10d2338fd3361481901c804472c23f68552f5f6822d487dbd935ab8c45b67810b4a7a
7
- data.tar.gz: a831e8748e982cf7ebb65f0a3bc0a9209a7e8b1991b85716d4fc43898685749304eeb5450b5e84a4657187b95f38b05c936a49b35ad18e30e8070110ddccf7ee
6
+ metadata.gz: 84e300cd56db7c9853d393d27efd9184bd35aa4933d939d1693782f2ab81d22f25049a350ca929067f688f60a63175e963932769978bbc142d64427d17a3ccbb
7
+ data.tar.gz: bfd31a6d1998660bf04ef2346fa678518ad39ffd3f4b509627e0b739616e0c59a6d5e98ea4d2be9115f448b138d95af4760b2178592891a75b3d40cf6baa0136
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [0.71.0](https://github.com/applandinc/appmap-ruby/compare/v0.70.2...v0.71.0) (2022-01-19)
2
+
3
+
4
+ ### Features
5
+
6
+ * Add labels for http.session.clear, dao.materialize, log ([8e6784b](https://github.com/applandinc/appmap-ruby/commit/8e6784b82959eb5924d4675b43f6b98c7bd1b779))
7
+
1
8
  ## [0.70.2](https://github.com/applandinc/appmap-ruby/compare/v0.70.1...v0.70.2) (2022-01-12)
2
9
 
3
10
 
@@ -0,0 +1,3 @@
1
+ - method: Logger::LogDevice#write
2
+ require_name: logger
3
+ label: log
@@ -10,17 +10,22 @@
10
10
  - methods:
11
11
  - ActionDispatch::Request::Session#destroy
12
12
  - ActionDispatch::Request::Session#[]=
13
- - ActionDispatch::Request::Session#clear
14
13
  - ActionDispatch::Request::Session#update
15
14
  - ActionDispatch::Request::Session#delete
16
15
  - ActionDispatch::Request::Session#merge
17
16
  - ActionDispatch::Cookies::CookieJar#[]=
18
- - ActionDispatch::Cookies::CookieJar#clear
19
17
  - ActionDispatch::Cookies::CookieJar#update
20
18
  - ActionDispatch::Cookies::CookieJar#delete
21
19
  - ActionDispatch::Cookies::CookieJar#recycle!
22
20
  label: http.session.write
23
21
  require_name: action_dispatch
22
+ - methods:
23
+ - ActionDispatch::Request::Session#clear
24
+ - ActionDispatch::Cookies::CookieJar#clear
25
+ labels:
26
+ - http.session.write
27
+ - http.session.clear
28
+ require_name: action_dispatch
24
29
  - methods:
25
30
  - ActionDispatch::Cookies::EncryptedCookieJar#[]=
26
31
  - ActionDispatch::Cookies::EncryptedCookieJar#clear
@@ -0,0 +1,2 @@
1
+ - method: ActiveRecord::Relation#records
2
+ label: dao.materialize
@@ -3,7 +3,7 @@
3
3
  module AppMap
4
4
  URL = 'https://github.com/applandinc/appmap-ruby'
5
5
 
6
- VERSION = '0.70.2'
6
+ VERSION = '0.71.0'
7
7
 
8
8
  APPMAP_FORMAT_VERSION = '1.5.1'
9
9
 
data/spec/config_spec.rb CHANGED
@@ -96,6 +96,14 @@ describe AppMap::Config, docker: false do
96
96
  ]
97
97
  }
98
98
  ],
99
+ "Logger::LogDevice": [
100
+ {
101
+ "package": "logger",
102
+ "method_names": [
103
+ "write"
104
+ ]
105
+ }
106
+ ],
99
107
  "Net::HTTP": [
100
108
  {
101
109
  "package": "net/http",
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.70.2
4
+ version: 0.71.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: 2022-01-12 00:00:00.000000000 Z
11
+ date: 2022-01-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -3406,6 +3406,7 @@ files:
3406
3406
  - lib/appmap.rb
3407
3407
  - lib/appmap/agent.rb
3408
3408
  - lib/appmap/builtin_hooks/json.yml
3409
+ - lib/appmap/builtin_hooks/logger.yml
3409
3410
  - lib/appmap/builtin_hooks/net/http.yml
3410
3411
  - lib/appmap/builtin_hooks/openssl.yml
3411
3412
  - lib/appmap/builtin_hooks/yaml.yml
@@ -3431,6 +3432,7 @@ files:
3431
3432
  - lib/appmap/gem_hooks/actionview.yml
3432
3433
  - lib/appmap/gem_hooks/activejob-cancel.yml
3433
3434
  - lib/appmap/gem_hooks/activejob.yml
3435
+ - lib/appmap/gem_hooks/activerecord.yml
3434
3436
  - lib/appmap/gem_hooks/activesupport.yml
3435
3437
  - lib/appmap/gem_hooks/cancancan.yml
3436
3438
  - lib/appmap/gem_hooks/resque.yml