appmap 0.63.0 → 0.64.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 42f7035cf2ee0f8595c813470df56fd34e77e41c70a9303165272ba252ea0d6d
4
- data.tar.gz: 728224dd6897ae1a0aee4cf12f8253fb6081eb1420e1caad99623d46d7b88613
3
+ metadata.gz: 0df13ca1b5fd3d0dbba13b97bdb28e5fd3e37a62763282769d370fd1c7f3d9bc
4
+ data.tar.gz: d2cf8db5e9fdbd0c9802a514d9a35f19caa305fad9eeb7ecef42fb6d195a8735
5
5
  SHA512:
6
- metadata.gz: d2775d730040fd7d2c7603c0700fd6698b97addfec2f6156ad9602b158b6a461a70c21c53647ef51afa9cbe47f22c06b4218c9684664b367145373eebb1c709c
7
- data.tar.gz: f69c9a3674311f75a9a0d418f42331655c5225cdc6b2d3fc100d76d45894cdd94bdbb48ad7f400512acf684808f7cf4de4bce31b07b63a994f4f372f504db880
6
+ metadata.gz: 327795a4c2903e30f487ec12c3e989a79d42f9c3b9d4dcd1ef3d5e863cbdefecc189f157a61cd3652c985f92a39d94f915eeee52db5d41ed6ac1f9fa8befc0cf
7
+ data.tar.gz: cc3a9a103df311b1060050207557bd76f898314295562d6913279924ad13983fcb720bacefd553857b551e07f4ec0b308334ae944adafd72ba624487d61b5031
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [0.64.0](https://github.com/applandinc/appmap-ruby/compare/v0.63.0...v0.64.0) (2021-08-24)
2
+
3
+
4
+ ### Features
5
+
6
+ * Show config file name in validation messages ([95520f8](https://github.com/applandinc/appmap-ruby/commit/95520f83a2b27fae6a3d5751cc1a4a1180c2dc25))
7
+
1
8
  # [0.63.0](https://github.com/applandinc/appmap-ruby/compare/v0.62.1...v0.63.0) (2021-08-24)
2
9
 
3
10
 
@@ -39,7 +39,7 @@ module AppMap
39
39
  rescue Psych::SyntaxError => e
40
40
  @violations << Violation.error(
41
41
  filename: @config_file,
42
- message: 'AppMap configuration is not valid YAML',
42
+ message: "AppMap configuration #{@config_file} is not valid YAML",
43
43
  detailed_message: e.message
44
44
  )
45
45
  nil
@@ -52,7 +52,7 @@ module AppMap
52
52
  rescue StandardError => e
53
53
  @violations << Violation.error(
54
54
  filename: @config_file,
55
- message: 'AppMap configuration could not be loaded',
55
+ message: "AppMap configuration #{@config_file} could not be loaded",
56
56
  detailed_message: e.message
57
57
  )
58
58
  nil
@@ -62,7 +62,7 @@ module AppMap
62
62
  unless present?
63
63
  @violations << Violation.error(
64
64
  filename: @config_file,
65
- message: 'AppMap configuration file does not exist'
65
+ message: "AppMap configuration #{@config_file} file does not exist"
66
66
  )
67
67
  end
68
68
  end
@@ -3,7 +3,7 @@
3
3
  module AppMap
4
4
  URL = 'https://github.com/applandinc/appmap-ruby'
5
5
 
6
- VERSION = '0.63.0'
6
+ VERSION = '0.64.0'
7
7
 
8
8
  APPMAP_FORMAT_VERSION = '1.5.1'
9
9
 
@@ -30,7 +30,7 @@ class AgentSetupValidateTest < Minitest::Test
30
30
  {
31
31
  level: :error,
32
32
  filename: NON_EXISTING_CONFIG_FILENAME,
33
- message: 'AppMap configuration file does not exist'
33
+ message: "AppMap configuration #{NON_EXISTING_CONFIG_FILENAME} file does not exist"
34
34
  }
35
35
  ])
36
36
  assert_equal expected, output.strip
@@ -47,7 +47,7 @@ class AgentSetupValidateTest < Minitest::Test
47
47
  {
48
48
  level: :error,
49
49
  filename: INVALID_YAML_CONFIG_FILENAME,
50
- message: 'AppMap configuration is not valid YAML',
50
+ message: "AppMap configuration #{INVALID_YAML_CONFIG_FILENAME} is not valid YAML",
51
51
  detailed_message: "(#{INVALID_YAML_CONFIG_FILENAME}): " \
52
52
  'did not find expected key while parsing a block mapping at line 1 column 1'
53
53
  }
@@ -66,7 +66,7 @@ class AgentSetupValidateTest < Minitest::Test
66
66
  {
67
67
  level: :error,
68
68
  filename: INVALID_CONFIG_FILENAME,
69
- message: 'AppMap configuration could not be loaded',
69
+ message: "AppMap configuration #{INVALID_CONFIG_FILENAME} could not be loaded",
70
70
  detailed_message: "no implicit conversion of String into Integer"
71
71
  }
72
72
  ])
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.63.0
4
+ version: 0.64.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Gilpin