appmap 0.61.0 → 0.61.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ff3bf2ebd7ec8fcc1a5af2e4e6dad9198f03aa002e5d9ec1c481989bae11fb4b
4
- data.tar.gz: 0b601eb264047a0971ef17d086ea6335b2e657d198dbd8ec8892a8191d0ab373
3
+ metadata.gz: 8238a1a1651c5fb157b7603ff92169e3e44097318057eb3ef29d57d600817335
4
+ data.tar.gz: dd805a2bfa96ae3da4ea3bc47df524aa606e9b6dc69d943daa0a360f8da98ea5
5
5
  SHA512:
6
- metadata.gz: 95d564c8858735cd87fe794657ab301fe38b96281f9947f7bc471d3a0bb9eb296b0eee309c234a2645f248aeec61bb73687378972cb5eb413ca628424787f167
7
- data.tar.gz: 6adc060b2f2cb22f75ffb320d55f4a78a297e870b9f01b832aef366a5ecb95ff70e02ca6785644b353fbab1480418c18fddaef2242e9037aafd2d2e35b2d0d47
6
+ metadata.gz: 41e1766995e26ebf75d33403c7b4d72e562b8d14202d3e34f094a276254f67e193b957ea1e26b8e0a561328ed7594fb1dce8cf554ee780df7155e276f7e04e5f
7
+ data.tar.gz: ba4c314bf9b07b377ea7e3714c082f9121bc082add10d04118e59c9cc0fd4ccdc9575159f6e6023bf0acf25a28cf8559f4d3a00f6942b1f0c17bdd7face0c2f1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.61.1](https://github.com/applandinc/appmap-ruby/compare/v0.61.0...v0.61.1) (2021-07-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add `DISABLE_SPRING` flag by default ([51ffd76](https://github.com/applandinc/appmap-ruby/commit/51ffd769558dd473f993889fe694c761779f5ef1))
7
+
1
8
  # [0.61.0](https://github.com/applandinc/appmap-ruby/compare/v0.60.0...v0.61.0) (2021-07-14)
2
9
 
3
10
 
@@ -16,9 +16,7 @@ module AppMap
16
16
  command: {
17
17
  program: 'bundle',
18
18
  args: %w[exec rspec] + integration_test_paths[:rspec].map { |path| "./#{path}" },
19
- environment: {
20
- APPMAP: 'true'
21
- }
19
+ environment: { APPMAP: 'true', DISABLE_SPRING: 'true' }
22
20
  }
23
21
  }
24
22
  end
@@ -32,7 +30,7 @@ module AppMap
32
30
  command: {
33
31
  program: 'bundle',
34
32
  args: %w[exec cucumber],
35
- environment: { APPMAP: 'true' }
33
+ environment: { APPMAP: 'true', DISABLE_SPRING: 'true' }
36
34
  }
37
35
  }
38
36
  end
@@ -50,7 +48,7 @@ module AppMap
50
48
  command: {
51
49
  program: 'bundle',
52
50
  args: %w[exec rails test] + integration_test_paths[:minitest].map { |path| "./#{path}" },
53
- environment: { APPMAP: 'true' }
51
+ environment: { APPMAP: 'true', DISABLE_SPRING: 'true' }
54
52
  }
55
53
  }
56
54
  ]
@@ -61,7 +59,7 @@ module AppMap
61
59
  command: {
62
60
  program: 'bundle',
63
61
  args: ['exec', 'ruby', "./#{path}"],
64
- environment: { APPMAP: 'true' }
62
+ environment: { APPMAP: 'true', DISABLE_SPRING: 'true' }
65
63
  }
66
64
  }
67
65
  end
@@ -3,7 +3,7 @@
3
3
  module AppMap
4
4
  URL = 'https://github.com/applandinc/appmap-ruby'
5
5
 
6
- VERSION = '0.61.0'
6
+ VERSION = '0.61.1'
7
7
 
8
8
  APPMAP_FORMAT_VERSION = '1.5.1'
9
9
 
@@ -37,7 +37,8 @@ class AgentSetupInitTest < Minitest::Test
37
37
  program: 'bundle',
38
38
  args: %w[exec rspec ./spec/controllers],
39
39
  environment: {
40
- APPMAP: 'true'
40
+ APPMAP: 'true',
41
+ DISABLE_SPRING: 'true'
41
42
  }
42
43
  }
43
44
  },
@@ -47,7 +48,8 @@ class AgentSetupInitTest < Minitest::Test
47
48
  program: 'bundle',
48
49
  args: %w[exec ruby ./test/controllers],
49
50
  environment: {
50
- APPMAP: 'true'
51
+ APPMAP: 'true',
52
+ DISABLE_SPRING: 'true'
51
53
  }
52
54
  }
53
55
  },
@@ -57,7 +59,8 @@ class AgentSetupInitTest < Minitest::Test
57
59
  program: 'bundle',
58
60
  args: %w[exec ruby ./test/integration],
59
61
  environment: {
60
- APPMAP: 'true'
62
+ APPMAP: 'true',
63
+ DISABLE_SPRING: 'true'
61
64
  }
62
65
  }
63
66
  }
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.61.0
4
+ version: 0.61.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: 2021-07-14 00:00:00.000000000 Z
11
+ date: 2021-07-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport