puppet-debugger 0.10.2 → 0.10.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/CHANGELOG.md +132 -76
- data/lib/puppet/application/debugger.rb +1 -4
- data/lib/puppet-debugger/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 56bddbd88e1782f203b95319c3774d48d0421cf328ffd82df8118edb76b87e55
|
4
|
+
data.tar.gz: fec7e054cc3a5ce5bee5a0aada0ef970e4ca34518a8c25010bf817f32fe7b64f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6ef7818ca1de88313ad413332f2181e65b0fbd889a076cf45a26c69ae73e669d4435d371033adc28c6acaa9c0a8cc3a61e6924e699036a86194a758fb87a370
|
7
|
+
data.tar.gz: 21b119f7e65f4224f2f68422434878a03c74f35cfdb844b428365b96d4d12b538c599224670f625821eaa5acd46f9cfd880370d7ccb3b983a74960125f438e0e
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.5.1
|
data/CHANGELOG.md
CHANGED
@@ -1,121 +1,177 @@
|
|
1
1
|
## Unreleased
|
2
2
|
|
3
|
+
## 0.10.3
|
4
|
+
|
5
|
+
- Remove warning message about incorrect version
|
6
|
+
|
3
7
|
## 0.10.2
|
4
|
-
|
5
|
-
|
8
|
+
|
9
|
+
- Fixes issue when scope is injected from plan files
|
10
|
+
|
6
11
|
## 0.10.1
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
12
|
+
|
13
|
+
- Fixes puppet6 multiline issue
|
14
|
+
- adds puppet-debugger command in addition to pdb
|
15
|
+
- deprecate pdb command
|
16
|
+
|
11
17
|
## 0.10.0
|
12
|
-
|
13
|
-
|
14
|
-
|
18
|
+
|
19
|
+
- Fix for puppet 6 and trusted server facts
|
20
|
+
- Adds puppet 6 support and remove ruby 1.9.3 from test matrix
|
21
|
+
- remove usage of require_relative
|
15
22
|
|
16
23
|
## 0.9.1
|
17
|
-
|
24
|
+
|
25
|
+
- Pin facterdb to >= 0.4.0
|
18
26
|
|
19
27
|
## 0.9.0
|
28
|
+
|
20
29
|
Released October 24, 2017
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
30
|
+
|
31
|
+
- Adds FacterDB as 0.4.0 dependency for external facts support
|
32
|
+
- Fixes #59 - Unhandled puppet type with awesome_print
|
33
|
+
- Fixes loading of multiple data types
|
34
|
+
- Add Puppet 5.1, 5.2, 5.3 to test matrix
|
35
|
+
|
25
36
|
## 0.8.1
|
26
|
-
|
37
|
+
|
38
|
+
- Fixes bug with command completion and blank inputs
|
39
|
+
|
27
40
|
## 0.8.0
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
41
|
+
|
42
|
+
- Fixes bug with playback of multiline input
|
43
|
+
- Updates pluginator Gem to 1.5.0
|
44
|
+
- Adds ability to provide command completion for plugins
|
45
|
+
- Fixes error with commands plugin where id didn't detect bad names
|
46
|
+
- Fixes #3 - Move old input responder test code to individual plugin tests
|
47
|
+
- Adds puppet 5 to testing matrix
|
48
|
+
|
34
49
|
## 0.7.0
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
50
|
+
|
51
|
+
- Adds new commands command
|
52
|
+
- Adds new help command
|
53
|
+
- Adds plugin framework
|
54
|
+
- Adds hooks framework
|
55
|
+
- Moves all commands to plugins
|
56
|
+
- Adds pluginator gem
|
57
|
+
|
41
58
|
## 0.6.1
|
42
|
-
|
59
|
+
|
60
|
+
- Adds benchmark feature
|
61
|
+
|
43
62
|
## 0.6.0
|
44
|
-
|
45
|
-
|
63
|
+
|
64
|
+
- Adds ability to list puppet types
|
65
|
+
- Adds ability to list puppet datatypes
|
66
|
+
|
46
67
|
## 0.5.1
|
47
|
-
|
68
|
+
|
69
|
+
- accidental bump
|
70
|
+
|
48
71
|
## 0.5.0
|
49
|
-
|
50
|
-
|
72
|
+
|
73
|
+
- Fixes #gh-49 - puppet 4 functions don't seem to work
|
74
|
+
- Disables trying to set trusted_node_data for puppet versions that do not support it
|
75
|
+
|
51
76
|
## 0.4.4
|
52
|
-
|
53
|
-
|
77
|
+
|
78
|
+
- Refactor to upcoming puppet 5.0 (minor fix, requires a few more changes)
|
79
|
+
- Fixes issue with frozen string literal under ruby 2.3.x
|
80
|
+
|
54
81
|
## 0.4.3
|
55
|
-
|
82
|
+
|
83
|
+
- Fixes issue with older facterdb filter not working
|
84
|
+
|
56
85
|
## 0.4.2
|
57
|
-
|
86
|
+
|
87
|
+
- Fixes #44 - error when running under puppet apply
|
88
|
+
|
58
89
|
## 0.4.1
|
59
|
-
|
60
|
-
|
90
|
+
|
91
|
+
- Adds a puppet application face
|
92
|
+
- Fixes #41 - add file reference when showing code during code break
|
93
|
+
|
61
94
|
## 0.4.0
|
62
|
-
|
95
|
+
|
96
|
+
- Rename to puppet-debugger
|
97
|
+
|
63
98
|
## 0.3.4
|
64
|
-
|
99
|
+
|
100
|
+
- Fixes issue with temporary file not being unique
|
101
|
+
|
65
102
|
## 0.3.3
|
66
|
-
|
67
|
-
|
103
|
+
|
104
|
+
- Adds ability to call breakpoints from within repl
|
105
|
+
- Adds newline for each multiline input
|
106
|
+
|
68
107
|
## 0.3.2
|
69
|
-
|
108
|
+
|
109
|
+
- Fixes #31 - adds ability to show surrounding code
|
110
|
+
|
70
111
|
## 0.3.1
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
112
|
+
|
113
|
+
- Fixes #28 - puppet 4.6 support
|
114
|
+
- Fixes #27 - repl should throw puppet error message instead of stacktrace
|
115
|
+
- adds support for customizing facterdb filter
|
116
|
+
- adds support for puppet 4.6
|
117
|
+
- Fixes #26 - allow configuration of facter version and facterdb filter
|
76
118
|
|
77
119
|
## 0.3.0
|
78
|
-
|
79
|
-
|
120
|
+
|
121
|
+
- Fixes #23 - add quiet flag to suppress banner
|
122
|
+
- Fixes #11 - cannot declare and use a class or define
|
123
|
+
|
80
124
|
## 0.2.3
|
81
|
-
|
125
|
+
|
126
|
+
- fixes #21 - type display causes error
|
127
|
+
|
82
128
|
## 0.2.2
|
83
|
-
|
84
|
-
|
85
|
-
|
129
|
+
|
130
|
+
- adds better support for playing back puppet code
|
131
|
+
- this now allows playback of any manifest
|
132
|
+
- allows mixed puppet code and repl commands
|
133
|
+
|
86
134
|
## 0.2.1
|
87
|
-
|
135
|
+
|
136
|
+
- Fixes #2 - adds support for multiline input
|
88
137
|
|
89
138
|
## 0.2.0
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
139
|
+
|
140
|
+
- Fixes #19 - lock down dependency versions
|
141
|
+
- fixes #18 - add ability to filter out functions based on namespace
|
142
|
+
- fixes #15 - node classes return error
|
143
|
+
- fixes #16 - use auto complete on functions and variables
|
144
|
+
- Fixes #14 - add functionality to set node object from remote source
|
145
|
+
- adds support for server_facts
|
146
|
+
- fixes other minor bugs found along the way
|
147
|
+
- adds ability to list classification parameters from ENC
|
98
148
|
|
99
149
|
## 0.1.1
|
100
|
-
|
150
|
+
|
151
|
+
- adds ability to load files or urls
|
101
152
|
|
102
153
|
## 0.1.0
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
154
|
+
|
155
|
+
- ensure the title of classes contains quotes
|
156
|
+
- adds support to import a file or import from stdin
|
157
|
+
- added additional ap support for puppet::pops::types
|
158
|
+
- adds ability to print resources and classes
|
159
|
+
- adds the ability to pass in a scope
|
108
160
|
|
109
161
|
## 0.0.8
|
110
|
-
|
111
|
-
|
112
|
-
|
162
|
+
|
163
|
+
- adds ability to list currently loaded classes
|
164
|
+
- adds formatted output using awesome print
|
165
|
+
- adds verbose type output when creating resources
|
113
166
|
|
114
167
|
## 0.0.7
|
115
|
-
|
168
|
+
|
169
|
+
- Added ability to list scope variables
|
116
170
|
|
117
171
|
## 0.0.6
|
118
|
-
|
172
|
+
|
173
|
+
- Bug fix for puppet 3.8
|
119
174
|
|
120
175
|
## 0.0.5
|
121
|
-
|
176
|
+
|
177
|
+
- Added ability to set puppet log level
|
@@ -168,7 +168,7 @@ Corey Osman <corey@nwops.io>
|
|
168
168
|
|
169
169
|
COPYRIGHT
|
170
170
|
---------
|
171
|
-
Copyright (c)
|
171
|
+
Copyright (c) 2019 NWOps
|
172
172
|
|
173
173
|
HELP
|
174
174
|
end
|
@@ -179,9 +179,6 @@ Copyright (c) 2016 NWOps
|
|
179
179
|
@use_stdin = false
|
180
180
|
begin
|
181
181
|
require 'puppet-debugger'
|
182
|
-
unless ::PuppetDebugger::VERSION >= '0.4.0'
|
183
|
-
Puppet.err('You must install the puppet-debugger gem version >= 0.4.0')
|
184
|
-
end
|
185
182
|
rescue LoadError => e
|
186
183
|
Puppet.err('You must install the puppet-debugger: gem install puppet-debugger')
|
187
184
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet-debugger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Corey Osman
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pluginator
|
@@ -221,8 +221,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
221
221
|
- !ruby/object:Gem::Version
|
222
222
|
version: '0'
|
223
223
|
requirements: []
|
224
|
-
|
225
|
-
rubygems_version: 2.7.7
|
224
|
+
rubygems_version: 3.0.2
|
226
225
|
signing_key:
|
227
226
|
specification_version: 4
|
228
227
|
summary: A repl based debugger for the puppet language
|