release-metrics 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +55 -0
- data/CODEOWNERS +3 -0
- data/Gemfile +3 -0
- data/LICENSE +201 -0
- data/README.md +3 -0
- data/bin/add-release +54 -0
- data/release-metrics.gemspec +19 -0
- data/releases.csv +1031 -0
- metadata +80 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: c9c6ca29fce6c221f4ffc4a45d62028ac6f7f0ad5219b72e77ec9202a5eff0d0
|
4
|
+
data.tar.gz: b345e7d50d01dec0b2ae0bc6c1226ac5fa4865a6c2c03e7d154ceaf188a18cb3
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ac14d77e38b3740dcf756b7203f17eb6da1ab05464dfea843ede5a5f4ee02e868f83dc61ada1b04a8f261da4c7b0bba928e1998d1328d81fa54830b04985e6b9
|
7
|
+
data.tar.gz: 3a76fccf8c092e71fbe520bada127564d5cab6b304167b87d4ecbad1a2e636965bd2451ffe3999f79a99d64c4351caf60108d272cae86fac0a69beb5a2cf15ea
|
data/.gitignore
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
# This is the GitHub boilerplate Ruby .gitignore
|
2
|
+
# feel free to adapt or replace as needed.
|
3
|
+
|
4
|
+
*.gem
|
5
|
+
*.rbc
|
6
|
+
/.config
|
7
|
+
/coverage/
|
8
|
+
/InstalledFiles
|
9
|
+
/pkg/
|
10
|
+
/spec/reports/
|
11
|
+
/spec/examples.txt
|
12
|
+
/test/tmp/
|
13
|
+
/test/version_tmp/
|
14
|
+
/tmp/
|
15
|
+
|
16
|
+
# Used by dotenv library to load environment variables.
|
17
|
+
# .env
|
18
|
+
|
19
|
+
## Specific to RubyMotion:
|
20
|
+
.dat*
|
21
|
+
.repl_history
|
22
|
+
build/
|
23
|
+
*.bridgesupport
|
24
|
+
build-iPhoneOS/
|
25
|
+
build-iPhoneSimulator/
|
26
|
+
|
27
|
+
## Specific to RubyMotion (use of CocoaPods):
|
28
|
+
#
|
29
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
30
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
31
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
32
|
+
#
|
33
|
+
# vendor/Pods/
|
34
|
+
|
35
|
+
## Documentation cache and generated files:
|
36
|
+
/.yardoc/
|
37
|
+
/_yardoc/
|
38
|
+
/doc/
|
39
|
+
/rdoc/
|
40
|
+
|
41
|
+
## Environment normalization:
|
42
|
+
/.bundle/
|
43
|
+
/vendor/bundle
|
44
|
+
/lib/bundler/man/
|
45
|
+
|
46
|
+
# for a library or gem, you might want to ignore these files since the code is
|
47
|
+
# intended to run in multiple environments; otherwise, check them in:
|
48
|
+
Gemfile.lock
|
49
|
+
# .ruby-version
|
50
|
+
# .ruby-gemset
|
51
|
+
|
52
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
53
|
+
.rvmrc
|
54
|
+
|
55
|
+
*.bak
|
data/CODEOWNERS
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
data/README.md
ADDED
data/bin/add-release
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'docopt'
|
4
|
+
require 'csv'
|
5
|
+
|
6
|
+
DATA_FILE = 'releases.csv'
|
7
|
+
|
8
|
+
def add_release(date, project, version, data_file)
|
9
|
+
# copy data_file as backup
|
10
|
+
FileUtils.cp(data_file, "#{data_file}.bak")
|
11
|
+
data = CSV.read(data_file, {:headers => true})
|
12
|
+
# Date Project Version Final? Notes
|
13
|
+
new_values = [date, project, version, 'y', nil]
|
14
|
+
CSV.open(data_file, 'w') do |csv|
|
15
|
+
csv << data.headers
|
16
|
+
csv << new_values
|
17
|
+
data.each do |row|
|
18
|
+
csv << row
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def commit_release_file(file, message)
|
24
|
+
`git add #{file}`
|
25
|
+
`git commit -m "#{message}"`
|
26
|
+
`git push origin HEAD`
|
27
|
+
end
|
28
|
+
|
29
|
+
# Main
|
30
|
+
|
31
|
+
# Parse options
|
32
|
+
DOC =<<DOCOPT
|
33
|
+
Add a new release to the spreadsheet.
|
34
|
+
|
35
|
+
Usage:
|
36
|
+
#{__FILE__} --date DATE --project PROJECT --version VERSION
|
37
|
+
DOCOPT
|
38
|
+
|
39
|
+
begin
|
40
|
+
options = Docopt::docopt(DOC)
|
41
|
+
rescue Docopt::Exit => e
|
42
|
+
puts "ERROR: Option parsing failed."
|
43
|
+
puts e.message
|
44
|
+
exit 1
|
45
|
+
end
|
46
|
+
|
47
|
+
date = options['DATE']
|
48
|
+
project = options['PROJECT']
|
49
|
+
version = options['VERSION']
|
50
|
+
|
51
|
+
# Do the thing
|
52
|
+
puts "INFO: Adding #{project} #{version} to release-metrics . . ."
|
53
|
+
add_release(date, project, version, DATA_FILE)
|
54
|
+
commit_release_file(DATA_FILE, "(maint) Add #{project} #{version} release")
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'time'
|
2
|
+
|
3
|
+
Gem::Specification.new do |gem|
|
4
|
+
gem.name = 'release-metrics'
|
5
|
+
gem.version = '1.0.0'
|
6
|
+
gem.date = Date.today.to_s
|
7
|
+
gem.summary = "Puppet, Inc. Release Metrics"
|
8
|
+
gem.authors = ["Puppet, Inc."]
|
9
|
+
gem.email = 'release@puppet.com'
|
10
|
+
gem.homepage = 'https://github.com/puppetlabs/release-metrics'
|
11
|
+
gem.license = 'Apache-2.0'
|
12
|
+
|
13
|
+
gem.files = %x(git ls-files -z).split("\0")
|
14
|
+
gem.bindir = 'bin'
|
15
|
+
gem.executables = gem.files.grep(%r{^#{gem.bindir}}) { |f| File.basename(f) }
|
16
|
+
|
17
|
+
gem.add_runtime_dependency 'docopt'
|
18
|
+
gem.add_runtime_dependency 'csv'
|
19
|
+
end
|
data/releases.csv
ADDED
@@ -0,0 +1,1031 @@
|
|
1
|
+
Date,Project,Version,Final?,Notes
|
2
|
+
10/04/2019,puppet-bolt,1.32.0,y,
|
3
|
+
10/1/2019,puppetdb,6.7.0,y,
|
4
|
+
10/1/2019,puppetserver,6.7.0,y,
|
5
|
+
10/1/2019,puppet-agent,6.10.0,y,
|
6
|
+
10/1/2019,puppet,6.10.0,y,
|
7
|
+
9/27/2019,puppet-bolt,1.31.1,y,
|
8
|
+
9/26/2019,puppet-bolt,1.31.0,y,
|
9
|
+
9/19/2019,puppet-bolt,1.30.1,y,
|
10
|
+
9/17/2019,puppetdb,6.6.0,y,
|
11
|
+
9/17/2019,puppetserver,6.6.0,y,
|
12
|
+
9/17/2019,puppet,6.9.0,y,
|
13
|
+
9/17/2019,facter,3.14.4,y,
|
14
|
+
9/17/2019,puppet-agent,6.9.0,y,
|
15
|
+
9/5/2019,puppet-bolt,1.30.0,y,
|
16
|
+
8/30/2019,razor-client,1.9.6,y,
|
17
|
+
8/29/2019,razor-server,1.9.6,y,
|
18
|
+
8/29/2019,razor-client,1.9.5,y,
|
19
|
+
8/29/2019,pdk,1.13.0.0,y,
|
20
|
+
8/28/2019,puppet-agent,6.8.1,y,
|
21
|
+
8/28/2019,puppet,6.8.1,y,
|
22
|
+
8/22/2019,puppet-bolt,1.29.1,y,
|
23
|
+
8/21/2019,puppet,6.8.0,y,
|
24
|
+
8/21/2019,facter,3.14.3,y,
|
25
|
+
8/21/2019,puppetdb,6.5.0,y,
|
26
|
+
8/21/2019,puppet-agent,6.8.0,y,
|
27
|
+
8/19/2019,razor-client,1.9.3,y,
|
28
|
+
8/15/2019,razor-client,1.9.2,y,YANKED
|
29
|
+
8/15/2019,razor-server,1.9.5.1,y,
|
30
|
+
8/15/2019,puppet-bolt,1.29.0,y,
|
31
|
+
8/8/2019,puppet-bolt,1.28.0,y,
|
32
|
+
8/1/2019,puppet-bolt,1.27.1,y,
|
33
|
+
7/31/2019,pdk,1.12.0.0,y,
|
34
|
+
7/30/2019,Puppet Enterprise,2019.1.1,y,
|
35
|
+
7/30/2019,Puppet Enterprise,2019.0.4,y,
|
36
|
+
7/30/2019,Puppet Enterprise,2018.1.9,y,
|
37
|
+
7/26/2019,puppet-agent,6.7.2,y,
|
38
|
+
7/24/2019,puppet-bolt,1.27.0,y,
|
39
|
+
7/23/2019,puppet,6.7.0,y,
|
40
|
+
7/23/2019,facter,3.14.2,y,
|
41
|
+
7/23/2019,puppetserver,6.5.0,y,
|
42
|
+
7/23/2019,puppetdb,6.4.0,y,
|
43
|
+
7/23/2019,puppet-agent,6.7.0,y,
|
44
|
+
7/16/2019,puppetserver,6.3.1,y,
|
45
|
+
7/16/2019,puppet,6.4.3,y,
|
46
|
+
7/16/2019,facter,3.13.3,y,
|
47
|
+
7/16/2019,puppet-agent,6.4.3,y,
|
48
|
+
7/16/2019,puppetserver,6.0.5,y,
|
49
|
+
7/16/2019,puppetdb,6.0.4,y,
|
50
|
+
7/16/2019,puppet,6.0.10,y,
|
51
|
+
7/16/2019,facter,3.12.5,y,
|
52
|
+
7/16/2019,puppet-agent,6.0.10,y,
|
53
|
+
7/16/2019,puppetdb,5.2.9,y,
|
54
|
+
7/16/2019,puppetserver,5.3.9,y,
|
55
|
+
7/16/2019,facter,3.11.9,y,
|
56
|
+
7/16/2019,puppet,5.5.16,y,
|
57
|
+
7/16/2019,puppet-agent,5.5.16,y,
|
58
|
+
7/9/2019,puppet-bolt,1.26.0,y,
|
59
|
+
7/2/2019,pdk,1.11.1.0,y,
|
60
|
+
7/1/2019,facter,3.14.1,y,
|
61
|
+
7/1/2019,puppet,6.6.0,y,
|
62
|
+
7/1/2019,puppet-agent,6.6.0,y,
|
63
|
+
6/27/2019,puppet-bolt,1.25.0,y,
|
64
|
+
6/27/2019,pdk,1.11.0.0,y,
|
65
|
+
6/26/2019,puppetdb,6.3.4,y,
|
66
|
+
6/26/2019,puppetdb,6.0.4,y,
|
67
|
+
6/26/2019,puppetdb,5.2.9,y,
|
68
|
+
6/20/2019,puppet-bolt,1.24.0,y,
|
69
|
+
6/19/2019,puppet,6.5.0,y,
|
70
|
+
6/19/2019,facter,3.14.0,y,
|
71
|
+
6/19/2019,puppetdb,6.3.3,y,
|
72
|
+
6/19/2019,puppetserver,6.4.0,y,
|
73
|
+
6/19/2019,puppet-agent,6.5.0,y,
|
74
|
+
6/14/2019,puppet-bolt,1.23.0,y,
|
75
|
+
6/7/2019,puppet-bolt,1.22.0,y,
|
76
|
+
5/30/2019,puppet-bolt,1.21.0,y,
|
77
|
+
5/17/2019,puppet-bolt,1.20.0,y,
|
78
|
+
5/7/2019,Puppet Enterprise,2019.1.0,y,
|
79
|
+
5/6/2019,puppet-bolt,1.19.0,y,
|
80
|
+
4/30/2019,Puppet Enterprise,2018.1.8,y,
|
81
|
+
4/30/2019,Puppet Enterprise,2019.0.3,y,
|
82
|
+
4/30/2019,puppetdb,6.3.2,y,
|
83
|
+
4/30/2019,puppet-agent,6.4.2,y,
|
84
|
+
4/30/2019,puppet,6.4.2,y,
|
85
|
+
4/30/2019,puppet-agent,6.0.9,y,
|
86
|
+
4/30/2019,puppet,6.0.9,y,
|
87
|
+
4/30/2019,puppet-agent,5.5.14,y,
|
88
|
+
4/30/2019,puppet,5.5.14,y,
|
89
|
+
4/25/2019,puppet-bolt,1.18.0,y,
|
90
|
+
4/19/2019,puppet-bolt,1.17.0,y,
|
91
|
+
4/16/2019,puppetdb,6.3.1,y,
|
92
|
+
4/16/2019,facter,3.13.2,y,
|
93
|
+
4/16/2019,puppet,6.4.1,y,
|
94
|
+
4/16/2019,puppet-agent,6.4.1,y,
|
95
|
+
4/16/2019,puppet,6.0.8,y,
|
96
|
+
4/16/2019,puppet-agent,6.0.8,y,
|
97
|
+
4/16/2019,puppet,5.5.13,y,
|
98
|
+
4/16/2019,puppet-agent,5.5.13,y,
|
99
|
+
4/11/2019,puppet-bolt,1.16.0,y,
|
100
|
+
4/2/2019,pdk,1.10.0.0,y,
|
101
|
+
3/29/2019,puppet-bolt,1.15.0,y,
|
102
|
+
3/26/2019,puppet,6.4.0,y,
|
103
|
+
3/26/2019,facter,3.13.1,y,
|
104
|
+
3/26/2019,puppetserver,6.3.0,y,
|
105
|
+
3/26/2019,puppetdb,6.3.0,y,
|
106
|
+
3/26/2019,puppet-agent,6.4.0,y,
|
107
|
+
3/26/2019,puppet,6.0.7,y,
|
108
|
+
3/26/2019,facter,3.12.4,y,
|
109
|
+
3/26/2019,puppetserver,6.0.4,y,
|
110
|
+
3/26/2019,puppetdb,6.0.3,y,
|
111
|
+
3/26/2019,puppet-agent,6.0.7,y,
|
112
|
+
3/26/2019,puppet,5.5.12,y,
|
113
|
+
3/26/2019,facter,3.11.8,y,
|
114
|
+
3/26/2019,puppetserver,5.3.8,y,
|
115
|
+
3/26/2019,puppetdb,5.2.8,y,
|
116
|
+
3/26/2019,puppet-agent,5.5.12,y,
|
117
|
+
03/15/2019,puppet-bolt,1.14.0,y,
|
118
|
+
03/07/2019,puppet-bolt,1.13.1,y,
|
119
|
+
2/27/2019,puppet-bolt,1.13.0,y,
|
120
|
+
2/21/2019,puppet-bolt,1.12.0,y,
|
121
|
+
2/20/2019,puppetserver,6.2.1,y,
|
122
|
+
2/20/2019,puppet-agent,6.3.0,y,
|
123
|
+
2/20/2019,facter,3.13.0,y,
|
124
|
+
2/20/2019,puppet,6.3.0,y,
|
125
|
+
02/08/2019,puppet-bolt,1.11.0,y,
|
126
|
+
1/29/2019,pdk,1.9.0.0,y,
|
127
|
+
1/29/2019,Puppet Enterprise,2019.0.2,y,
|
128
|
+
1/29/2019,Puppet Enterprise,2018.1.7,y,
|
129
|
+
1/24/2019,puppet,6.2.0,y,
|
130
|
+
1/24/2019,puppetserver,6.2.0,y,
|
131
|
+
1/24/2019,puppetdb,6.2.0,y,
|
132
|
+
1/24/2019,puppet-agent,6.2.0,y,
|
133
|
+
1/16/2019,puppet-bolt,1.10.0,y,
|
134
|
+
1/15/2019,puppet,6.0.5,y,
|
135
|
+
1/15/2019,facter,3.12.3,y,
|
136
|
+
1/15/2019,puppetserver,6.0.3,y,
|
137
|
+
1/15/2019,puppetdb,6.0.2,y,
|
138
|
+
1/15/2019,puppet-agent,6.0.5,y,
|
139
|
+
1/15/2019,puppet,5.5.10,y,
|
140
|
+
1/15/2019,hiera,3.4.6,y,
|
141
|
+
1/15/2019,facter,3.11.7,y,
|
142
|
+
1/15/2019,puppetserver,5.3.7,y,
|
143
|
+
1/15/2019,puppetdb,5.2.7,y,
|
144
|
+
1/15/2019,puppet-agent,5.5.10,y,
|
145
|
+
1/10/2019,puppet-bolt,1.9.0,y,
|
146
|
+
1/4/2019,puppet-bolt,1.8.1,y,
|
147
|
+
1/3/2019,puppet-bolt,1.8.0,y,
|
148
|
+
12/19/2018,puppet-bolt,1.7.0,y,
|
149
|
+
12/18/2018,puppetdb,6.1.0,y,
|
150
|
+
12/18/2018,puppetserver,6.1.0,y,
|
151
|
+
12/18/2018,hiera,3.5.0,y,
|
152
|
+
12/18/2018,facter,3.12.2,y,
|
153
|
+
12/18/2018,puppet-agent,6.1.0,y,
|
154
|
+
12/18/2018,puppet,6.1.0,y,
|
155
|
+
12/13/2018,puppet-bolt,1.6.0,y,
|
156
|
+
12/6/2018,puppet-bolt,1.5.0,y,
|
157
|
+
11/30/2018,puppet-bolt,1.4.0,y,
|
158
|
+
11/28/2018,pdk,1.8.0.0,y,
|
159
|
+
11/14/2018,puppet-bolt,1.3.0,y,
|
160
|
+
11/06/2018,Puppet Enterprise,2019.0.1,y,
|
161
|
+
11/06/2018,Puppet Enterprise,2018.1.5,y,
|
162
|
+
11/01/2018,facter,3.11.6,y,
|
163
|
+
11/01/2018,puppet-agent,6.0.4,y,
|
164
|
+
11/01/2018,puppet,6.0.4,y,
|
165
|
+
11/01/2018,puppet-agent,5.5.8,y,
|
166
|
+
11/01/2018,puppet,5.5.8,y,
|
167
|
+
10/30/2018,puppet-bolt,1.2.0,y,
|
168
|
+
10/25/2018,puppetserver,6.0.2,y,
|
169
|
+
10/25/2018,puppetdb,6.0.1,y,
|
170
|
+
10/25/2018,puppet-agent,6.0.3,y,
|
171
|
+
10/25/2018,puppet,6.0.3,y,
|
172
|
+
10/25/2018,facter,3.12.1,y,
|
173
|
+
10/23/2018,puppetdb,5.2.6,y,
|
174
|
+
10/23/2018,puppetserver,5.3.6,y,
|
175
|
+
10/23/2018,puppet-agent,5.5.7,y,
|
176
|
+
10/23/2018,marionette-collective,2.12.4,y,
|
177
|
+
10/23/2018,puppet,5.5.7,y,
|
178
|
+
10/23/2018,facter,3.11.5,y,
|
179
|
+
10/16/2018,puppet-bolt,1.1.0,y,
|
180
|
+
10/09/2018,Puppet Enterprise,2019.0.0,y,
|
181
|
+
10/08/2018,puppet-bolt,1.0.0,y,
|
182
|
+
10/08/2018,pdk,1.7.1.0,y,
|
183
|
+
10/04/2018,puppet-bolt,0.25.0,y,
|
184
|
+
10/04/2018,puppet-agent,6.0.2,y,
|
185
|
+
10/04/2018,puppet,6.0.2,y,
|
186
|
+
10/02/2018,puppet,6.0.1,y,
|
187
|
+
10/02/2018,puppetserver,6.0.1,y,
|
188
|
+
10/02/2018,puppet-agent,6.0.1,y,
|
189
|
+
9/27/2018,puppet-bolt,0.24.0,y,
|
190
|
+
09/20/2018,puppet-bolt,0.23.0,y,
|
191
|
+
09/18/2018,puppetdb,6.0.0,y,
|
192
|
+
09/18/2018,puppetserver,6.0.0,y,
|
193
|
+
09/18/2018,puppet-agent,6.0.0,y,
|
194
|
+
09/18/2018,puppet,6.0.0,y,
|
195
|
+
09/18/2018,hiera,3.4.5,y,
|
196
|
+
09/18/2018,facter,3.12.0,y,
|
197
|
+
09/05/2018,puppet-bolt,0.22.0,y,
|
198
|
+
08/23/2018,puppet-bolt,0.21.8,y,
|
199
|
+
08/23/2018,Puppet Enterprise,2016.4.15,y,
|
200
|
+
08/23/2018,Puppet Enterprise,2017.3.10,y,
|
201
|
+
08/23/2018,Puppet Enterprise,2018.1.4,y,
|
202
|
+
08/22/2018,puppetserver,5.3.5,y,
|
203
|
+
08/22/2018,puppet-agent,5.5.6,y,
|
204
|
+
08/22/2018,puppet,5.5.6,y,
|
205
|
+
08/22/2018,marionette-collective,2.12.3,y,
|
206
|
+
08/22/2018,hiera,3.4.4,y,
|
207
|
+
08/22/2018,facter,3.11.4,y,
|
208
|
+
08/16/2018,puppet-bolt,0.21.7,y,
|
209
|
+
08/15/2018,pdk,1.7.0.0,y,
|
210
|
+
08/11/2018,puppet-bolt,0.21.6,y,
|
211
|
+
08/02/2018,puppet-bolt,0.21.5,y,
|
212
|
+
07/31/2018,Puppet Enterprise,2018.1.3,y,
|
213
|
+
07/31/2018,Puppet Enterprise,2017.3.9,y,
|
214
|
+
07/31/2018,Puppet Enterprise,2016.4.14,y,
|
215
|
+
07/25/2018,puppet-bolt,0.21.4,y,
|
216
|
+
07/25/2018,pdk,1.6.1.0,y,
|
217
|
+
07/17/2018,puppet-bolt,0.21.3,y,
|
218
|
+
07/17/2018,puppetdb,5.2.4,y,
|
219
|
+
07/17/2018,puppetserver,5.3.4,y,
|
220
|
+
07/17/2018,puppet-agent,5.5.4,y,
|
221
|
+
07/17/2018,puppet,5.5.3,y,
|
222
|
+
07/17/2018,facter,3.11.3,y,
|
223
|
+
7/9/2018,puppet-bolt,0.21.2,y,
|
224
|
+
06/27/2018,puppet-bolt,0.21.1,y,
|
225
|
+
06/25/2018,pdk,1.6.0.0,y,
|
226
|
+
06/19/2018,puppet-bolt,0.21.0,y,
|
227
|
+
06/14/2018,puppet-bolt,0.20.7,y,
|
228
|
+
06/13/2018,Puppet Enterprise,2018.1.2,y,
|
229
|
+
06/13/2018,Puppet Enterprise,2017.3.8,y,
|
230
|
+
06/13/2018,Puppet Enterprise,2016.4.13,y,
|
231
|
+
06/13/2018,puppet-agent,5.5.3,y,
|
232
|
+
06/13/2018,puppet-agent,5.3.8,y,
|
233
|
+
06/13/2018,puppet-agent,1.10.14,y,
|
234
|
+
06/07/2018,puppet-bolt,0.20.6,y,
|
235
|
+
06/07/2018,razor-server,1.9.2.0,y,
|
236
|
+
06/07/2018,razor-client,1.9.1,y,
|
237
|
+
06/07/2018,puppetserver,5.1.6,y,PE Only
|
238
|
+
06/07/2018,puppetserver,5.3.3,y,
|
239
|
+
06/07/2018,facter,3.11.2,y,
|
240
|
+
06/07/2018,marionette-collective,2.12.2,y,
|
241
|
+
06/07/2018,puppet,4.10.12,y,
|
242
|
+
06/07/2018,puppet,5.3.7,y,
|
243
|
+
06/07/2018,puppet,5.5.2,y,
|
244
|
+
06/07/2018,puppet-agent,5.5.2,y,
|
245
|
+
06/07/2018,puppet-agent,5.3.7,y,
|
246
|
+
06/07/2018,puppet-agent,1.10.13,y,
|
247
|
+
06/07/2018,Puppet Enterprise,2018.1.1,y,
|
248
|
+
06/07/2018,Puppet Enterprise,2017.3.7,y,
|
249
|
+
06/07/2018,Puppet Enterprise,2016.4.12,y,
|
250
|
+
5/31/2018,puppet-bolt,0.20.5,y,
|
251
|
+
05/23/2018,puppet-bolt,0.20.3,y,
|
252
|
+
05/18/2018,puppet-bolt,0.20.2,y,
|
253
|
+
05/10/2018,puppet-bolt,0.20.0,y,
|
254
|
+
05/01/2018,pdk,1.5.0,y,
|
255
|
+
05/01/2018,Puppet Enterprise,2018.1.0,y,
|
256
|
+
05/01/2018,Puppet Enterprise,2017.3.6,y,
|
257
|
+
05/01/2018,Puppet Enterprise,2016.4.11,y,
|
258
|
+
4/30/2018,puppet-bolt,0.19.1,y,
|
259
|
+
04/24/2018,razor-server,1.8.1.0,y,
|
260
|
+
04/24/2018,razor-client,1.8.1,y,
|
261
|
+
04/18/2018,puppetserver,5.3.1,y,
|
262
|
+
04/18/2018,puppetdb,5.2.2,y,
|
263
|
+
04/18/2018,puppet-agent,5.5.1,y,
|
264
|
+
04/18/2018,puppet,5.5.1,y,
|
265
|
+
04/18/2018,marionette-collective,2.12.1,y,
|
266
|
+
04/18/2018,facter,3.11.1,y,
|
267
|
+
04/17/2018,puppetdb,5.1.5,y,
|
268
|
+
04/17/2018,puppet-agent,5.3.6,y,
|
269
|
+
04/17/2018,puppet,5.3.6,y,
|
270
|
+
04/17/2018,marionette-collective,2.11.5,y,
|
271
|
+
04/17/2018,hiera,3.4.3,y,
|
272
|
+
04/17/2018,facter,3.9.6,y,
|
273
|
+
04/17/2018,puppet-agent,1.10.12,y,
|
274
|
+
04/17/2018,puppet,4.10.11,y,
|
275
|
+
04/17/2018,hiera,3.3.3,y,
|
276
|
+
04/17/2018,facter,3.6.10,y,
|
277
|
+
04/12/2018,puppet-bolt,0.19.0,y,
|
278
|
+
4/4/2018,puppet-bolt,0.18.2,y,
|
279
|
+
3/29/2018,puppet-bolt,0.18.1,y,
|
280
|
+
3/22/2018,puppet-bolt,0.18.0,y,
|
281
|
+
3/21/2018,pdk,1.4.1.2,y,
|
282
|
+
3/20/2018,puppet-agent,5.5.0,y,
|
283
|
+
3/20/2018,marionette-collective,2.12.0,y,
|
284
|
+
3/20/2018,facter,3.11.0,y,
|
285
|
+
3/20/2018,puppet,5.5.0,y,
|
286
|
+
3/20/2018,puppetserver,5.3.0,y,
|
287
|
+
3/20/2018,puppetdb,5.2.1,y,
|
288
|
+
03/14/2018,puppet-bolt,0.17.2,y,
|
289
|
+
03/07/2018,puppet-bolt,0.17.1,y,
|
290
|
+
02/27/2018,pdk,1.4.1.1,y,
|
291
|
+
02/26/2018,pdk,1.4.1.0,y,
|
292
|
+
02/21/2018,pdk,1.4.0.0,y,
|
293
|
+
02/21/2018,Puppet Enterprise,2017.3.5,y,
|
294
|
+
02/13/2018,puppetdb,5.2.0,y,
|
295
|
+
02/13/2018,puppetserver,5.2.0,y,
|
296
|
+
02/13/2018,puppet-agent,5.3.5,y,
|
297
|
+
02/13/2018,facter,3.9.5,y,
|
298
|
+
02/13/2018,puppet,5.3.5,y,
|
299
|
+
02/13/2018,puppet,5.4.0,y,
|
300
|
+
02/13/2018,facter,3.10.0,y,
|
301
|
+
02/13/2018,puppet-agent,5.4.0,y,
|
302
|
+
02/06/2018,razor-server,1.7.1,y,
|
303
|
+
02/06/2018,puppetserver,2.8.1,y,
|
304
|
+
02/05/2018,Puppet Enterprise,2017.3.4,y,
|
305
|
+
02/05/2018,Puppet Enterprise,2016.4.10,y,
|
306
|
+
02/05/2018,puppetdb,5.1.4,y,
|
307
|
+
02/05/2018,puppetserver,5.1.5,y,
|
308
|
+
02/05/2018,puppet-agent,5.3.4,y,
|
309
|
+
02/05/2018,puppet-agent,1.10.10,y,
|
310
|
+
02/05/2018,facter,3.9.4,y,
|
311
|
+
02/05/2018,facter,3.6.9,y,
|
312
|
+
02/05/2018,puppet,5.3.4,y,
|
313
|
+
02/05/2018,puppet,4.10.10,y,
|
314
|
+
01/17/2018,pdk,1.3.2.0,y,
|
315
|
+
01/17/2018,razor-client,1.7.0,y,
|
316
|
+
01/17/2018,razor-server,1.7.0,y,
|
317
|
+
12/20/2017,pdk,1.3.1.0,y,
|
318
|
+
12/18/2017,pdk,1.3.0.0,y,
|
319
|
+
11/07/2017,Puppet Enterprise,2017.3.2,y,
|
320
|
+
11/07/2017,Puppet Enterprise,2017.2.5,y,
|
321
|
+
11/07/2017,Puppet Enterprise,2016.4.9,y,
|
322
|
+
11/06/2017,puppet-agent,1.10.9,y,
|
323
|
+
11/06/2017,puppet,4.10.9,y,
|
324
|
+
11/06/2017,marionette-collective,2.10.6,y,
|
325
|
+
11/06/2017,facter,3.6.8,y,
|
326
|
+
11/06/2017,puppet-agent,5.3.3,y,
|
327
|
+
11/06/2017,puppet,5.3.3,y,
|
328
|
+
11/06/2017,marionette-collective,2.11.4,y,
|
329
|
+
11/06/2017,facter,3.9.3,y,
|
330
|
+
11/06/2017,puppetdb,5.1.3,y,
|
331
|
+
11/06/2017,puppetserver,5.1.4,y,
|
332
|
+
10/26/2017,pdk,1.2.1.0,y,
|
333
|
+
10/17/2017,Puppet Enterprise,2017.3.1,y,
|
334
|
+
10/11/2017,Puppet Enterprise,2017.3.0,y,
|
335
|
+
10/6/2017,pdk,1.2.0.0,y,
|
336
|
+
10/5/2017,puppet-agent,5.3.2,y,
|
337
|
+
10/5/2017,puppet,5.3.2,y,
|
338
|
+
10/2/2017,puppetdb,5.1.1,y,
|
339
|
+
10/2/2017,puppetserver,5.1.3,y,
|
340
|
+
10/2/2017,puppet-agent,5.3.1,y,
|
341
|
+
10/2/2017,puppet,5.3.1,y,
|
342
|
+
10/2/2017,marionette-collective,2.11.3,y,
|
343
|
+
10/2/2017,hiera,3.4.2,y,
|
344
|
+
10/2/2017,facter,3.9.2,y,
|
345
|
+
9/21/2017,Puppet Enterprise,2017.2.4,y,
|
346
|
+
9/21/2017,Puppet Enterprise,2016.4.8,y,
|
347
|
+
9/18/2017,puppet-client-tools,1.2.2,y,
|
348
|
+
9/14/2017,puppet-agent,1.10.8,y,
|
349
|
+
9/14/2017,puppet,4.10.8,y,
|
350
|
+
9/13/2017,pdk,1.1.0.0,y,
|
351
|
+
9/13/2017,puppetdb,5.1.0,y,
|
352
|
+
9/13/2017,puppet-agent,5.2.0,y,
|
353
|
+
9/13/2017,hiera,3.4.1,y,
|
354
|
+
9/13/2017,facter,3.9.0,y,
|
355
|
+
9/13/2017,puppet,5.2.0,y,
|
356
|
+
9/13/2017,puppetserver,5.1.0,y,
|
357
|
+
9/6/2017,puppet-agent,1.10.7,y,
|
358
|
+
9/6/2017,facter,3.6.7,y,
|
359
|
+
9/6/2017,puppet,4.10.7,y,
|
360
|
+
8/29/2017,puppetserver,2.8.0,y,
|
361
|
+
8/17/2017,pdk,1.0.1.0,y,
|
362
|
+
8/17/2017,pdk,1.0.0.2,y,
|
363
|
+
8/17/2017,puppet-agent,5.1.0,y,
|
364
|
+
8/17/2017,puppet,5.1.0,y,
|
365
|
+
8/17/2017,marionette-collective,2.11.2,y,
|
366
|
+
8/17/2017,facter,3.8.0,y,
|
367
|
+
8/15/2017,pdk,1.0.0.1,y,
|
368
|
+
8/9/2017,puppet,4.10.6,y,
|
369
|
+
8/9/2017,puppet-agent,1.10.6,y,
|
370
|
+
8/8/2017,Puppet Enterprise,2017.2.3,y,
|
371
|
+
8/8/2017,Puppet Enterprise,2016.4.7,y,
|
372
|
+
7/26/2017,puppet-agent,1.10.5,y,
|
373
|
+
7/26/2017,puppet,4.10.5,y,
|
374
|
+
7/26/2017,facter,3.6.6,y,
|
375
|
+
7/19/2017,puppet,5.0.1,y,
|
376
|
+
7/19/2017,marionette-collective,2.11.1,y,
|
377
|
+
7/19/2017,facter,3.7.1,y,
|
378
|
+
7/19/2017,puppet-agent,5.0.1,y,
|
379
|
+
6/27/2017,marionette-collective,2.11.0,y,
|
380
|
+
6/27/2017,hiera,3.4.0,y,
|
381
|
+
6/27/2017,facter,3.7.0,y,
|
382
|
+
6/27/2017,puppet,5.0.0,y,
|
383
|
+
6/27/2017,puppet-agent,5.0.0,y,
|
384
|
+
6/27/2017,puppetserver,5.0.0,y,
|
385
|
+
6/27/2017,puppetdb,5.0.1,y,
|
386
|
+
6/22/2017,Puppet Enterprise,2017.2.2,y,
|
387
|
+
6/22/2017,Puppet Enterprise,2016.4.6,y,
|
388
|
+
6/19/2017,puppet-agent,1.10.4,y,
|
389
|
+
6/19/2017,puppet,4.10.4,y,
|
390
|
+
6/15/2017,puppet-agent,1.10.3,y,
|
391
|
+
6/15/2017,puppet,4.10.3,y,
|
392
|
+
6/13/2017,puppet-agent,1.10.2,y,
|
393
|
+
6/13/2017,puppet,4.10.2,y,
|
394
|
+
6/13/2017,marionette-collective,2.10.5,y,
|
395
|
+
6/13/2017,hiera,3.3.2,y,
|
396
|
+
6/13/2017,facter,3.6.5,y,
|
397
|
+
5/11/2017,Puppet Enterprise,2017.2.1,y,
|
398
|
+
5/11/2017,Puppet Enterprise,2016.4.5,y,
|
399
|
+
5/11/2017,puppet-agent,1.10.1,y,
|
400
|
+
5/11/2017,puppet,4.10.1,y,
|
401
|
+
5/11/2017,marionette-collective,2.10.4,y,
|
402
|
+
5/11/2017,facter,3.6.4,y,
|
403
|
+
4/20/2017,puppet-client-tools,1.2.1,y,
|
404
|
+
4/5/2017,puppet-agent,1.10.0,y,
|
405
|
+
4/5/2017,facter,3.6.3,y,
|
406
|
+
4/5/2017,marionette-collective,2.10.3,y,
|
407
|
+
4/5/2017,puppet,4.10.0,y,
|
408
|
+
4/5/2017,puppetdb,4.4.0,y,
|
409
|
+
3/27/2017,puppet-client-tools,1.1.1,y,
|
410
|
+
3/20/2017,Puppet Enterprise,2017.1.1,y,
|
411
|
+
3/14/2017,Puppet Enterprise,2017.1.0,y,
|
412
|
+
3/9/2017,puppetdb,4.3.2,y,
|
413
|
+
3/9/2017,razor-client,1.6.1,y,
|
414
|
+
3/9/2017,razor-server,1.6.1,y,
|
415
|
+
3/9/2017,puppet-agent,1.9.3,y,
|
416
|
+
3/9/2017,marionette-collective,2.10.2,y,
|
417
|
+
3/9/2017,hiera,3.3.1,y,
|
418
|
+
3/9/2017,puppet,4.9.4,y,
|
419
|
+
3/9/2017,facter,3.6.2,y,
|
420
|
+
2/27/2017,puppet-agent,1.9.2,y,
|
421
|
+
2/27/2017,puppet,4.9.3,y,
|
422
|
+
2/10/2017,puppet-agent,1.9.1,y,
|
423
|
+
2/10/2017,marionette-collective,2.10.1,y,
|
424
|
+
2/10/2017,puppet,4.9.2,y,
|
425
|
+
2/10/2017,facter,3.6.1,y,
|
426
|
+
2/7/2017,Puppet Enterprise,2016.5.2,y,
|
427
|
+
2/7/2017,Puppet Enterprise,2016.4.3,y,
|
428
|
+
2/3/2017,puppet,4.9.1,y,
|
429
|
+
2/1/2017,puppet-agent,1.9.0,y,
|
430
|
+
1/31/2017,marionette-collective,2.10.0,y,
|
431
|
+
1/31/2017,hiera,3.3.0,y,
|
432
|
+
1/31/2017,facter,3.6.0,y,
|
433
|
+
1/31/2017,puppet,4.9.0,y,
|
434
|
+
1/19/2017,puppet-agent,1.8.3,y,
|
435
|
+
1/19/2017,facter,3.5.1,y,
|
436
|
+
1/19/2017,puppet,4.8.2,y,
|
437
|
+
1/17/2017,puppet-agent,1.7.2,y,
|
438
|
+
1/17/2017,facter,3.4.2,y,
|
439
|
+
1/17/2017,puppet,4.7.1,y,
|
440
|
+
12/13/2016,Puppet Enterprise,2016.5.1,y,
|
441
|
+
12/6/2016,puppetserver,2.7.2,y,
|
442
|
+
12/5/2016,puppet-agent,1.8.2,y,
|
443
|
+
12/1/2016,puppetdb,4.2.5,y,
|
444
|
+
11/22/2016,puppet,4.8.1,y,
|
445
|
+
11/22/2016,puppet-agent,1.8.1,y,
|
446
|
+
11/21/2016,puppetserver,2.7.1,y,
|
447
|
+
11/09/2016,puppetserver,2.7.0,y,
|
448
|
+
11/07/2016,puppetdb,4.3.0,y,
|
449
|
+
11/03/2016,Puppet Enterprise,2016.4.2,y,
|
450
|
+
11/02/2016,Puppet Enterprise,3.8.7,y,
|
451
|
+
11/01/2016,marionette-collective,2.9.1,y,
|
452
|
+
11/01/2016,hiera,3.2.2,y,
|
453
|
+
11/01/2016,puppet,4.8.0,y,
|
454
|
+
11/01/2016,puppet-agent,1.8.0,y,
|
455
|
+
10/27/2016,puppetdb,4.2.4,y,
|
456
|
+
10/20/2016,razor-server,1.5.0,y,
|
457
|
+
10/20/2016,puppet-agent,1.7.1,y,
|
458
|
+
10/20/2016,Puppet Enterprise,2016.4.0,y,
|
459
|
+
9/22/2016,puppet-agent,1.7.0,y,
|
460
|
+
9/22/2016,puppet,4.7.0,y,
|
461
|
+
9/8/2016,puppetserver,2.6.0,y,
|
462
|
+
9/8/2016,puppetserver,1.2.0,y,
|
463
|
+
9/1/2016,puppet-agent,1.6.2,y,
|
464
|
+
9/1/2016,puppet,4.6.2,y,
|
465
|
+
8/25/2016,puppetdb,4.2.2,y,
|
466
|
+
8/23/2016,puppet-agent,1.6.1,y,
|
467
|
+
8/23/2016,facter,3.4.1,y,
|
468
|
+
8/23/2016,puppet,4.6.1,y,
|
469
|
+
8/17/2016,puppetdb,4.2.1,y,
|
470
|
+
8/11/2016,puppetserver,2.5.0,y,
|
471
|
+
8/10/2016,puppet-agent,1.6.0,y,YANKED
|
472
|
+
8/10/2016,marionette-collective,2.9.0,y,
|
473
|
+
8/10/2016,hiera,3.2.1,y,
|
474
|
+
8/10/2016,puppet,4.6.0,y,YANKED
|
475
|
+
8/10/2016,facter,3.4.0,y,
|
476
|
+
8/9/2016,MCO Puppet Plugin,1.11.1,y,
|
477
|
+
8/9/2016,Puppet Enterprise,2016.2.1,y,
|
478
|
+
8/9/2016,Puppet Enterprise,3.8.6,y,
|
479
|
+
8/8/2016,puppetdb,4.2.0,y,
|
480
|
+
7/20/2016,puppet-client-tools,1.1.0,y,
|
481
|
+
7/20/2016,puppet-agent,1.5.3,y,
|
482
|
+
7/20/2016,marionette-collective,2.8.9,y,
|
483
|
+
7/20/2016,facter,3.3.0,y,
|
484
|
+
7/20/2016,puppet,4.5.3,y,
|
485
|
+
7/6/2016,razor-server,1.4.0,y,
|
486
|
+
6/22/2016,puppetdb,4.1.2,y,
|
487
|
+
6/21/2016,Puppet Enterprise,2016.2.0,y,
|
488
|
+
6/13/2016,puppet-agent,1.5.2,y,
|
489
|
+
6/13/2016,puppet,4.5.2,y,
|
490
|
+
6/1/2016,facter,3.1.8,y,
|
491
|
+
6/1/2016,puppet,4.5.1,y,
|
492
|
+
6/1/2016,puppet-agent,1.5.1,y,
|
493
|
+
5/24/2016,MCO Puppet Plugin,1.11.0,y,
|
494
|
+
5/24/2016,puppetdb,4.1.1,y,PE Only
|
495
|
+
5/19/2016,razor-server,1.3.0,y,
|
496
|
+
5/19/2016,puppetserver,2.4.0,y,
|
497
|
+
5/19/2016,razor-client,1.3.0,y,
|
498
|
+
5/19/2016,puppetdb,4.1.0,y,
|
499
|
+
5/17/2016,puppet-agent,1.5.0,y,
|
500
|
+
5/16/2016,puppet,4.5.0,y,
|
501
|
+
5/16/2016,facter,3.1.7,y,
|
502
|
+
5/11/2016,hiera,3.2.0,y,
|
503
|
+
5/4/2016,Puppet Enterprise,2016.1.2,y,
|
504
|
+
5/4/2016,Puppet Enterprise,3.8.5,y,
|
505
|
+
4/28/2016,puppetdb,4.0.2,y,
|
506
|
+
4/27/2016,puppetserver,2.3.2,y,
|
507
|
+
4/26/2016,puppet-agent,1.4.2,y,
|
508
|
+
4/26/2016,puppet,3.8.7,y,
|
509
|
+
4/22/2016,puppet,4.4.2,y,
|
510
|
+
4/22/2016,hiera,3.1.2,y,
|
511
|
+
4/22/2016,facter,3.1.6,y,
|
512
|
+
4/12/2016,PE Razor Client,1.2.0,y,
|
513
|
+
4/7/2016,puppet-client-tools,1.0.0,y,
|
514
|
+
4/7/2016,Puppet Enterprise,2016.1.1,y,
|
515
|
+
3/24/2016,puppet-agent,1.4.1,y,
|
516
|
+
3/23/2016,puppet,4.4.1,y,
|
517
|
+
3/23/2016,hiera,3.1.1,y,
|
518
|
+
3/22/2016,puppetserver,2.3.1,y,
|
519
|
+
3/17/2016,puppetdb,4.0.0,y,
|
520
|
+
3/16/2016,puppet-agent,1.4.0,y,
|
521
|
+
3/16/2016,puppetserver,2.3.0,y,
|
522
|
+
3/11/2016,puppet,4.4.0,y,
|
523
|
+
3/11/2016,marionette-collective,2.8.8,y,
|
524
|
+
3/11/2016,hiera,3.1.0,y,
|
525
|
+
3/11/2016,facter,3.1.5,y,
|
526
|
+
3/14/2016,puppet-agent,1.3.6,y,
|
527
|
+
3/14/2016,Puppet Enterprise,2015.3.3,y,
|
528
|
+
3/8/2016,razor-server,1.2.0,y,
|
529
|
+
3/8/2016,razor-client,1.2.0,y,
|
530
|
+
2/25/2016,puppetdb,3.2.4,y,
|
531
|
+
2/9/2016,Puppet Enterprise,2015.3.2,y,
|
532
|
+
2/9/2016,Puppet Enterprise,3.8.4,y,
|
533
|
+
2/4/2016,puppet,3.8.6,y,
|
534
|
+
2/3/2016,puppet-agent,1.3.5,y,
|
535
|
+
1/26/2016,facter,2.4.6,y,
|
536
|
+
1/25/2016,puppet-agent,1.3.4,y,
|
537
|
+
1/21/2016,puppet,4.3.2,y,
|
538
|
+
1/21/2016,hiera,3.0.6,y,
|
539
|
+
1/21/2016,facter,3.1.4,y,
|
540
|
+
1/21/2016,facter,2.4.5,y,
|
541
|
+
1/21/2016,puppet,3.8.5,y,
|
542
|
+
1/15/2016,marionette-collective,2.8.7,y,
|
543
|
+
1/11/2016,puppetdb,3.2.3,y,
|
544
|
+
12/29/2015,Puppet Enterprise,2015.3.1,y,
|
545
|
+
12/9/2015,puppetserver,1.1.3,y,
|
546
|
+
12/9/2015,puppetserver,2.2.1,y,
|
547
|
+
12/8/2015,Puppet Enterprise,2015.3.0,y,
|
548
|
+
12/2/2015,puppet-agent,1.3.2,y,
|
549
|
+
12/2/2015,puppetdb,3.2.2,y,
|
550
|
+
11/30/2015,puppet-agent,1.3.1,y,
|
551
|
+
11/24/2015,facter,3.1.3,y,
|
552
|
+
11/24/2015,puppet,4.3.1,y,
|
553
|
+
11/19/2015,puppetserver,2.2.0,y,
|
554
|
+
11/18/2015,puppet-agent,1.3.0,y,
|
555
|
+
11/16/2015,puppet,4.3.0,y,
|
556
|
+
11/16/2015,hiera,3.0.5,y,
|
557
|
+
11/16/2015,facter,3.1.2,y,
|
558
|
+
11/12/2015,razor-server,1.1.0,y,
|
559
|
+
11/12/2015,razor-client,1.1.0,y,
|
560
|
+
11/12/2015,Razor Torquebox,3.1.1.10,y,
|
561
|
+
11/9/2015,puppetdb,3.2.1,y,
|
562
|
+
11/5/2015,Puppet Enterprise,2015.2.3,y,
|
563
|
+
11/5/2015,Puppet Enterprise,3.8.3,y,
|
564
|
+
11/3/2015,puppet,3.8.4,y,
|
565
|
+
10/29/2015,puppet-agent,1.2.7,y,
|
566
|
+
10/29/2015,puppetdb,3.2.0,y,
|
567
|
+
10/28/2015,puppet,4.2.3,y,
|
568
|
+
10/28/2015,hiera,3.0.4,y,
|
569
|
+
10/28/2015,facter,3.1.1,y,
|
570
|
+
10/19/2015,puppetserver,2.1.2,y,
|
571
|
+
10/19/2015,puppetserver,1.1.2,y,
|
572
|
+
10/13/2015,puppetdb,2.3.8,y,
|
573
|
+
10/13/2015,Puppet Enterprise,2015.2.2,y,
|
574
|
+
10/8/2015,puppet-agent,1.2.6,y,
|
575
|
+
9/24/2015,Puppet Enterprise,2015.2.1,y,
|
576
|
+
9/21/2015,puppet,3.8.3,y,
|
577
|
+
9/15/2015,puppet-agent,1.2.5,y,
|
578
|
+
9/15/2015,marionette-collective,2.8.6,y,
|
579
|
+
9/10/2015,puppet-agent,1.2.4,y,
|
580
|
+
9/10/2015,marionette-collective,2.8.5,y,
|
581
|
+
9/10/2015,hiera,3.0.3,y,
|
582
|
+
9/10/2015,facter,3.1.0,y,
|
583
|
+
9/10/2015,puppet,4.2.2,y,
|
584
|
+
8/25/2015,puppetdb,3.1.0,y,
|
585
|
+
8/18/2015,marionette-collective,2.8.3,y,
|
586
|
+
8/13/2015,puppetdb,2.3.7,y,
|
587
|
+
8/6/2015,puppet,3.8.2,y,
|
588
|
+
8/6/2015,Puppet Enterprise,3.8.2,y,
|
589
|
+
8/4/2015,puppetdb,3.0.2,y,
|
590
|
+
7/28/2015,Puppet Enterprise,2015.2.0,y,
|
591
|
+
7/21/2015,puppet-agent,1.2.2,y,
|
592
|
+
7/21/2015,puppet,4.2.1,y,
|
593
|
+
7/21/2015,facter,3.0.2,y,
|
594
|
+
7/16/2015,puppetdb,2.3.6,y,
|
595
|
+
7/14/2015,puppetdb,3.0.1,y,
|
596
|
+
7/9/2015,puppetdb,3.0.0,y,
|
597
|
+
6/25/2015,puppet-agent,1.2.1,y,
|
598
|
+
6/25/2015,facter,3.0.1,y,
|
599
|
+
6/24/2015,puppet-agent,1.2.0,y,
|
600
|
+
6/24/2015,puppet,4.2.0,y,
|
601
|
+
6/24/2015,facter,3.0.0,y,
|
602
|
+
6/24/2015,hiera,3.0.1,y,
|
603
|
+
6/18/2015,puppetserver,1.1.1,y,
|
604
|
+
6/18/2015,Puppet Enterprise,3.8.1,y,
|
605
|
+
6/17/2015,puppetserver,2.1.1,y,
|
606
|
+
6/16/2015,puppet-agent,1.1.1,y,
|
607
|
+
6/11/2015,razor-server,1.0.1,y,
|
608
|
+
6/8/2015,razor-client,1.0.0,y,
|
609
|
+
6/8/2015,razor-server,1.0.0,y,
|
610
|
+
6/4/2015,puppetdb,2.3.5,y,
|
611
|
+
6/3/2015,puppetserver,1.1.0,y,
|
612
|
+
6/2/2015,puppetserver,2.1.0,y,
|
613
|
+
5/26/2015,puppet,3.8.1,y,
|
614
|
+
5/20/2015,puppet-agent,1.1.0,y,
|
615
|
+
5/20/2015,puppet,4.1.0,y,
|
616
|
+
5/20/2015,facter,2.4.4,y,
|
617
|
+
5/19/2015,marionette-collective,2.8.2,y,
|
618
|
+
5/7/2015,puppetdb,2.3.4,y,
|
619
|
+
4/28/2015,PE Razor Client,1.0.0,y,
|
620
|
+
4/28/2015,puppet-agent,1.0.1,y,
|
621
|
+
4/28/2015,Puppet Enterprise,3.8.0,y,
|
622
|
+
4/15/2015,puppetserver,2.0.0,y,
|
623
|
+
4/15/2015,puppet-agent,1.0.0,y,
|
624
|
+
4/14/2015,MCO puppet Plugin,1.10.0,y,
|
625
|
+
4/8/2015,puppet,4.0.0,y,
|
626
|
+
4/7/2015,puppetdb,2.3.3,y,
|
627
|
+
4/3/2015,puppet,4.0.0-rc3,,
|
628
|
+
4/2/2015,hiera,2.0.1,y,
|
629
|
+
4/1/2015,puppetdb,2.3.2,y,
|
630
|
+
4/1/2015,cfacter,0.4.1,y,
|
631
|
+
3/31/2015,puppetdb,2.3.1,y,
|
632
|
+
3/30/2015,puppetserver,1.0.8,y,
|
633
|
+
3/26/2015,MCO nrpe Plugin,3.1.0,y,
|
634
|
+
3/26/2015,puppet,3.7.5,y,
|
635
|
+
3/25/2015,puppet,4.0.0-rc2,,
|
636
|
+
3/25/2015,hiera,2.0.0,y,
|
637
|
+
3/19/2015,puppetdb,2.3.0,y,
|
638
|
+
3/19/2015,MCO Filemgr Plugin,1.1.0,y,
|
639
|
+
3/19/2015,MCO Package Plugin,4.4.0,y,
|
640
|
+
3/12/2015,MCO Shell Plugin,0.0.2,y,
|
641
|
+
3/11/2015,hiera,2.0.0-rc1,,
|
642
|
+
3/11/2015,puppet,4.0.0-rc1,,
|
643
|
+
3/11/2015,marionette-collective,2.8.1,y,
|
644
|
+
3/10/2015,cfacter,0.4.0,,
|
645
|
+
3/9/2015,facter,2.4.2,,
|
646
|
+
2/10/2015,facter,2.4.1,y,
|
647
|
+
2/10/2015,Puppet Enterprise,3.7.2,y,
|
648
|
+
2/4/2015,marionette-collective,2.8.0,y,
|
649
|
+
2/2/2015,cfacter,0.3.0,y,
|
650
|
+
1/27/2015,puppet,3.7.4,y,
|
651
|
+
1/22/2015,facter,2.4.0,y,
|
652
|
+
1/21/2015,geppetto,4.3.1,y,
|
653
|
+
1/15/2015,puppetserver,1.0.2,y,
|
654
|
+
1/13/2015,Razor,0.16.1,y,
|
655
|
+
1/6/2015,Razor,0.16.0,y,
|
656
|
+
12/16/2014,puppetserver,1.0.0,y,
|
657
|
+
12/16/2014,Puppet Enterprise,3.7.1,y,
|
658
|
+
12/2/2014,marionette-collective,2.7.0,y,
|
659
|
+
12/2/2014,MCO Puppet Plugin,1.9.3,y,
|
660
|
+
11/25/2014,MCO Puppet Plugin,1.9.2,y,
|
661
|
+
11/25/2014,MCO ActionPolicy Auth Plugin,2.1.0,y,
|
662
|
+
11/25/2014,MCO sshkey security Plugin,0.5.0,y,
|
663
|
+
11/11/2014,Puppet Enterprise,3.7.0,y,
|
664
|
+
11/10/2014,puppetserver,0.4.0,y,
|
665
|
+
11/4/2014,puppet,3.7.3,y,
|
666
|
+
10/30/2014,facter,2.3.0,y,
|
667
|
+
10/29/2014,marionette-collective,2.6.1,y,
|
668
|
+
10/23/2014,MCO Agent Plugin,1.9.1,y,
|
669
|
+
10/22/2014,puppet,3.7.2,y,
|
670
|
+
10/21/2014,puppetdb,2.2.2,y,
|
671
|
+
10/21/2014,puppetserver,0.3.0,y,
|
672
|
+
10/21/2014,MCO Agent Plugin,1.9.0,y,
|
673
|
+
10/14/2014,puppetdb,2.2.1,y,
|
674
|
+
10/2/2014,puppetserver,0.2.2,y,
|
675
|
+
9/30/2014,geppetto,4.3.0,y,
|
676
|
+
9/29/2014,puppetserver,0.2.1,y,
|
677
|
+
9/22/2014,puppetserver,0.2.0,y,
|
678
|
+
9/9/2014,Puppet Enterprise,3.3.2,y,
|
679
|
+
9/9/2014,Puppet Enterprise,2.8.8,y,
|
680
|
+
9/4/2014,puppet,3.7.0,y,
|
681
|
+
8/28/2014,marionette-collective,2.6.0,y,
|
682
|
+
8/27/2014,puppetdb,2.2.0,y,
|
683
|
+
8/25/2014,facter,2.2.0,y,
|
684
|
+
8/20/2014,MCO Puppet Plugin,1.8.0,y,
|
685
|
+
8/7/2014,Puppet Enterprise,3.3.1,y,
|
686
|
+
7/28/2014,geppetto,4.2.0,y,
|
687
|
+
7/28/2014,MCO ActionPolicy Auth Plugin,2.0.1,y,
|
688
|
+
7/23/2014,MCO Sysctl Data Plugin,2.0.1,y,
|
689
|
+
7/15/2014,MCO Shell Plugin,0.0.1,y,
|
690
|
+
7/15/2014,marionette-collective,2.5.3,y,
|
691
|
+
7/15/2014,Puppet Enterprise,3.3.0,y,
|
692
|
+
7/8/2014,puppetdb,2.1.0,y,
|
693
|
+
6/25/2014,facter,2.1.0,y,
|
694
|
+
6/16/2014,facter,1.7.6,y,
|
695
|
+
6/16/2014,razor-client,0.15.1,y,
|
696
|
+
6/14/2014,MCO Package Plugin,4.3.1,y,
|
697
|
+
6/14/2014,MCO Service Plugin,3.1.3,y,
|
698
|
+
6/14/2014,MCO Filemgr Plugin,1.0.2,y,
|
699
|
+
6/14/2014,MCO Iptables Plugin,3.0.2,y,
|
700
|
+
6/14/2014,MCO NRPE Plugin,3.0.3,y,
|
701
|
+
6/14/2014,MCO Nettest Plugin,3.0.4,y,
|
702
|
+
6/10/2014,Puppet Enterprise,2.8.7,y,
|
703
|
+
6/10/2014,marionette-collective,2.5.2,y,
|
704
|
+
6/10/2014,hiera,1.3.4,y,
|
705
|
+
6/10/2014,facter,2.0.2,y,
|
706
|
+
6/10/2014,puppet,2.7.26,y,
|
707
|
+
6/10/2014,puppet,3.6.2,y,
|
708
|
+
5/28/2014,razor-server,0.15.0,y,
|
709
|
+
5/28/2014,razor-client,0.15.0,y,
|
710
|
+
5/22/2014,hiera,1.3.3,y,
|
711
|
+
5/22/2014,puppet,3.6.1,y,
|
712
|
+
5/15/2014,puppet,3.6.0,y,
|
713
|
+
5/14/2014,marionette-collective,2.5.1,y,
|
714
|
+
5/6/2014,puppetdb,2.0.0,y,
|
715
|
+
5/6/2014,puppet,3.6.0-rc1,,
|
716
|
+
5/1/2014,Puppet Enterprise,3.2.3,y,
|
717
|
+
4/30/2014,puppetdb,2.0.0-rc1,,
|
718
|
+
4/29/2014,MCO Puppet Plugin,1.7.2,y,
|
719
|
+
4/23/2014,MCO Puppet Plugin,1.7.1,y,
|
720
|
+
4/23/2014,marionette-collective,2.5.0,y,
|
721
|
+
4/16/2014,puppet,3.5.1,y,
|
722
|
+
4/15/2014,Puppet Enterprise,3.2.2,y,
|
723
|
+
4/15/2014,Puppet Enterprise,2.8.6,y,
|
724
|
+
4/10/2014,puppet,3.5.1-rc1,,
|
725
|
+
4/10/2014,marionette-collective,2.5.0-rc1,,
|
726
|
+
4/3/2014,puppet,3.5.0,y,
|
727
|
+
4/1/2014,facter,2.0.1,y,
|
728
|
+
3/31/2014,puppet,3.5.0-rc3,,
|
729
|
+
3/28/2014,facter,2.0.1-rc4,,
|
730
|
+
3/27/2014,puppetdb,1.6.3,y,
|
731
|
+
3/25/2014,facter,2.0.1-rc3,,
|
732
|
+
3/24/2014,puppet,3.5.0-rc2,,
|
733
|
+
3/19/2014,Puppet Enterprise,3.2.1,y,
|
734
|
+
3/14/2014,puppet,3.5.0-rc1,,
|
735
|
+
3/12/2014,facter,2.0.1-rc2,,
|
736
|
+
3/4/2014,Puppet Enterprise,3.2.0,y,
|
737
|
+
2/28/2014,facter,2.0.1-rc1,,
|
738
|
+
2/26/2014,hiera,1.3.2,y,
|
739
|
+
2/20/2024,hiera,1.3.2-rc2,,
|
740
|
+
2/19/2014,puppet,3.4.3,y,
|
741
|
+
2/11/2014,Puppet Enterprise,3.1.3,y,
|
742
|
+
2/10/2014,facter,1.7.5,y,
|
743
|
+
2/10/2014,marionette-collective,2.4.1,y,
|
744
|
+
2/6/2014,puppetdb,1.6.2,y,
|
745
|
+
2/3/2014,facter,1.7.5-rc2,,
|
746
|
+
1/30/2014,puppetdb,1.6.0,y,
|
747
|
+
1/30/2014,Puppet Enterprise,2.8.5,y,
|
748
|
+
1/30/2014,Puppet Enterprise,3.1.2,y,
|
749
|
+
1/29/2014,MCO Package Plugin,4.2.2,y,
|
750
|
+
1/23/2014,hiera,1.3.1,y,
|
751
|
+
1/23/2014,marionette-collective,2.4.0,y,
|
752
|
+
1/22/2014,puppetdb,1.6.0-rc3,,
|
753
|
+
1/21/2014,facter,1.7.5-rc1,,
|
754
|
+
1/16/2014,marionette-collective,2.4.0-rc2,,
|
755
|
+
1/14/2014,puppetdb,1.6.0-rc2,,
|
756
|
+
1/13/2014,MCO Package Plugin,4.2.1,y,
|
757
|
+
1/9/2014,marionette-collective,2.4.0-rc1,,
|
758
|
+
1/7/2014,puppetdb,1.6.0-rc1,,
|
759
|
+
1/7/2014,puppet,2.7.25,y,
|
760
|
+
1/6/2014,puppet,3.4.2,y,
|
761
|
+
12/26/2013,puppet,3.4.1,y,
|
762
|
+
12/26/2013,puppet,2.7.24,y,
|
763
|
+
12/26/2013,Puppet Enterprise,3.1.1,y,
|
764
|
+
12/26/2013,Puppet Enterprise,2.8.4,y,
|
765
|
+
12/19/2013,puppet,3.4.0,y,
|
766
|
+
12/17/2013,facter,1.7.4,y,
|
767
|
+
12/12/2013,hiera,1.3.1-rc1,,
|
768
|
+
12/11/2013,puppet,3.4.0-rc2,,
|
769
|
+
12/9/2013,facter,1.7.4-rc1,,
|
770
|
+
12/3/2013,puppet,3.4.0-rc1,,
|
771
|
+
11/21/2013,hiera,1.3.0,y,
|
772
|
+
11/13/2013,puppet,3.3.2,y,
|
773
|
+
11/8/2013,hiera,1.3.0-rc2,,
|
774
|
+
11/7/2013,marionette-collective,2.3.3,y,
|
775
|
+
10/22/2013,puppetdb,1.5.2,y,
|
776
|
+
10/15/2013,Puppet Enterprise,3.1.0,y,
|
777
|
+
10/7/2013,puppet,3.3.1,y,
|
778
|
+
10/3/2013,puppet,3.3.1-rc3,,
|
779
|
+
10/2/2013,puppetdb,1.5.0,y,
|
780
|
+
9/27/2013,puppet,3.3.1-rc2,,
|
781
|
+
9/23/2013,puppet,3.3.1-rc1,,
|
782
|
+
9/15/2013,puppet,3.3.0,y,
|
783
|
+
9/9/2013,puppet,3.3.0-rc3,,
|
784
|
+
9/9/2013,facter,1.7.3,y,
|
785
|
+
9/3/2013,puppet,3.3.0-rc2,,
|
786
|
+
8/28/2013,facter,1.7.3-rc1,,
|
787
|
+
8/15/2013,puppet,2.7.23,y,
|
788
|
+
8/15/2013,puppet,3.2.4,y,
|
789
|
+
8/15/2013,Puppet Enterprise,3.0.1,y,
|
790
|
+
8/15/2013,Puppet Enterprise,2.8.3,y,
|
791
|
+
8/12/2013,puppetdb,1.4.0,y,
|
792
|
+
7/15/2013,puppet,3.2.3,y,
|
793
|
+
7/11/2013,marionette-collective,2.3.2,y,
|
794
|
+
7/10/2013,facter,1.7.2,y,
|
795
|
+
7/6/2013,Puppetlabs_spec_helper,0.2.0,y,
|
796
|
+
6/28/2013,facter,1.7.2-rc1,,
|
797
|
+
6/25/2013,Puppet Enterprise,3.0.0,y,
|
798
|
+
6/18/2013,Puppet Enterprise,2.8.2,y,
|
799
|
+
6/18/2013,puppet,2.7.22,y,
|
800
|
+
6/18/2013,puppet,3.2.2,y,
|
801
|
+
5/31/2013,puppetdb,1.3.2,y,
|
802
|
+
5/22/2013,puppetdb,1.3.1,y,
|
803
|
+
5/22/2013,puppet,3.2.1,y,
|
804
|
+
5/21/2013,marionette-collective,2.2.4,y,
|
805
|
+
5/17/2013,puppet,3.2.1-rc1,,
|
806
|
+
5/13/2013,facter,1.7.1,y,
|
807
|
+
5/13/2013,MCO Puppet Plugin,1.6.0,y,
|
808
|
+
5/7/2013,puppet,3.2.0-rc2,,
|
809
|
+
5/6/2013,puppetdb,1.3.0,y,
|
810
|
+
5/3/2013,facter,1.7.1-rc1,,
|
811
|
+
4/18/2013,hiera,1.2.1,y,
|
812
|
+
4/18/2013,puppet,3.2.0-rc1,,
|
813
|
+
4/17/2013,Puppet Enterprise,2.8.1,y,
|
814
|
+
4/15/2013,facter,1.7.0,y,
|
815
|
+
4/11/2013,hiera,1.2.1-rc1,,
|
816
|
+
4/8/2013,facter,1.7.0-rc2,,
|
817
|
+
4/3/2013,hiera,1.2.0,y,
|
818
|
+
4/3/2013,puppetdb,1.2.0,y,
|
819
|
+
4/1/2013,facter,1.7.0-rc1,,
|
820
|
+
3/29/2013,MCO Nettest Plugin,3.0.2,y,
|
821
|
+
3/28/2013,Puppet Enterprise,2.8.0,y,
|
822
|
+
3/27/2013,hiera,1.2.0-rc3,,
|
823
|
+
3/21/2013,Dashboard,1.2.23,y,
|
824
|
+
3/14/2013,Dashboard,1.2.23-rc3,,
|
825
|
+
3/13/2013,hiera,1.2.0-rc2,,
|
826
|
+
3/13/2013,facter,1.6.18,y,
|
827
|
+
3/12/2013,Puppet Enterprise,2.7.2,y,
|
828
|
+
3/12/2013,Puppet Enterprise,1.2.7,y,
|
829
|
+
3/12/2013,puppet,3.1.1,y,
|
830
|
+
3/12/2013,puppet,2.7.21,y,
|
831
|
+
3/12/2013,puppet,2.6.18,y,
|
832
|
+
3/11/2013,MCO Service Plugin,3.1.2,y,
|
833
|
+
3/7/2013,Dashboard,1.2.23-rc2,,
|
834
|
+
3/5/2013,hiera,1.2.0-rc1,,
|
835
|
+
3/5/2013,MCO Package Plugin,4.2.0,y,
|
836
|
+
3/5/2013,MCO Sysctl Data Plugin,2.0.0,y,
|
837
|
+
3/5/2013,facter,1.6.18-rc1,,
|
838
|
+
3/1/2013,MCO Logstash Audit Plugin,2.0.0,y,
|
839
|
+
3/1/2013,MCO Puppet Plugin,1.5.1,y,
|
840
|
+
2/26/2013,MCO Service Plugin,3.1.1,y,
|
841
|
+
2/22/2013,MCO Puppet Plugin,1.5.0,y,
|
842
|
+
2/21/2013,MCO Service Plugin,3.1.0,y,
|
843
|
+
2/21/2013,MCO Package Plugin,4.1.0,y,
|
844
|
+
2/21/2013,MCO Filemgr Plugin,1.0.1,y,
|
845
|
+
2/20/2013,MCO Facts Plugin,1.0.0,y,
|
846
|
+
2/20/2013,MCO Service Plugin,3.0.2,y,
|
847
|
+
2/20/2013,MCO Puppet Plugin,1.4.1,y,
|
848
|
+
2/20/2013,Razor,0.9.0,y,
|
849
|
+
2/15/2013,Razor Microkernel,0.11.0,y,
|
850
|
+
2/14/2013,marionette-collective,2.3.1,y,
|
851
|
+
2/14/2013,marionette-collective,2.2.3,y,
|
852
|
+
2/14/2013,marionette-collective,2.0.1,y,
|
853
|
+
2/13/2013,Dashboard,1.2.22,y,
|
854
|
+
2/8/2013,Puppetlabs_spec_helper,0.4.1,y,
|
855
|
+
2/8/2013,MCO Puppet Plugin,1.4.0,y,
|
856
|
+
2/7/2013,MCO Puppet Plugin,1.3.0,y,
|
857
|
+
2/6/2013,Puppet Enterprise,2.7.1,y,
|
858
|
+
2/6/2013,Puppet Enterprise,1.2.6,y,
|
859
|
+
2/6/2013,Razor Microkernel,0.10.0,y,
|
860
|
+
2/6/2013,Razor,0.8.0,y,
|
861
|
+
2/5/2013,MCO Package Plugin,4.0.0,y,
|
862
|
+
2/4/2013,puppetdb,1.1.1,y,
|
863
|
+
2/4/2013,puppet,3.1.0,y,
|
864
|
+
2/2/2013,MCO Puppet Plugin,1.2.1,y,
|
865
|
+
1/25/2013,puppet,3.1.0-rc2,,
|
866
|
+
1/25/2013,MCO Puppet Plugin,1.2.0,y,
|
867
|
+
1/24/2013,puppetdb,1.1.0,y,
|
868
|
+
1/23/2013,MCO Service Plugin,3.0.1,y,
|
869
|
+
1/17/2013,puppet,2.7.20-2 (for debian),y,
|
870
|
+
1/17/2013,MCO Iptables Plugin,3.0.1,y,
|
871
|
+
1/17/2013,marionette-collective,2.2.2,y,
|
872
|
+
1/16/2013,MCO NRPE Plugin,3.0.2,y,
|
873
|
+
1/16/2013,MCO Puppet Plugin,1.1.1,y,
|
874
|
+
1/16/2013,Dashboard,1.2.20,y,
|
875
|
+
1/15/2013,Dashboard,1.2.19,y,
|
876
|
+
1/15/2013,MCO Puppet Plugin,1.1.0,y,
|
877
|
+
1/10/2013,puppetdb,1.1.0-rc5,,
|
878
|
+
1/10/2013,MCO Puppet Plugin,1.0.0,y,
|
879
|
+
1/10/2013,marionette-collective,2.3.0,y,
|
880
|
+
1/9/2013,puppet,3.1.0-rc1,,
|
881
|
+
1/8/2013,puppetdb,1.1.0-rc4,,
|
882
|
+
1/8/2013,Dashboard,1.2.18,y,
|
883
|
+
1/4/2013,MCO Iptables Plugin,3.0.0,y,
|
884
|
+
1/4/2013,MCO Filemgr Plugin,1.0.0,y,
|
885
|
+
1/3/2013,Dashboard,1.2.17,y,
|
886
|
+
12/27/2012,hiera,1.1.2,y,
|
887
|
+
12/27/2012,facter,1.6.17,y,
|
888
|
+
12/27/2012,Dashboard,1.2.16,y,
|
889
|
+
12/26/2012,puppet,3.0.2,y,
|
890
|
+
12/26/2012,Puppetlabs_spec_helper,0.4.0,y,
|
891
|
+
12/20/2012,puppetdb,1.0.5,y,
|
892
|
+
12/20/2012,MCO NRPE Plugin,3.0.1,y,
|
893
|
+
12/20/2012,Dashboard,1.2.16-rc1,,
|
894
|
+
12/20/2012,hiera,1.1.2-rc2,,
|
895
|
+
12/19/2012,facter,1.6.17-rc1,,
|
896
|
+
12/19/2012,hiera,1.1.2-rc1,,
|
897
|
+
12/14/2012,Puppetlabs_spec_helper,0.4.0-rc1,,
|
898
|
+
12/14/2012,puppet,3.0.2-rc3,,
|
899
|
+
12/11/2012,puppet,3.0.2-rc2,,
|
900
|
+
12/5/2012,Dashboard,1.2.15,y,
|
901
|
+
12/4/2012,puppet,3.0.2-rc1,,
|
902
|
+
11/30/2012,facter,1.6.16,y,
|
903
|
+
11/28/2012,Dashboard,1.2.15-rc1,,
|
904
|
+
11/28/2012,facter,1.6.15,y,
|
905
|
+
11/27/2012,puppetdb,1.0.4,y,
|
906
|
+
11/21/2012,facter,1.6.15-rc1,,
|
907
|
+
11/20/2012,Puppet Enterprise,2.7.0,y,
|
908
|
+
11/19/2012,puppet,2.7.20,y,
|
909
|
+
11/9/2012,puppet,2.7.20-rc1,,
|
910
|
+
11/7/2012,Dashboard,1.2.14,y,
|
911
|
+
11/5/2012,Dashboard,1.2.13,y,
|
912
|
+
11/1/2012,facter,1.6.14,y,
|
913
|
+
10/31/2012,hiera,1.1.1,y,
|
914
|
+
10/25/2012,facter,1.6.14-rc1,,
|
915
|
+
10/25/2012,puppetdb,1.0.2,y,
|
916
|
+
10/24/2012,Dashboard,1.2.13-rc1,,
|
917
|
+
10/24/2012,hiera,1.1.1-rc1,,
|
918
|
+
10/18/2012,puppet,3.0.1,y,
|
919
|
+
10/17/2012,Puppet Enterprise,1.2.5,y,
|
920
|
+
10/17/2012,marionette-collective,2.2.1,y,
|
921
|
+
10/11/2012,puppet,3.0.1-rc1,,
|
922
|
+
10/10/2012,puppetdb,1.0.1,y,
|
923
|
+
10/10/2012,Puppet Enterprise,2.6.1,y,
|
924
|
+
10/4/2012,Dashboard,1.2.12,y,
|
925
|
+
10/4/2012,hiera,1.1.0,y,
|
926
|
+
10/4/2012,facter,1.6.13,y,
|
927
|
+
9/28/2012,puppet,3.0.0,y,
|
928
|
+
9/28/2012,facter,1.6.12-2,y,
|
929
|
+
9/26/2012,hiera,1.1.0-rc1,,
|
930
|
+
9/26/2012,Dashboard,1.2.12-rc1,,
|
931
|
+
9/26/2012,facter,1.6.13-rc1,,
|
932
|
+
9/25/2012,puppet,3.0.0-rc8,,
|
933
|
+
9/21/2012,puppet,3.0.0-rc7,,
|
934
|
+
9/20/2012,puppetdb,1.0.0,y,
|
935
|
+
9/19/2012,Puppet Enterprise,2.6.0,y,
|
936
|
+
9/18/2012,hiera,1.0.0-2,y,
|
937
|
+
9/13/2012,Dashboard,1.2.11,y,
|
938
|
+
9/13/2012,marionette-collective,2.2.0,y,
|
939
|
+
9/10/2012,puppetdb,0.11.0,y,
|
940
|
+
9/10/2012,puppet,3.0.0-rc6,,
|
941
|
+
9/10/2012,facter,1.6.12,y,
|
942
|
+
9/5/2012,Dashboard,1.2.11-rc1,,
|
943
|
+
8/31/2012,facter,1.6.12-rc2,,
|
944
|
+
8/30/2012,Hiera-Json,0.4.0,y,
|
945
|
+
8/30/2012,hiera,1.0.0,y,
|
946
|
+
8/30/2012,facter,1.6.12-rc1,,
|
947
|
+
8/29/2012,puppet,3.0.0-rc5,,
|
948
|
+
8/28/2012,Hiera Puppet,1.0.0,y,
|
949
|
+
8/24/2012,puppet,3.0.0-rc4,,
|
950
|
+
8/15/2012,Puppetlabs_spec_helper,0.3.0,y,
|
951
|
+
8/14/2012,puppet,2.7.19-rc3,,
|
952
|
+
8/14/2012,Hiera Puppet,1.0.0-rc3,,
|
953
|
+
8/9/2012,puppetdb,0.10.0,y,
|
954
|
+
8/8/2012,facter,1.6.11,y,
|
955
|
+
8/7/2012,puppet,2.7.19-rc2,,
|
956
|
+
8/1/2012,puppet,2.7.19-rc1,,
|
957
|
+
8/1/2012,Puppet Enterprise,2.5.3,y,
|
958
|
+
8/1/2012,facter,1.6.11-rc1,,
|
959
|
+
7/20/2012,Hiera Puppet,1.0.0-rc2,,
|
960
|
+
7/20/2012,hiera,1.0.0-rc4,,
|
961
|
+
7/13/2012,marionette-collective,2.1.1,y,
|
962
|
+
7/12/2012,puppetdb,0.9.2,y,
|
963
|
+
7/12/2012,Dashboard,1.2.10,y,
|
964
|
+
7/10/2012,puppet,2.7.18,y,
|
965
|
+
7/10/2012,puppet,2.6.17,y,
|
966
|
+
7/10/2012,Puppet Enterprise,2.5.2,y,
|
967
|
+
7/5/2012,Dashboard,1.2.10-rc1,,
|
968
|
+
6/19/2012,puppet,2.7.17,y,
|
969
|
+
6/14/2012,puppetdb,0.9.1,y,
|
970
|
+
6/13/2012,Dashboard,1.2.9,y,
|
971
|
+
6/13/2012,puppet,2.7.16,y,
|
972
|
+
6/13/2012,facter,1.6.10,y,
|
973
|
+
6/8/2012,Puppetlabs_spec_helper,0.1.0,y,
|
974
|
+
6/8/2012,marionette-collective,2.1.0,y,
|
975
|
+
6/6/2012,Dashboard,1.2.9-rc1,,
|
976
|
+
6/6/2012,puppet,2.7.16-rc1,,
|
977
|
+
6/6/2012,facter,1.6.10-rc1,,
|
978
|
+
6/1/2012,puppet,3.0.0-rc3,,
|
979
|
+
6/1/2012,puppet,2.7.15-rc4,,
|
980
|
+
5/24/2012,facter,2.0.0-rc4,,
|
981
|
+
5/22/2012,puppet,3.0.0-rc2,,
|
982
|
+
5/22/2012,Hiera Puppet,1.0.0-rc1,,
|
983
|
+
5/22/2012,hiera,1.0.0-rc3,,
|
984
|
+
5/22/2012,facter,2.0.0-rc3,,
|
985
|
+
5/21/2012,Dashboard,1.2.8,y,
|
986
|
+
5/18/2012,puppetdb,0.9.0,y,
|
987
|
+
5/18/2012,puppet,2.7.15-rc2,,
|
988
|
+
5/17/2012,puppet,3.0.0-rc1,,
|
989
|
+
5/17/2012,facter,2.0.0-rc2,,
|
990
|
+
5/17/2012,facter,1.6.9,y,
|
991
|
+
5/15/2012,puppet,2.7.15-rc1,,
|
992
|
+
5/15/2012,facter,2.0.0-rc1,,
|
993
|
+
5/14/2012,Dashboard,1.2.8-rc2,,
|
994
|
+
5/14/2012,hiera,1.0.0-rc2,,
|
995
|
+
5/14/2012,hiera,1.0.0-rc1,,*RC Repos go live - From this point forward we fully package RCs for apt and yum
|
996
|
+
5/10/2012,facter,1.6.8-rc1,,
|
997
|
+
5/9/2012,Dashboard,1.2.8-rc1,,
|
998
|
+
5/2/2012,puppet,2.7.14,y,
|
999
|
+
4/30/2012,marionette-collective,2.0.0,y,
|
1000
|
+
4/24/2012,puppet,2.7.14-rc3,,
|
1001
|
+
4/23/2012,puppet,2.7.14-rc2,,
|
1002
|
+
4/23/2012,facter,1.6.8,y,
|
1003
|
+
4/17/2012,puppet,2.7.14-rc1,,
|
1004
|
+
4/13/2012,facter,1.6.8-rc1,,
|
1005
|
+
4/11/2012,puppet,2.6.16,y,
|
1006
|
+
4/10/2012,puppet,2.7.13,y,
|
1007
|
+
4/10/2012,puppet,2.6.15,y,
|
1008
|
+
4/10/2012,Puppet Enterprise,2.5.1,y,
|
1009
|
+
3/29/2012,Dashboard,1.2.7,y,
|
1010
|
+
3/29/2012,facter,1.6.7,y,
|
1011
|
+
3/28/2012,Puppet Enterprise,2.5.0,y,
|
1012
|
+
3/22/2012,Dashboard,1.2.7-rc1,,
|
1013
|
+
3/22/2012,facter,1.6.7-rc1,,
|
1014
|
+
3/12/2012,puppet,2.7.12,y,
|
1015
|
+
2/24/2012,puppet,2.7.12-rc1,,
|
1016
|
+
2/23/2012,facter,1.6.11,y,
|
1017
|
+
2/22/2012,puppet,2.7.11,y,
|
1018
|
+
2/22/2012,puppet,2.6.14,y,
|
1019
|
+
2/22/2012,Dashboard,1.2.6,y,
|
1020
|
+
2/22/2012,Puppet Enterprise,2.0.3,y,
|
1021
|
+
2/16/2012,facter,1.6.6-rc2,,
|
1022
|
+
2/15/2012,facter,1.6.6-rc1,,
|
1023
|
+
2/15/2012,Dashboard,1.2.6-rc1,,
|
1024
|
+
2/2/2012,Puppet Enterprise,2.0.2,y,
|
1025
|
+
1/26/2012,Dashboard,1.2.5,y,
|
1026
|
+
1/26/2012,Puppet Enterprise,2.0.1,y,
|
1027
|
+
1/25/2012,facter,1.6.5,y,
|
1028
|
+
1/25/2012,puppet,2.7.10,y,
|
1029
|
+
1/18/2012,Dashboard,1.2.5-rc1,,
|
1030
|
+
1/18/2012,puppet,2.7.10-rc1,,
|
1031
|
+
1/18/2012,facter,1.6.5-rc1,,
|