appmap 0.81.0 → 0.81.1
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 +8 -0
- data/lib/appmap/hook.rb +1 -1
- data/lib/appmap/open.rb +1 -1
- data/lib/appmap/version.rb +2 -2
- data/spec/depends/api_spec.rb +21 -17
- data/spec/hook_spec.rb +10 -6
- data/spec/remote_recording_spec.rb +6 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 94d8d2495de74768697429a640c553549c029992969acfeb65c540f2471fbef3
|
4
|
+
data.tar.gz: bfbdf261991d859d31ec1f98c95ca9954e08bb1de0fe98ac2973a06c42a3dd18
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 993e2ce2c51973a6469fd5f10c66c48c13200c4456f3230748e9d5ffd2b107962cdae7d0b286d59e4ee95aee98957dfa6cd062d0ac4ba5ab1923e99da233edf1
|
7
|
+
data.tar.gz: 512cb13c413d394d5237840f8dfec94a0d1d0720cb6c4e164d46e11949078b808b7c25220c3c0fc32a9be74ed4326726ef844588ea346a84242bdca1f87f3056
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
## [0.81.1](https://github.com/applandinc/appmap-ruby/compare/v0.81.0...v0.81.1) (2022-04-27)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* AppMap format version is 1.7.0 ([53b3f04](https://github.com/applandinc/appmap-ruby/commit/53b3f04dc4f4a7867f28f5b196b2fadbe7cb6eeb))
|
7
|
+
* Avoid return within a block (Ruby 2.5) ([85094fd](https://github.com/applandinc/appmap-ruby/commit/85094fd760b3ea08d343960cf586f4cce210fb07))
|
8
|
+
|
1
9
|
# [0.81.0](https://github.com/applandinc/appmap-ruby/compare/v0.80.2...v0.81.0) (2022-04-26)
|
2
10
|
|
3
11
|
|
data/lib/appmap/hook.rb
CHANGED
@@ -116,7 +116,7 @@ module AppMap
|
|
116
116
|
|
117
117
|
hook_method = lambda do |entry|
|
118
118
|
cls, method = entry
|
119
|
-
|
119
|
+
next if config.never_hook?(cls, method)
|
120
120
|
|
121
121
|
hook.package.handler_class.new(hook.package, cls, method).activate
|
122
122
|
end
|
data/lib/appmap/open.rb
CHANGED
data/lib/appmap/version.rb
CHANGED
data/spec/depends/api_spec.rb
CHANGED
@@ -110,12 +110,14 @@ describe 'Depends API' do
|
|
110
110
|
|
111
111
|
describe 'smoke test' do
|
112
112
|
around do |test|
|
113
|
-
|
114
|
-
|
113
|
+
begin
|
114
|
+
@minitest_test_command_method = AppMap.configuration.depends_config.minitest_test_command_method
|
115
|
+
AppMap.configuration.depends_config.minitest_test_command_method = 'AppMap::Depends::APISpec.minitest_test_command'
|
115
116
|
|
116
|
-
|
117
|
-
|
118
|
-
|
117
|
+
test.call
|
118
|
+
ensure
|
119
|
+
AppMap.configuration.depends_config.minitest_test_command_method = @minitest_test_command
|
120
|
+
end
|
119
121
|
end
|
120
122
|
|
121
123
|
it 'passes a smoke test' do
|
@@ -125,20 +127,22 @@ describe 'Depends API' do
|
|
125
127
|
|
126
128
|
describe 'configuration settings' do
|
127
129
|
it 'can all be modified' do
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
%i[
|
132
|
-
|
133
|
-
|
134
|
-
|
130
|
+
begin
|
131
|
+
defaults = {}
|
132
|
+
|
133
|
+
%i[rspec minitest].each do |framework|
|
134
|
+
%i[environment_method select_tests_method test_command_method].each do |setting|
|
135
|
+
full_setting = [ framework, setting ].join('_').to_sym
|
136
|
+
defaults[full_setting] = AppMap.configuration.depends_config.send(full_setting)
|
137
|
+
AppMap.configuration.depends_config.send("#{full_setting}=", "AppMap::Depends::APISpec.#{full_setting}")
|
138
|
+
end
|
135
139
|
end
|
136
|
-
end
|
137
140
|
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
141
|
+
run_tests
|
142
|
+
ensure
|
143
|
+
defaults.keys.each do |setting|
|
144
|
+
AppMap.configuration.depends_config.send("#{setting}=", defaults[setting])
|
145
|
+
end
|
142
146
|
end
|
143
147
|
end
|
144
148
|
end
|
data/spec/hook_spec.rb
CHANGED
@@ -751,9 +751,11 @@ describe 'AppMap class Hooking' do
|
|
751
751
|
:lineno: 9
|
752
752
|
YAML
|
753
753
|
test_hook_behavior 'spec/fixtures/hook/exception_method.rb', events_yaml do
|
754
|
-
|
755
|
-
|
756
|
-
|
754
|
+
begin
|
755
|
+
ExceptionMethod.new.raise_exception
|
756
|
+
rescue
|
757
|
+
# don't let the exception fail the test
|
758
|
+
end
|
757
759
|
end
|
758
760
|
end
|
759
761
|
|
@@ -781,9 +783,11 @@ describe 'AppMap class Hooking' do
|
|
781
783
|
:lineno: 59
|
782
784
|
YAML
|
783
785
|
test_hook_behavior 'spec/fixtures/hook/exception_method.rb', events_yaml do
|
784
|
-
|
785
|
-
|
786
|
-
|
786
|
+
begin
|
787
|
+
ExceptionMethod.new.raise_illegal_utf8_message
|
788
|
+
rescue
|
789
|
+
# don't let the exception fail the test
|
790
|
+
end
|
787
791
|
end
|
788
792
|
end
|
789
793
|
|
@@ -18,10 +18,12 @@ describe 'remote recording', :order => :defined do
|
|
18
18
|
uri = URI("http://localhost:#{@service_port}/health")
|
19
19
|
|
20
20
|
100.times do
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
21
|
+
begin
|
22
|
+
Net::HTTP.get(uri)
|
23
|
+
break
|
24
|
+
rescue Errno::ECONNREFUSED
|
25
|
+
sleep 0.1
|
26
|
+
end
|
25
27
|
end
|
26
28
|
end
|
27
29
|
|
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.81.
|
4
|
+
version: 0.81.1
|
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-04-
|
11
|
+
date: 2022-04-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|