appmap 0.90.1 → 0.91.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: e8c53e191f43fe539ca2fd9381bf690597ec89b96ab1848680344b3d52a1b8f6
4
- data.tar.gz: 1ee5593abdd95aefcc4b10a9ac717ea281e27885a4fd6a89fa0dc10ea5c2f66a
3
+ metadata.gz: 4d721301c87647a2778b1019519a7ada3fc225761b32149070ee38d8e47c5643
4
+ data.tar.gz: b4a130739d8974a3adbe44a9020618e9f88530174de19e8aaa0713dad23336c4
5
5
  SHA512:
6
- metadata.gz: c718347cfdb809cdfbdd46bee5399a98e6100d5afc3120e060f297d6f950227f1e263fab6baf5b705c4ec3573ef2f9aa1d1e96aff2053e120de1a2cc7dc4a55e
7
- data.tar.gz: 89e90d35c06c1ae3db76bb58481dce70420081c92e386dc1b75922fbe53fcdac2609f157967fdacf476e3ed9c5f5c79bcfe83a88e56f84ab14aebaaab36fccfe
6
+ metadata.gz: 9f0778dc18e12f668bc072b94f21f61f1310c6d0163531e7e8407fd5e45d64d9a2e1b2a9d4c0cf98c1ba3f31697ca38ee50461f55b293893442a7b19f515ac3a
7
+ data.tar.gz: 9469680e79ccf0e8a43967c1c6d0104c48d35399fd39b205bfc9d3c41f32f2469d527989f38e965f80e00f320cfce9026c124ed775f27ba773bf58d449083d6c
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [0.91.0](https://github.com/applandinc/appmap-ruby/compare/v0.90.1...v0.91.0) (2022-09-19)
2
+
3
+
4
+ ### Features
5
+
6
+ * Emit metadata.recorder.type ([6358669](https://github.com/applandinc/appmap-ruby/commit/6358669d5dc5123a613b18301519dac709614406))
7
+
1
8
  ## [0.90.1](https://github.com/applandinc/appmap-ruby/compare/v0.90.0...v0.90.1) (2022-09-19)
2
9
 
3
10
 
@@ -92,7 +92,8 @@ module AppMap
92
92
  'version' => Gem.loaded_specs['cucumber']&.version&.to_s
93
93
  }
94
94
  m['recorder'] = {
95
- 'name' => 'cucumber'
95
+ 'name' => 'cucumber',
96
+ 'type' => 'tests'
96
97
  }
97
98
  end
98
99
  end
@@ -63,7 +63,8 @@ module AppMap
63
63
 
64
64
  metadata = AppMap.detect_metadata
65
65
  metadata[:recorder] = {
66
- name: 'remote_recording'
66
+ name: 'remote_recording',
67
+ type: 'remote'
67
68
  }
68
69
 
69
70
  response = JSON.generate \
@@ -103,7 +104,8 @@ module AppMap
103
104
  metadata[:name] = appmap_name
104
105
  metadata[:timestamp] = start_time.to_f
105
106
  metadata[:recorder] = {
106
- name: 'record_requests'
107
+ name: 'rack',
108
+ type: 'requests'
107
109
  }
108
110
 
109
111
  appmap = {
@@ -101,7 +101,8 @@ module AppMap
101
101
  version: Gem.loaded_specs['minitest']&.version&.to_s
102
102
  }
103
103
  m[:recorder] = {
104
- name: 'minitest'
104
+ name: 'minitest',
105
+ type: 'tests'
105
106
  }
106
107
  m[:test_status] = test_status
107
108
  if exception
data/lib/appmap/record.rb CHANGED
@@ -14,7 +14,8 @@ at_exit do
14
14
 
15
15
  metadata = AppMap.detect_metadata
16
16
  metadata[:recorder] = {
17
- name: 'record_process'
17
+ name: 'record_process',
18
+ type: 'process'
18
19
  }
19
20
 
20
21
  appmap = {
data/lib/appmap/rspec.rb CHANGED
@@ -192,7 +192,8 @@ module AppMap
192
192
  version: Gem.loaded_specs['rspec-core']&.version&.to_s
193
193
  }
194
194
  m[:recorder] = {
195
- name: 'rspec'
195
+ name: 'rspec',
196
+ type: 'tests'
196
197
  }
197
198
  m[:test_status] = test_status
198
199
  if exception
@@ -3,9 +3,9 @@
3
3
  module AppMap
4
4
  URL = 'https://github.com/applandinc/appmap-ruby'
5
5
 
6
- VERSION = '0.90.1'
6
+ VERSION = '0.91.0'
7
7
 
8
- APPMAP_FORMAT_VERSION = '1.7.0'
8
+ APPMAP_FORMAT_VERSION = '1.9.0'
9
9
 
10
10
  SUPPORTED_RUBY_VERSIONS = %w[2.5 2.6 2.7 3.0 3.1].freeze
11
11
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appmap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.90.1
4
+ version: 0.91.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Gilpin