release-metrics 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/add-release +18 -3
- data/release-metrics.gemspec +1 -1
- data/releases.csv +1056 -1031
- 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: cc7bbb525a16b6d01fd47a86015e1dccb7f2f6b376f39a930d47b0b4b923f50c
|
4
|
+
data.tar.gz: ff10ce19da2fa0b649e0b93eef9b32bf8db8bc09b5444e7ac68ca9029e021eab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a91b4f7fd598ae7423f1ce2c5e26af65e316e3a2ae053bfefd0eb5e27cbaed1e03b3b99aadd0d480525738f12e78cb2d6979b0949a03f231a17941ef917908e9
|
7
|
+
data.tar.gz: a8515ce56816b4fb48daf69e2523c3407e187b093d73ae8f8e608ce736a90c35ee6c711a33df6c382e13a20b00749fa37e44c74002a8608f26c87a72a46c91d4
|
data/bin/add-release
CHANGED
@@ -2,9 +2,20 @@
|
|
2
2
|
|
3
3
|
require 'docopt'
|
4
4
|
require 'csv'
|
5
|
+
require 'fileutils'
|
5
6
|
|
6
7
|
DATA_FILE = 'releases.csv'
|
7
8
|
|
9
|
+
def release_already_exists?(project, version, data_file)
|
10
|
+
data = CSV.read(data_file)
|
11
|
+
data.each do |row|
|
12
|
+
if row.include?(project) && row.include?(version)
|
13
|
+
return true
|
14
|
+
end
|
15
|
+
end
|
16
|
+
return false
|
17
|
+
end
|
18
|
+
|
8
19
|
def add_release(date, project, version, data_file)
|
9
20
|
# copy data_file as backup
|
10
21
|
FileUtils.cp(data_file, "#{data_file}.bak")
|
@@ -49,6 +60,10 @@ project = options['PROJECT']
|
|
49
60
|
version = options['VERSION']
|
50
61
|
|
51
62
|
# Do the thing
|
52
|
-
|
53
|
-
|
54
|
-
|
63
|
+
if release_already_exists?(project, version, DATA_FILE)
|
64
|
+
puts "INFO: #{project} #{version} was already shipped, not adding it again . . ."
|
65
|
+
else
|
66
|
+
puts "INFO: Adding #{project} #{version} to release-metrics . . ."
|
67
|
+
add_release(date, project, version, DATA_FILE)
|
68
|
+
commit_release_file(DATA_FILE, "(maint) Add #{project} #{version} release")
|
69
|
+
end
|
data/release-metrics.gemspec
CHANGED
data/releases.csv
CHANGED
@@ -1,1031 +1,1056 @@
|
|
1
|
-
Date,Project,Version,Final?,Notes
|
2
|
-
|
3
|
-
10/
|
4
|
-
10/
|
5
|
-
10/
|
6
|
-
10/
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
7/
|
59
|
-
7/
|
60
|
-
7/
|
61
|
-
7/
|
62
|
-
7/
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
10/
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
08/
|
207
|
-
08/
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
06/
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
6/
|
383
|
-
6/
|
384
|
-
6/
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
11/
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
6/
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
3/
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
1/
|
655
|
-
1/
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
10/
|
670
|
-
|
671
|
-
10/
|
672
|
-
10/
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
1/
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
9/
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
3/
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
9/
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
5/
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
2/
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1
|
+
Date,Project,Version,Final?,Notes
|
2
|
+
11/1/2019,pdk,1.14.1.0,y,
|
3
|
+
10/25/2019,puppet-bolt,1.35.0,y,
|
4
|
+
10/23/2019,puppetdb,6.7.2,y,
|
5
|
+
10/23/2019,puppetdb,6.3.6,y,
|
6
|
+
10/23/2019,puppetdb,5.2.11,y,
|
7
|
+
10/17/2019,puppet-bolt,1.34.0,y,
|
8
|
+
10/15/2019,puppet,6.10.1,y,
|
9
|
+
10/15/2019,hiera,3.6.0,y,
|
10
|
+
10/15/2019,facter,3.14.5,y,
|
11
|
+
10/15/2019,puppetdb,6.7.1,y,
|
12
|
+
10/15/2019,puppetdb,6.3.5,y,
|
13
|
+
10/15/2019,puppetdb,5.2.10,y,
|
14
|
+
10/15/2019,puppetserver,6.7.1,y,
|
15
|
+
10/15/2019,puppetserver,6.3.2,y,
|
16
|
+
10/15/2019,puppetserver,5.3.10,y,
|
17
|
+
10/15/2019,puppet-agent,5.5.17,y,
|
18
|
+
10/15/2019,puppet-agent,6.10.1,y,
|
19
|
+
10/15/2019,puppet-agent,6.4.4,y,
|
20
|
+
10/15/2019,mcollective,2.12.5,y,
|
21
|
+
10/15/2019,facter,3.11.10,y,
|
22
|
+
10/15/2019,puppet,5.5.17,y,
|
23
|
+
10/15/2019,facter,3.13.4,y,
|
24
|
+
10/15/2019,puppet,6.4.4,y,
|
25
|
+
10/10/2019,puppet-bolt,1.33.0,y,
|
26
|
+
10/09/2019,pdk,1.14.0.0,y,
|
27
|
+
10/04/2019,puppet-bolt,1.32.0,y,
|
28
|
+
10/1/2019,puppetdb,6.7.0,y,
|
29
|
+
10/1/2019,puppetserver,6.7.0,y,
|
30
|
+
10/1/2019,puppet-agent,6.10.0,y,
|
31
|
+
10/1/2019,puppet,6.10.0,y,
|
32
|
+
9/27/2019,puppet-bolt,1.31.1,y,
|
33
|
+
9/26/2019,puppet-bolt,1.31.0,y,
|
34
|
+
9/19/2019,puppet-bolt,1.30.1,y,
|
35
|
+
9/17/2019,puppetdb,6.6.0,y,
|
36
|
+
9/17/2019,puppetserver,6.6.0,y,
|
37
|
+
9/17/2019,puppet,6.9.0,y,
|
38
|
+
9/17/2019,facter,3.14.4,y,
|
39
|
+
9/17/2019,puppet-agent,6.9.0,y,
|
40
|
+
9/5/2019,puppet-bolt,1.30.0,y,
|
41
|
+
8/30/2019,razor-client,1.9.6,y,
|
42
|
+
8/29/2019,razor-server,1.9.6,y,
|
43
|
+
8/29/2019,razor-client,1.9.5,y,
|
44
|
+
8/29/2019,pdk,1.13.0.0,y,
|
45
|
+
8/28/2019,puppet-agent,6.8.1,y,
|
46
|
+
8/28/2019,puppet,6.8.1,y,
|
47
|
+
8/22/2019,puppet-bolt,1.29.1,y,
|
48
|
+
8/21/2019,puppet,6.8.0,y,
|
49
|
+
8/21/2019,facter,3.14.3,y,
|
50
|
+
8/21/2019,puppetdb,6.5.0,y,
|
51
|
+
8/21/2019,puppet-agent,6.8.0,y,
|
52
|
+
8/19/2019,razor-client,1.9.3,y,
|
53
|
+
8/15/2019,razor-client,1.9.2,y,YANKED
|
54
|
+
8/15/2019,razor-server,1.9.5.1,y,
|
55
|
+
8/15/2019,puppet-bolt,1.29.0,y,
|
56
|
+
8/8/2019,puppet-bolt,1.28.0,y,
|
57
|
+
8/1/2019,puppet-bolt,1.27.1,y,
|
58
|
+
7/31/2019,pdk,1.12.0.0,y,
|
59
|
+
7/30/2019,Puppet Enterprise,2019.1.1,y,
|
60
|
+
7/30/2019,Puppet Enterprise,2019.0.4,y,
|
61
|
+
7/30/2019,Puppet Enterprise,2018.1.9,y,
|
62
|
+
7/26/2019,puppet-agent,6.7.2,y,
|
63
|
+
7/24/2019,puppet-bolt,1.27.0,y,
|
64
|
+
7/23/2019,puppet,6.7.0,y,
|
65
|
+
7/23/2019,facter,3.14.2,y,
|
66
|
+
7/23/2019,puppetserver,6.5.0,y,
|
67
|
+
7/23/2019,puppetdb,6.4.0,y,
|
68
|
+
7/23/2019,puppet-agent,6.7.0,y,
|
69
|
+
7/16/2019,puppetserver,6.3.1,y,
|
70
|
+
7/16/2019,puppet,6.4.3,y,
|
71
|
+
7/16/2019,facter,3.13.3,y,
|
72
|
+
7/16/2019,puppet-agent,6.4.3,y,
|
73
|
+
7/16/2019,puppetserver,6.0.5,y,
|
74
|
+
7/16/2019,puppetdb,6.0.4,y,
|
75
|
+
7/16/2019,puppet,6.0.10,y,
|
76
|
+
7/16/2019,facter,3.12.5,y,
|
77
|
+
7/16/2019,puppet-agent,6.0.10,y,
|
78
|
+
7/16/2019,puppetdb,5.2.9,y,
|
79
|
+
7/16/2019,puppetserver,5.3.9,y,
|
80
|
+
7/16/2019,facter,3.11.9,y,
|
81
|
+
7/16/2019,puppet,5.5.16,y,
|
82
|
+
7/16/2019,puppet-agent,5.5.16,y,
|
83
|
+
7/9/2019,puppet-bolt,1.26.0,y,
|
84
|
+
7/2/2019,pdk,1.11.1.0,y,
|
85
|
+
7/1/2019,facter,3.14.1,y,
|
86
|
+
7/1/2019,puppet,6.6.0,y,
|
87
|
+
7/1/2019,puppet-agent,6.6.0,y,
|
88
|
+
6/27/2019,puppet-bolt,1.25.0,y,
|
89
|
+
6/27/2019,pdk,1.11.0.0,y,
|
90
|
+
6/26/2019,puppetdb,6.3.4,y,
|
91
|
+
6/26/2019,puppetdb,6.0.4,y,
|
92
|
+
6/26/2019,puppetdb,5.2.9,y,
|
93
|
+
6/20/2019,puppet-bolt,1.24.0,y,
|
94
|
+
6/19/2019,puppet,6.5.0,y,
|
95
|
+
6/19/2019,facter,3.14.0,y,
|
96
|
+
6/19/2019,puppetdb,6.3.3,y,
|
97
|
+
6/19/2019,puppetserver,6.4.0,y,
|
98
|
+
6/19/2019,puppet-agent,6.5.0,y,
|
99
|
+
6/14/2019,puppet-bolt,1.23.0,y,
|
100
|
+
6/7/2019,puppet-bolt,1.22.0,y,
|
101
|
+
5/30/2019,puppet-bolt,1.21.0,y,
|
102
|
+
5/17/2019,puppet-bolt,1.20.0,y,
|
103
|
+
5/7/2019,Puppet Enterprise,2019.1.0,y,
|
104
|
+
5/6/2019,puppet-bolt,1.19.0,y,
|
105
|
+
4/30/2019,Puppet Enterprise,2018.1.8,y,
|
106
|
+
4/30/2019,Puppet Enterprise,2019.0.3,y,
|
107
|
+
4/30/2019,puppetdb,6.3.2,y,
|
108
|
+
4/30/2019,puppet-agent,6.4.2,y,
|
109
|
+
4/30/2019,puppet,6.4.2,y,
|
110
|
+
4/30/2019,puppet-agent,6.0.9,y,
|
111
|
+
4/30/2019,puppet,6.0.9,y,
|
112
|
+
4/30/2019,puppet-agent,5.5.14,y,
|
113
|
+
4/30/2019,puppet,5.5.14,y,
|
114
|
+
4/25/2019,puppet-bolt,1.18.0,y,
|
115
|
+
4/19/2019,puppet-bolt,1.17.0,y,
|
116
|
+
4/16/2019,puppetdb,6.3.1,y,
|
117
|
+
4/16/2019,facter,3.13.2,y,
|
118
|
+
4/16/2019,puppet,6.4.1,y,
|
119
|
+
4/16/2019,puppet-agent,6.4.1,y,
|
120
|
+
4/16/2019,puppet,6.0.8,y,
|
121
|
+
4/16/2019,puppet-agent,6.0.8,y,
|
122
|
+
4/16/2019,puppet,5.5.13,y,
|
123
|
+
4/16/2019,puppet-agent,5.5.13,y,
|
124
|
+
4/11/2019,puppet-bolt,1.16.0,y,
|
125
|
+
4/2/2019,pdk,1.10.0.0,y,
|
126
|
+
3/29/2019,puppet-bolt,1.15.0,y,
|
127
|
+
3/26/2019,puppet,6.4.0,y,
|
128
|
+
3/26/2019,facter,3.13.1,y,
|
129
|
+
3/26/2019,puppetserver,6.3.0,y,
|
130
|
+
3/26/2019,puppetdb,6.3.0,y,
|
131
|
+
3/26/2019,puppet-agent,6.4.0,y,
|
132
|
+
3/26/2019,puppet,6.0.7,y,
|
133
|
+
3/26/2019,facter,3.12.4,y,
|
134
|
+
3/26/2019,puppetserver,6.0.4,y,
|
135
|
+
3/26/2019,puppetdb,6.0.3,y,
|
136
|
+
3/26/2019,puppet-agent,6.0.7,y,
|
137
|
+
3/26/2019,puppet,5.5.12,y,
|
138
|
+
3/26/2019,facter,3.11.8,y,
|
139
|
+
3/26/2019,puppetserver,5.3.8,y,
|
140
|
+
3/26/2019,puppetdb,5.2.8,y,
|
141
|
+
3/26/2019,puppet-agent,5.5.12,y,
|
142
|
+
03/15/2019,puppet-bolt,1.14.0,y,
|
143
|
+
03/07/2019,puppet-bolt,1.13.1,y,
|
144
|
+
2/27/2019,puppet-bolt,1.13.0,y,
|
145
|
+
2/21/2019,puppet-bolt,1.12.0,y,
|
146
|
+
2/20/2019,puppetserver,6.2.1,y,
|
147
|
+
2/20/2019,puppet-agent,6.3.0,y,
|
148
|
+
2/20/2019,facter,3.13.0,y,
|
149
|
+
2/20/2019,puppet,6.3.0,y,
|
150
|
+
02/08/2019,puppet-bolt,1.11.0,y,
|
151
|
+
1/29/2019,pdk,1.9.0.0,y,
|
152
|
+
1/29/2019,Puppet Enterprise,2019.0.2,y,
|
153
|
+
1/29/2019,Puppet Enterprise,2018.1.7,y,
|
154
|
+
1/24/2019,puppet,6.2.0,y,
|
155
|
+
1/24/2019,puppetserver,6.2.0,y,
|
156
|
+
1/24/2019,puppetdb,6.2.0,y,
|
157
|
+
1/24/2019,puppet-agent,6.2.0,y,
|
158
|
+
1/16/2019,puppet-bolt,1.10.0,y,
|
159
|
+
1/15/2019,puppet,6.0.5,y,
|
160
|
+
1/15/2019,facter,3.12.3,y,
|
161
|
+
1/15/2019,puppetserver,6.0.3,y,
|
162
|
+
1/15/2019,puppetdb,6.0.2,y,
|
163
|
+
1/15/2019,puppet-agent,6.0.5,y,
|
164
|
+
1/15/2019,puppet,5.5.10,y,
|
165
|
+
1/15/2019,hiera,3.4.6,y,
|
166
|
+
1/15/2019,facter,3.11.7,y,
|
167
|
+
1/15/2019,puppetserver,5.3.7,y,
|
168
|
+
1/15/2019,puppetdb,5.2.7,y,
|
169
|
+
1/15/2019,puppet-agent,5.5.10,y,
|
170
|
+
1/10/2019,puppet-bolt,1.9.0,y,
|
171
|
+
1/4/2019,puppet-bolt,1.8.1,y,
|
172
|
+
1/3/2019,puppet-bolt,1.8.0,y,
|
173
|
+
12/19/2018,puppet-bolt,1.7.0,y,
|
174
|
+
12/18/2018,puppetdb,6.1.0,y,
|
175
|
+
12/18/2018,puppetserver,6.1.0,y,
|
176
|
+
12/18/2018,hiera,3.5.0,y,
|
177
|
+
12/18/2018,facter,3.12.2,y,
|
178
|
+
12/18/2018,puppet-agent,6.1.0,y,
|
179
|
+
12/18/2018,puppet,6.1.0,y,
|
180
|
+
12/13/2018,puppet-bolt,1.6.0,y,
|
181
|
+
12/6/2018,puppet-bolt,1.5.0,y,
|
182
|
+
11/30/2018,puppet-bolt,1.4.0,y,
|
183
|
+
11/28/2018,pdk,1.8.0.0,y,
|
184
|
+
11/14/2018,puppet-bolt,1.3.0,y,
|
185
|
+
11/06/2018,Puppet Enterprise,2019.0.1,y,
|
186
|
+
11/06/2018,Puppet Enterprise,2018.1.5,y,
|
187
|
+
11/01/2018,facter,3.11.6,y,
|
188
|
+
11/01/2018,puppet-agent,6.0.4,y,
|
189
|
+
11/01/2018,puppet,6.0.4,y,
|
190
|
+
11/01/2018,puppet-agent,5.5.8,y,
|
191
|
+
11/01/2018,puppet,5.5.8,y,
|
192
|
+
10/30/2018,puppet-bolt,1.2.0,y,
|
193
|
+
10/25/2018,puppetserver,6.0.2,y,
|
194
|
+
10/25/2018,puppetdb,6.0.1,y,
|
195
|
+
10/25/2018,puppet-agent,6.0.3,y,
|
196
|
+
10/25/2018,puppet,6.0.3,y,
|
197
|
+
10/25/2018,facter,3.12.1,y,
|
198
|
+
10/23/2018,puppetdb,5.2.6,y,
|
199
|
+
10/23/2018,puppetserver,5.3.6,y,
|
200
|
+
10/23/2018,puppet-agent,5.5.7,y,
|
201
|
+
10/23/2018,marionette-collective,2.12.4,y,
|
202
|
+
10/23/2018,puppet,5.5.7,y,
|
203
|
+
10/23/2018,facter,3.11.5,y,
|
204
|
+
10/16/2018,puppet-bolt,1.1.0,y,
|
205
|
+
10/09/2018,Puppet Enterprise,2019.0.0,y,
|
206
|
+
10/08/2018,puppet-bolt,1.0.0,y,
|
207
|
+
10/08/2018,pdk,1.7.1.0,y,
|
208
|
+
10/04/2018,puppet-bolt,0.25.0,y,
|
209
|
+
10/04/2018,puppet-agent,6.0.2,y,
|
210
|
+
10/04/2018,puppet,6.0.2,y,
|
211
|
+
10/02/2018,puppet,6.0.1,y,
|
212
|
+
10/02/2018,puppetserver,6.0.1,y,
|
213
|
+
10/02/2018,puppet-agent,6.0.1,y,
|
214
|
+
9/27/2018,puppet-bolt,0.24.0,y,
|
215
|
+
09/20/2018,puppet-bolt,0.23.0,y,
|
216
|
+
09/18/2018,puppetdb,6.0.0,y,
|
217
|
+
09/18/2018,puppetserver,6.0.0,y,
|
218
|
+
09/18/2018,puppet-agent,6.0.0,y,
|
219
|
+
09/18/2018,puppet,6.0.0,y,
|
220
|
+
09/18/2018,hiera,3.4.5,y,
|
221
|
+
09/18/2018,facter,3.12.0,y,
|
222
|
+
09/05/2018,puppet-bolt,0.22.0,y,
|
223
|
+
08/23/2018,puppet-bolt,0.21.8,y,
|
224
|
+
08/23/2018,Puppet Enterprise,2016.4.15,y,
|
225
|
+
08/23/2018,Puppet Enterprise,2017.3.10,y,
|
226
|
+
08/23/2018,Puppet Enterprise,2018.1.4,y,
|
227
|
+
08/22/2018,puppetserver,5.3.5,y,
|
228
|
+
08/22/2018,puppet-agent,5.5.6,y,
|
229
|
+
08/22/2018,puppet,5.5.6,y,
|
230
|
+
08/22/2018,marionette-collective,2.12.3,y,
|
231
|
+
08/22/2018,hiera,3.4.4,y,
|
232
|
+
08/22/2018,facter,3.11.4,y,
|
233
|
+
08/16/2018,puppet-bolt,0.21.7,y,
|
234
|
+
08/15/2018,pdk,1.7.0.0,y,
|
235
|
+
08/11/2018,puppet-bolt,0.21.6,y,
|
236
|
+
08/02/2018,puppet-bolt,0.21.5,y,
|
237
|
+
07/31/2018,Puppet Enterprise,2018.1.3,y,
|
238
|
+
07/31/2018,Puppet Enterprise,2017.3.9,y,
|
239
|
+
07/31/2018,Puppet Enterprise,2016.4.14,y,
|
240
|
+
07/25/2018,puppet-bolt,0.21.4,y,
|
241
|
+
07/25/2018,pdk,1.6.1.0,y,
|
242
|
+
07/17/2018,puppet-bolt,0.21.3,y,
|
243
|
+
07/17/2018,puppetdb,5.2.4,y,
|
244
|
+
07/17/2018,puppetserver,5.3.4,y,
|
245
|
+
07/17/2018,puppet-agent,5.5.4,y,
|
246
|
+
07/17/2018,puppet,5.5.3,y,
|
247
|
+
07/17/2018,facter,3.11.3,y,
|
248
|
+
7/9/2018,puppet-bolt,0.21.2,y,
|
249
|
+
06/27/2018,puppet-bolt,0.21.1,y,
|
250
|
+
06/25/2018,pdk,1.6.0.0,y,
|
251
|
+
06/19/2018,puppet-bolt,0.21.0,y,
|
252
|
+
06/14/2018,puppet-bolt,0.20.7,y,
|
253
|
+
06/13/2018,Puppet Enterprise,2018.1.2,y,
|
254
|
+
06/13/2018,Puppet Enterprise,2017.3.8,y,
|
255
|
+
06/13/2018,Puppet Enterprise,2016.4.13,y,
|
256
|
+
06/13/2018,puppet-agent,5.5.3,y,
|
257
|
+
06/13/2018,puppet-agent,5.3.8,y,
|
258
|
+
06/13/2018,puppet-agent,1.10.14,y,
|
259
|
+
06/07/2018,puppet-bolt,0.20.6,y,
|
260
|
+
06/07/2018,razor-server,1.9.2.0,y,
|
261
|
+
06/07/2018,razor-client,1.9.1,y,
|
262
|
+
06/07/2018,puppetserver,5.1.6,y,PE Only
|
263
|
+
06/07/2018,puppetserver,5.3.3,y,
|
264
|
+
06/07/2018,facter,3.11.2,y,
|
265
|
+
06/07/2018,marionette-collective,2.12.2,y,
|
266
|
+
06/07/2018,puppet,4.10.12,y,
|
267
|
+
06/07/2018,puppet,5.3.7,y,
|
268
|
+
06/07/2018,puppet,5.5.2,y,
|
269
|
+
06/07/2018,puppet-agent,5.5.2,y,
|
270
|
+
06/07/2018,puppet-agent,5.3.7,y,
|
271
|
+
06/07/2018,puppet-agent,1.10.13,y,
|
272
|
+
06/07/2018,Puppet Enterprise,2018.1.1,y,
|
273
|
+
06/07/2018,Puppet Enterprise,2017.3.7,y,
|
274
|
+
06/07/2018,Puppet Enterprise,2016.4.12,y,
|
275
|
+
5/31/2018,puppet-bolt,0.20.5,y,
|
276
|
+
05/23/2018,puppet-bolt,0.20.3,y,
|
277
|
+
05/18/2018,puppet-bolt,0.20.2,y,
|
278
|
+
05/10/2018,puppet-bolt,0.20.0,y,
|
279
|
+
05/01/2018,pdk,1.5.0,y,
|
280
|
+
05/01/2018,Puppet Enterprise,2018.1.0,y,
|
281
|
+
05/01/2018,Puppet Enterprise,2017.3.6,y,
|
282
|
+
05/01/2018,Puppet Enterprise,2016.4.11,y,
|
283
|
+
4/30/2018,puppet-bolt,0.19.1,y,
|
284
|
+
04/24/2018,razor-server,1.8.1.0,y,
|
285
|
+
04/24/2018,razor-client,1.8.1,y,
|
286
|
+
04/18/2018,puppetserver,5.3.1,y,
|
287
|
+
04/18/2018,puppetdb,5.2.2,y,
|
288
|
+
04/18/2018,puppet-agent,5.5.1,y,
|
289
|
+
04/18/2018,puppet,5.5.1,y,
|
290
|
+
04/18/2018,marionette-collective,2.12.1,y,
|
291
|
+
04/18/2018,facter,3.11.1,y,
|
292
|
+
04/17/2018,puppetdb,5.1.5,y,
|
293
|
+
04/17/2018,puppet-agent,5.3.6,y,
|
294
|
+
04/17/2018,puppet,5.3.6,y,
|
295
|
+
04/17/2018,marionette-collective,2.11.5,y,
|
296
|
+
04/17/2018,hiera,3.4.3,y,
|
297
|
+
04/17/2018,facter,3.9.6,y,
|
298
|
+
04/17/2018,puppet-agent,1.10.12,y,
|
299
|
+
04/17/2018,puppet,4.10.11,y,
|
300
|
+
04/17/2018,hiera,3.3.3,y,
|
301
|
+
04/17/2018,facter,3.6.10,y,
|
302
|
+
04/12/2018,puppet-bolt,0.19.0,y,
|
303
|
+
4/4/2018,puppet-bolt,0.18.2,y,
|
304
|
+
3/29/2018,puppet-bolt,0.18.1,y,
|
305
|
+
3/22/2018,puppet-bolt,0.18.0,y,
|
306
|
+
3/21/2018,pdk,1.4.1.2,y,
|
307
|
+
3/20/2018,puppet-agent,5.5.0,y,
|
308
|
+
3/20/2018,marionette-collective,2.12.0,y,
|
309
|
+
3/20/2018,facter,3.11.0,y,
|
310
|
+
3/20/2018,puppet,5.5.0,y,
|
311
|
+
3/20/2018,puppetserver,5.3.0,y,
|
312
|
+
3/20/2018,puppetdb,5.2.1,y,
|
313
|
+
03/14/2018,puppet-bolt,0.17.2,y,
|
314
|
+
03/07/2018,puppet-bolt,0.17.1,y,
|
315
|
+
02/27/2018,pdk,1.4.1.1,y,
|
316
|
+
02/26/2018,pdk,1.4.1.0,y,
|
317
|
+
02/21/2018,pdk,1.4.0.0,y,
|
318
|
+
02/21/2018,Puppet Enterprise,2017.3.5,y,
|
319
|
+
02/13/2018,puppetdb,5.2.0,y,
|
320
|
+
02/13/2018,puppetserver,5.2.0,y,
|
321
|
+
02/13/2018,puppet-agent,5.3.5,y,
|
322
|
+
02/13/2018,facter,3.9.5,y,
|
323
|
+
02/13/2018,puppet,5.3.5,y,
|
324
|
+
02/13/2018,puppet,5.4.0,y,
|
325
|
+
02/13/2018,facter,3.10.0,y,
|
326
|
+
02/13/2018,puppet-agent,5.4.0,y,
|
327
|
+
02/06/2018,razor-server,1.7.1,y,
|
328
|
+
02/06/2018,puppetserver,2.8.1,y,
|
329
|
+
02/05/2018,Puppet Enterprise,2017.3.4,y,
|
330
|
+
02/05/2018,Puppet Enterprise,2016.4.10,y,
|
331
|
+
02/05/2018,puppetdb,5.1.4,y,
|
332
|
+
02/05/2018,puppetserver,5.1.5,y,
|
333
|
+
02/05/2018,puppet-agent,5.3.4,y,
|
334
|
+
02/05/2018,puppet-agent,1.10.10,y,
|
335
|
+
02/05/2018,facter,3.9.4,y,
|
336
|
+
02/05/2018,facter,3.6.9,y,
|
337
|
+
02/05/2018,puppet,5.3.4,y,
|
338
|
+
02/05/2018,puppet,4.10.10,y,
|
339
|
+
01/17/2018,pdk,1.3.2.0,y,
|
340
|
+
01/17/2018,razor-client,1.7.0,y,
|
341
|
+
01/17/2018,razor-server,1.7.0,y,
|
342
|
+
12/20/2017,pdk,1.3.1.0,y,
|
343
|
+
12/18/2017,pdk,1.3.0.0,y,
|
344
|
+
11/07/2017,Puppet Enterprise,2017.3.2,y,
|
345
|
+
11/07/2017,Puppet Enterprise,2017.2.5,y,
|
346
|
+
11/07/2017,Puppet Enterprise,2016.4.9,y,
|
347
|
+
11/06/2017,puppet-agent,1.10.9,y,
|
348
|
+
11/06/2017,puppet,4.10.9,y,
|
349
|
+
11/06/2017,marionette-collective,2.10.6,y,
|
350
|
+
11/06/2017,facter,3.6.8,y,
|
351
|
+
11/06/2017,puppet-agent,5.3.3,y,
|
352
|
+
11/06/2017,puppet,5.3.3,y,
|
353
|
+
11/06/2017,marionette-collective,2.11.4,y,
|
354
|
+
11/06/2017,facter,3.9.3,y,
|
355
|
+
11/06/2017,puppetdb,5.1.3,y,
|
356
|
+
11/06/2017,puppetserver,5.1.4,y,
|
357
|
+
10/26/2017,pdk,1.2.1.0,y,
|
358
|
+
10/17/2017,Puppet Enterprise,2017.3.1,y,
|
359
|
+
10/11/2017,Puppet Enterprise,2017.3.0,y,
|
360
|
+
10/6/2017,pdk,1.2.0.0,y,
|
361
|
+
10/5/2017,puppet-agent,5.3.2,y,
|
362
|
+
10/5/2017,puppet,5.3.2,y,
|
363
|
+
10/2/2017,puppetdb,5.1.1,y,
|
364
|
+
10/2/2017,puppetserver,5.1.3,y,
|
365
|
+
10/2/2017,puppet-agent,5.3.1,y,
|
366
|
+
10/2/2017,puppet,5.3.1,y,
|
367
|
+
10/2/2017,marionette-collective,2.11.3,y,
|
368
|
+
10/2/2017,hiera,3.4.2,y,
|
369
|
+
10/2/2017,facter,3.9.2,y,
|
370
|
+
9/21/2017,Puppet Enterprise,2017.2.4,y,
|
371
|
+
9/21/2017,Puppet Enterprise,2016.4.8,y,
|
372
|
+
9/18/2017,puppet-client-tools,1.2.2,y,
|
373
|
+
9/14/2017,puppet-agent,1.10.8,y,
|
374
|
+
9/14/2017,puppet,4.10.8,y,
|
375
|
+
9/13/2017,pdk,1.1.0.0,y,
|
376
|
+
9/13/2017,puppetdb,5.1.0,y,
|
377
|
+
9/13/2017,puppet-agent,5.2.0,y,
|
378
|
+
9/13/2017,hiera,3.4.1,y,
|
379
|
+
9/13/2017,facter,3.9.0,y,
|
380
|
+
9/13/2017,puppet,5.2.0,y,
|
381
|
+
9/13/2017,puppetserver,5.1.0,y,
|
382
|
+
9/6/2017,puppet-agent,1.10.7,y,
|
383
|
+
9/6/2017,facter,3.6.7,y,
|
384
|
+
9/6/2017,puppet,4.10.7,y,
|
385
|
+
8/29/2017,puppetserver,2.8.0,y,
|
386
|
+
8/17/2017,pdk,1.0.1.0,y,
|
387
|
+
8/17/2017,pdk,1.0.0.2,y,
|
388
|
+
8/17/2017,puppet-agent,5.1.0,y,
|
389
|
+
8/17/2017,puppet,5.1.0,y,
|
390
|
+
8/17/2017,marionette-collective,2.11.2,y,
|
391
|
+
8/17/2017,facter,3.8.0,y,
|
392
|
+
8/15/2017,pdk,1.0.0.1,y,
|
393
|
+
8/9/2017,puppet,4.10.6,y,
|
394
|
+
8/9/2017,puppet-agent,1.10.6,y,
|
395
|
+
8/8/2017,Puppet Enterprise,2017.2.3,y,
|
396
|
+
8/8/2017,Puppet Enterprise,2016.4.7,y,
|
397
|
+
7/26/2017,puppet-agent,1.10.5,y,
|
398
|
+
7/26/2017,puppet,4.10.5,y,
|
399
|
+
7/26/2017,facter,3.6.6,y,
|
400
|
+
7/19/2017,puppet,5.0.1,y,
|
401
|
+
7/19/2017,marionette-collective,2.11.1,y,
|
402
|
+
7/19/2017,facter,3.7.1,y,
|
403
|
+
7/19/2017,puppet-agent,5.0.1,y,
|
404
|
+
6/27/2017,marionette-collective,2.11.0,y,
|
405
|
+
6/27/2017,hiera,3.4.0,y,
|
406
|
+
6/27/2017,facter,3.7.0,y,
|
407
|
+
6/27/2017,puppet,5.0.0,y,
|
408
|
+
6/27/2017,puppet-agent,5.0.0,y,
|
409
|
+
6/27/2017,puppetserver,5.0.0,y,
|
410
|
+
6/27/2017,puppetdb,5.0.1,y,
|
411
|
+
6/22/2017,Puppet Enterprise,2017.2.2,y,
|
412
|
+
6/22/2017,Puppet Enterprise,2016.4.6,y,
|
413
|
+
6/19/2017,puppet-agent,1.10.4,y,
|
414
|
+
6/19/2017,puppet,4.10.4,y,
|
415
|
+
6/15/2017,puppet-agent,1.10.3,y,
|
416
|
+
6/15/2017,puppet,4.10.3,y,
|
417
|
+
6/13/2017,puppet-agent,1.10.2,y,
|
418
|
+
6/13/2017,puppet,4.10.2,y,
|
419
|
+
6/13/2017,marionette-collective,2.10.5,y,
|
420
|
+
6/13/2017,hiera,3.3.2,y,
|
421
|
+
6/13/2017,facter,3.6.5,y,
|
422
|
+
5/11/2017,Puppet Enterprise,2017.2.1,y,
|
423
|
+
5/11/2017,Puppet Enterprise,2016.4.5,y,
|
424
|
+
5/11/2017,puppet-agent,1.10.1,y,
|
425
|
+
5/11/2017,puppet,4.10.1,y,
|
426
|
+
5/11/2017,marionette-collective,2.10.4,y,
|
427
|
+
5/11/2017,facter,3.6.4,y,
|
428
|
+
4/20/2017,puppet-client-tools,1.2.1,y,
|
429
|
+
4/5/2017,puppet-agent,1.10.0,y,
|
430
|
+
4/5/2017,facter,3.6.3,y,
|
431
|
+
4/5/2017,marionette-collective,2.10.3,y,
|
432
|
+
4/5/2017,puppet,4.10.0,y,
|
433
|
+
4/5/2017,puppetdb,4.4.0,y,
|
434
|
+
3/27/2017,puppet-client-tools,1.1.1,y,
|
435
|
+
3/20/2017,Puppet Enterprise,2017.1.1,y,
|
436
|
+
3/14/2017,Puppet Enterprise,2017.1.0,y,
|
437
|
+
3/9/2017,puppetdb,4.3.2,y,
|
438
|
+
3/9/2017,razor-client,1.6.1,y,
|
439
|
+
3/9/2017,razor-server,1.6.1,y,
|
440
|
+
3/9/2017,puppet-agent,1.9.3,y,
|
441
|
+
3/9/2017,marionette-collective,2.10.2,y,
|
442
|
+
3/9/2017,hiera,3.3.1,y,
|
443
|
+
3/9/2017,puppet,4.9.4,y,
|
444
|
+
3/9/2017,facter,3.6.2,y,
|
445
|
+
2/27/2017,puppet-agent,1.9.2,y,
|
446
|
+
2/27/2017,puppet,4.9.3,y,
|
447
|
+
2/10/2017,puppet-agent,1.9.1,y,
|
448
|
+
2/10/2017,marionette-collective,2.10.1,y,
|
449
|
+
2/10/2017,puppet,4.9.2,y,
|
450
|
+
2/10/2017,facter,3.6.1,y,
|
451
|
+
2/7/2017,Puppet Enterprise,2016.5.2,y,
|
452
|
+
2/7/2017,Puppet Enterprise,2016.4.3,y,
|
453
|
+
2/3/2017,puppet,4.9.1,y,
|
454
|
+
2/1/2017,puppet-agent,1.9.0,y,
|
455
|
+
1/31/2017,marionette-collective,2.10.0,y,
|
456
|
+
1/31/2017,hiera,3.3.0,y,
|
457
|
+
1/31/2017,facter,3.6.0,y,
|
458
|
+
1/31/2017,puppet,4.9.0,y,
|
459
|
+
1/19/2017,puppet-agent,1.8.3,y,
|
460
|
+
1/19/2017,facter,3.5.1,y,
|
461
|
+
1/19/2017,puppet,4.8.2,y,
|
462
|
+
1/17/2017,puppet-agent,1.7.2,y,
|
463
|
+
1/17/2017,facter,3.4.2,y,
|
464
|
+
1/17/2017,puppet,4.7.1,y,
|
465
|
+
12/13/2016,Puppet Enterprise,2016.5.1,y,
|
466
|
+
12/6/2016,puppetserver,2.7.2,y,
|
467
|
+
12/5/2016,puppet-agent,1.8.2,y,
|
468
|
+
12/1/2016,puppetdb,4.2.5,y,
|
469
|
+
11/22/2016,puppet,4.8.1,y,
|
470
|
+
11/22/2016,puppet-agent,1.8.1,y,
|
471
|
+
11/21/2016,puppetserver,2.7.1,y,
|
472
|
+
11/09/2016,puppetserver,2.7.0,y,
|
473
|
+
11/07/2016,puppetdb,4.3.0,y,
|
474
|
+
11/03/2016,Puppet Enterprise,2016.4.2,y,
|
475
|
+
11/02/2016,Puppet Enterprise,3.8.7,y,
|
476
|
+
11/01/2016,marionette-collective,2.9.1,y,
|
477
|
+
11/01/2016,hiera,3.2.2,y,
|
478
|
+
11/01/2016,puppet,4.8.0,y,
|
479
|
+
11/01/2016,puppet-agent,1.8.0,y,
|
480
|
+
10/27/2016,puppetdb,4.2.4,y,
|
481
|
+
10/20/2016,razor-server,1.5.0,y,
|
482
|
+
10/20/2016,puppet-agent,1.7.1,y,
|
483
|
+
10/20/2016,Puppet Enterprise,2016.4.0,y,
|
484
|
+
9/22/2016,puppet-agent,1.7.0,y,
|
485
|
+
9/22/2016,puppet,4.7.0,y,
|
486
|
+
9/8/2016,puppetserver,2.6.0,y,
|
487
|
+
9/8/2016,puppetserver,1.2.0,y,
|
488
|
+
9/1/2016,puppet-agent,1.6.2,y,
|
489
|
+
9/1/2016,puppet,4.6.2,y,
|
490
|
+
8/25/2016,puppetdb,4.2.2,y,
|
491
|
+
8/23/2016,puppet-agent,1.6.1,y,
|
492
|
+
8/23/2016,facter,3.4.1,y,
|
493
|
+
8/23/2016,puppet,4.6.1,y,
|
494
|
+
8/17/2016,puppetdb,4.2.1,y,
|
495
|
+
8/11/2016,puppetserver,2.5.0,y,
|
496
|
+
8/10/2016,puppet-agent,1.6.0,y,YANKED
|
497
|
+
8/10/2016,marionette-collective,2.9.0,y,
|
498
|
+
8/10/2016,hiera,3.2.1,y,
|
499
|
+
8/10/2016,puppet,4.6.0,y,YANKED
|
500
|
+
8/10/2016,facter,3.4.0,y,
|
501
|
+
8/9/2016,MCO Puppet Plugin,1.11.1,y,
|
502
|
+
8/9/2016,Puppet Enterprise,2016.2.1,y,
|
503
|
+
8/9/2016,Puppet Enterprise,3.8.6,y,
|
504
|
+
8/8/2016,puppetdb,4.2.0,y,
|
505
|
+
7/20/2016,puppet-client-tools,1.1.0,y,
|
506
|
+
7/20/2016,puppet-agent,1.5.3,y,
|
507
|
+
7/20/2016,marionette-collective,2.8.9,y,
|
508
|
+
7/20/2016,facter,3.3.0,y,
|
509
|
+
7/20/2016,puppet,4.5.3,y,
|
510
|
+
7/6/2016,razor-server,1.4.0,y,
|
511
|
+
6/22/2016,puppetdb,4.1.2,y,
|
512
|
+
6/21/2016,Puppet Enterprise,2016.2.0,y,
|
513
|
+
6/13/2016,puppet-agent,1.5.2,y,
|
514
|
+
6/13/2016,puppet,4.5.2,y,
|
515
|
+
6/1/2016,facter,3.1.8,y,
|
516
|
+
6/1/2016,puppet,4.5.1,y,
|
517
|
+
6/1/2016,puppet-agent,1.5.1,y,
|
518
|
+
5/24/2016,MCO Puppet Plugin,1.11.0,y,
|
519
|
+
5/24/2016,puppetdb,4.1.1,y,PE Only
|
520
|
+
5/19/2016,razor-server,1.3.0,y,
|
521
|
+
5/19/2016,puppetserver,2.4.0,y,
|
522
|
+
5/19/2016,razor-client,1.3.0,y,
|
523
|
+
5/19/2016,puppetdb,4.1.0,y,
|
524
|
+
5/17/2016,puppet-agent,1.5.0,y,
|
525
|
+
5/16/2016,puppet,4.5.0,y,
|
526
|
+
5/16/2016,facter,3.1.7,y,
|
527
|
+
5/11/2016,hiera,3.2.0,y,
|
528
|
+
5/4/2016,Puppet Enterprise,2016.1.2,y,
|
529
|
+
5/4/2016,Puppet Enterprise,3.8.5,y,
|
530
|
+
4/28/2016,puppetdb,4.0.2,y,
|
531
|
+
4/27/2016,puppetserver,2.3.2,y,
|
532
|
+
4/26/2016,puppet-agent,1.4.2,y,
|
533
|
+
4/26/2016,puppet,3.8.7,y,
|
534
|
+
4/22/2016,puppet,4.4.2,y,
|
535
|
+
4/22/2016,hiera,3.1.2,y,
|
536
|
+
4/22/2016,facter,3.1.6,y,
|
537
|
+
4/12/2016,PE Razor Client,1.2.0,y,
|
538
|
+
4/7/2016,puppet-client-tools,1.0.0,y,
|
539
|
+
4/7/2016,Puppet Enterprise,2016.1.1,y,
|
540
|
+
3/24/2016,puppet-agent,1.4.1,y,
|
541
|
+
3/23/2016,puppet,4.4.1,y,
|
542
|
+
3/23/2016,hiera,3.1.1,y,
|
543
|
+
3/22/2016,puppetserver,2.3.1,y,
|
544
|
+
3/17/2016,puppetdb,4.0.0,y,
|
545
|
+
3/16/2016,puppet-agent,1.4.0,y,
|
546
|
+
3/16/2016,puppetserver,2.3.0,y,
|
547
|
+
3/11/2016,puppet,4.4.0,y,
|
548
|
+
3/11/2016,marionette-collective,2.8.8,y,
|
549
|
+
3/11/2016,hiera,3.1.0,y,
|
550
|
+
3/11/2016,facter,3.1.5,y,
|
551
|
+
3/14/2016,puppet-agent,1.3.6,y,
|
552
|
+
3/14/2016,Puppet Enterprise,2015.3.3,y,
|
553
|
+
3/8/2016,razor-server,1.2.0,y,
|
554
|
+
3/8/2016,razor-client,1.2.0,y,
|
555
|
+
2/25/2016,puppetdb,3.2.4,y,
|
556
|
+
2/9/2016,Puppet Enterprise,2015.3.2,y,
|
557
|
+
2/9/2016,Puppet Enterprise,3.8.4,y,
|
558
|
+
2/4/2016,puppet,3.8.6,y,
|
559
|
+
2/3/2016,puppet-agent,1.3.5,y,
|
560
|
+
1/26/2016,facter,2.4.6,y,
|
561
|
+
1/25/2016,puppet-agent,1.3.4,y,
|
562
|
+
1/21/2016,puppet,4.3.2,y,
|
563
|
+
1/21/2016,hiera,3.0.6,y,
|
564
|
+
1/21/2016,facter,3.1.4,y,
|
565
|
+
1/21/2016,facter,2.4.5,y,
|
566
|
+
1/21/2016,puppet,3.8.5,y,
|
567
|
+
1/15/2016,marionette-collective,2.8.7,y,
|
568
|
+
1/11/2016,puppetdb,3.2.3,y,
|
569
|
+
12/29/2015,Puppet Enterprise,2015.3.1,y,
|
570
|
+
12/9/2015,puppetserver,1.1.3,y,
|
571
|
+
12/9/2015,puppetserver,2.2.1,y,
|
572
|
+
12/8/2015,Puppet Enterprise,2015.3.0,y,
|
573
|
+
12/2/2015,puppet-agent,1.3.2,y,
|
574
|
+
12/2/2015,puppetdb,3.2.2,y,
|
575
|
+
11/30/2015,puppet-agent,1.3.1,y,
|
576
|
+
11/24/2015,facter,3.1.3,y,
|
577
|
+
11/24/2015,puppet,4.3.1,y,
|
578
|
+
11/19/2015,puppetserver,2.2.0,y,
|
579
|
+
11/18/2015,puppet-agent,1.3.0,y,
|
580
|
+
11/16/2015,puppet,4.3.0,y,
|
581
|
+
11/16/2015,hiera,3.0.5,y,
|
582
|
+
11/16/2015,facter,3.1.2,y,
|
583
|
+
11/12/2015,razor-server,1.1.0,y,
|
584
|
+
11/12/2015,razor-client,1.1.0,y,
|
585
|
+
11/12/2015,Razor Torquebox,3.1.1.10,y,
|
586
|
+
11/9/2015,puppetdb,3.2.1,y,
|
587
|
+
11/5/2015,Puppet Enterprise,2015.2.3,y,
|
588
|
+
11/5/2015,Puppet Enterprise,3.8.3,y,
|
589
|
+
11/3/2015,puppet,3.8.4,y,
|
590
|
+
10/29/2015,puppet-agent,1.2.7,y,
|
591
|
+
10/29/2015,puppetdb,3.2.0,y,
|
592
|
+
10/28/2015,puppet,4.2.3,y,
|
593
|
+
10/28/2015,hiera,3.0.4,y,
|
594
|
+
10/28/2015,facter,3.1.1,y,
|
595
|
+
10/19/2015,puppetserver,2.1.2,y,
|
596
|
+
10/19/2015,puppetserver,1.1.2,y,
|
597
|
+
10/13/2015,puppetdb,2.3.8,y,
|
598
|
+
10/13/2015,Puppet Enterprise,2015.2.2,y,
|
599
|
+
10/8/2015,puppet-agent,1.2.6,y,
|
600
|
+
9/24/2015,Puppet Enterprise,2015.2.1,y,
|
601
|
+
9/21/2015,puppet,3.8.3,y,
|
602
|
+
9/15/2015,puppet-agent,1.2.5,y,
|
603
|
+
9/15/2015,marionette-collective,2.8.6,y,
|
604
|
+
9/10/2015,puppet-agent,1.2.4,y,
|
605
|
+
9/10/2015,marionette-collective,2.8.5,y,
|
606
|
+
9/10/2015,hiera,3.0.3,y,
|
607
|
+
9/10/2015,facter,3.1.0,y,
|
608
|
+
9/10/2015,puppet,4.2.2,y,
|
609
|
+
8/25/2015,puppetdb,3.1.0,y,
|
610
|
+
8/18/2015,marionette-collective,2.8.3,y,
|
611
|
+
8/13/2015,puppetdb,2.3.7,y,
|
612
|
+
8/6/2015,puppet,3.8.2,y,
|
613
|
+
8/6/2015,Puppet Enterprise,3.8.2,y,
|
614
|
+
8/4/2015,puppetdb,3.0.2,y,
|
615
|
+
7/28/2015,Puppet Enterprise,2015.2.0,y,
|
616
|
+
7/21/2015,puppet-agent,1.2.2,y,
|
617
|
+
7/21/2015,puppet,4.2.1,y,
|
618
|
+
7/21/2015,facter,3.0.2,y,
|
619
|
+
7/16/2015,puppetdb,2.3.6,y,
|
620
|
+
7/14/2015,puppetdb,3.0.1,y,
|
621
|
+
7/9/2015,puppetdb,3.0.0,y,
|
622
|
+
6/25/2015,puppet-agent,1.2.1,y,
|
623
|
+
6/25/2015,facter,3.0.1,y,
|
624
|
+
6/24/2015,puppet-agent,1.2.0,y,
|
625
|
+
6/24/2015,puppet,4.2.0,y,
|
626
|
+
6/24/2015,facter,3.0.0,y,
|
627
|
+
6/24/2015,hiera,3.0.1,y,
|
628
|
+
6/18/2015,puppetserver,1.1.1,y,
|
629
|
+
6/18/2015,Puppet Enterprise,3.8.1,y,
|
630
|
+
6/17/2015,puppetserver,2.1.1,y,
|
631
|
+
6/16/2015,puppet-agent,1.1.1,y,
|
632
|
+
6/11/2015,razor-server,1.0.1,y,
|
633
|
+
6/8/2015,razor-client,1.0.0,y,
|
634
|
+
6/8/2015,razor-server,1.0.0,y,
|
635
|
+
6/4/2015,puppetdb,2.3.5,y,
|
636
|
+
6/3/2015,puppetserver,1.1.0,y,
|
637
|
+
6/2/2015,puppetserver,2.1.0,y,
|
638
|
+
5/26/2015,puppet,3.8.1,y,
|
639
|
+
5/20/2015,puppet-agent,1.1.0,y,
|
640
|
+
5/20/2015,puppet,4.1.0,y,
|
641
|
+
5/20/2015,facter,2.4.4,y,
|
642
|
+
5/19/2015,marionette-collective,2.8.2,y,
|
643
|
+
5/7/2015,puppetdb,2.3.4,y,
|
644
|
+
4/28/2015,PE Razor Client,1.0.0,y,
|
645
|
+
4/28/2015,puppet-agent,1.0.1,y,
|
646
|
+
4/28/2015,Puppet Enterprise,3.8.0,y,
|
647
|
+
4/15/2015,puppetserver,2.0.0,y,
|
648
|
+
4/15/2015,puppet-agent,1.0.0,y,
|
649
|
+
4/14/2015,MCO puppet Plugin,1.10.0,y,
|
650
|
+
4/8/2015,puppet,4.0.0,y,
|
651
|
+
4/7/2015,puppetdb,2.3.3,y,
|
652
|
+
4/3/2015,puppet,4.0.0-rc3,,
|
653
|
+
4/2/2015,hiera,2.0.1,y,
|
654
|
+
4/1/2015,puppetdb,2.3.2,y,
|
655
|
+
4/1/2015,cfacter,0.4.1,y,
|
656
|
+
3/31/2015,puppetdb,2.3.1,y,
|
657
|
+
3/30/2015,puppetserver,1.0.8,y,
|
658
|
+
3/26/2015,MCO nrpe Plugin,3.1.0,y,
|
659
|
+
3/26/2015,puppet,3.7.5,y,
|
660
|
+
3/25/2015,puppet,4.0.0-rc2,,
|
661
|
+
3/25/2015,hiera,2.0.0,y,
|
662
|
+
3/19/2015,puppetdb,2.3.0,y,
|
663
|
+
3/19/2015,MCO Filemgr Plugin,1.1.0,y,
|
664
|
+
3/19/2015,MCO Package Plugin,4.4.0,y,
|
665
|
+
3/12/2015,MCO Shell Plugin,0.0.2,y,
|
666
|
+
3/11/2015,hiera,2.0.0-rc1,,
|
667
|
+
3/11/2015,puppet,4.0.0-rc1,,
|
668
|
+
3/11/2015,marionette-collective,2.8.1,y,
|
669
|
+
3/10/2015,cfacter,0.4.0,,
|
670
|
+
3/9/2015,facter,2.4.2,,
|
671
|
+
2/10/2015,facter,2.4.1,y,
|
672
|
+
2/10/2015,Puppet Enterprise,3.7.2,y,
|
673
|
+
2/4/2015,marionette-collective,2.8.0,y,
|
674
|
+
2/2/2015,cfacter,0.3.0,y,
|
675
|
+
1/27/2015,puppet,3.7.4,y,
|
676
|
+
1/22/2015,facter,2.4.0,y,
|
677
|
+
1/21/2015,geppetto,4.3.1,y,
|
678
|
+
1/15/2015,puppetserver,1.0.2,y,
|
679
|
+
1/13/2015,Razor,0.16.1,y,
|
680
|
+
1/6/2015,Razor,0.16.0,y,
|
681
|
+
12/16/2014,puppetserver,1.0.0,y,
|
682
|
+
12/16/2014,Puppet Enterprise,3.7.1,y,
|
683
|
+
12/2/2014,marionette-collective,2.7.0,y,
|
684
|
+
12/2/2014,MCO Puppet Plugin,1.9.3,y,
|
685
|
+
11/25/2014,MCO Puppet Plugin,1.9.2,y,
|
686
|
+
11/25/2014,MCO ActionPolicy Auth Plugin,2.1.0,y,
|
687
|
+
11/25/2014,MCO sshkey security Plugin,0.5.0,y,
|
688
|
+
11/11/2014,Puppet Enterprise,3.7.0,y,
|
689
|
+
11/10/2014,puppetserver,0.4.0,y,
|
690
|
+
11/4/2014,puppet,3.7.3,y,
|
691
|
+
10/30/2014,facter,2.3.0,y,
|
692
|
+
10/29/2014,marionette-collective,2.6.1,y,
|
693
|
+
10/23/2014,MCO Agent Plugin,1.9.1,y,
|
694
|
+
10/22/2014,puppet,3.7.2,y,
|
695
|
+
10/21/2014,puppetdb,2.2.2,y,
|
696
|
+
10/21/2014,puppetserver,0.3.0,y,
|
697
|
+
10/21/2014,MCO Agent Plugin,1.9.0,y,
|
698
|
+
10/14/2014,puppetdb,2.2.1,y,
|
699
|
+
10/2/2014,puppetserver,0.2.2,y,
|
700
|
+
9/30/2014,geppetto,4.3.0,y,
|
701
|
+
9/29/2014,puppetserver,0.2.1,y,
|
702
|
+
9/22/2014,puppetserver,0.2.0,y,
|
703
|
+
9/9/2014,Puppet Enterprise,3.3.2,y,
|
704
|
+
9/9/2014,Puppet Enterprise,2.8.8,y,
|
705
|
+
9/4/2014,puppet,3.7.0,y,
|
706
|
+
8/28/2014,marionette-collective,2.6.0,y,
|
707
|
+
8/27/2014,puppetdb,2.2.0,y,
|
708
|
+
8/25/2014,facter,2.2.0,y,
|
709
|
+
8/20/2014,MCO Puppet Plugin,1.8.0,y,
|
710
|
+
8/7/2014,Puppet Enterprise,3.3.1,y,
|
711
|
+
7/28/2014,geppetto,4.2.0,y,
|
712
|
+
7/28/2014,MCO ActionPolicy Auth Plugin,2.0.1,y,
|
713
|
+
7/23/2014,MCO Sysctl Data Plugin,2.0.1,y,
|
714
|
+
7/15/2014,MCO Shell Plugin,0.0.1,y,
|
715
|
+
7/15/2014,marionette-collective,2.5.3,y,
|
716
|
+
7/15/2014,Puppet Enterprise,3.3.0,y,
|
717
|
+
7/8/2014,puppetdb,2.1.0,y,
|
718
|
+
6/25/2014,facter,2.1.0,y,
|
719
|
+
6/16/2014,facter,1.7.6,y,
|
720
|
+
6/16/2014,razor-client,0.15.1,y,
|
721
|
+
6/14/2014,MCO Package Plugin,4.3.1,y,
|
722
|
+
6/14/2014,MCO Service Plugin,3.1.3,y,
|
723
|
+
6/14/2014,MCO Filemgr Plugin,1.0.2,y,
|
724
|
+
6/14/2014,MCO Iptables Plugin,3.0.2,y,
|
725
|
+
6/14/2014,MCO NRPE Plugin,3.0.3,y,
|
726
|
+
6/14/2014,MCO Nettest Plugin,3.0.4,y,
|
727
|
+
6/10/2014,Puppet Enterprise,2.8.7,y,
|
728
|
+
6/10/2014,marionette-collective,2.5.2,y,
|
729
|
+
6/10/2014,hiera,1.3.4,y,
|
730
|
+
6/10/2014,facter,2.0.2,y,
|
731
|
+
6/10/2014,puppet,2.7.26,y,
|
732
|
+
6/10/2014,puppet,3.6.2,y,
|
733
|
+
5/28/2014,razor-server,0.15.0,y,
|
734
|
+
5/28/2014,razor-client,0.15.0,y,
|
735
|
+
5/22/2014,hiera,1.3.3,y,
|
736
|
+
5/22/2014,puppet,3.6.1,y,
|
737
|
+
5/15/2014,puppet,3.6.0,y,
|
738
|
+
5/14/2014,marionette-collective,2.5.1,y,
|
739
|
+
5/6/2014,puppetdb,2.0.0,y,
|
740
|
+
5/6/2014,puppet,3.6.0-rc1,,
|
741
|
+
5/1/2014,Puppet Enterprise,3.2.3,y,
|
742
|
+
4/30/2014,puppetdb,2.0.0-rc1,,
|
743
|
+
4/29/2014,MCO Puppet Plugin,1.7.2,y,
|
744
|
+
4/23/2014,MCO Puppet Plugin,1.7.1,y,
|
745
|
+
4/23/2014,marionette-collective,2.5.0,y,
|
746
|
+
4/16/2014,puppet,3.5.1,y,
|
747
|
+
4/15/2014,Puppet Enterprise,3.2.2,y,
|
748
|
+
4/15/2014,Puppet Enterprise,2.8.6,y,
|
749
|
+
4/10/2014,puppet,3.5.1-rc1,,
|
750
|
+
4/10/2014,marionette-collective,2.5.0-rc1,,
|
751
|
+
4/3/2014,puppet,3.5.0,y,
|
752
|
+
4/1/2014,facter,2.0.1,y,
|
753
|
+
3/31/2014,puppet,3.5.0-rc3,,
|
754
|
+
3/28/2014,facter,2.0.1-rc4,,
|
755
|
+
3/27/2014,puppetdb,1.6.3,y,
|
756
|
+
3/25/2014,facter,2.0.1-rc3,,
|
757
|
+
3/24/2014,puppet,3.5.0-rc2,,
|
758
|
+
3/19/2014,Puppet Enterprise,3.2.1,y,
|
759
|
+
3/14/2014,puppet,3.5.0-rc1,,
|
760
|
+
3/12/2014,facter,2.0.1-rc2,,
|
761
|
+
3/4/2014,Puppet Enterprise,3.2.0,y,
|
762
|
+
2/28/2014,facter,2.0.1-rc1,,
|
763
|
+
2/26/2014,hiera,1.3.2,y,
|
764
|
+
2/20/2024,hiera,1.3.2-rc2,,
|
765
|
+
2/19/2014,puppet,3.4.3,y,
|
766
|
+
2/11/2014,Puppet Enterprise,3.1.3,y,
|
767
|
+
2/10/2014,facter,1.7.5,y,
|
768
|
+
2/10/2014,marionette-collective,2.4.1,y,
|
769
|
+
2/6/2014,puppetdb,1.6.2,y,
|
770
|
+
2/3/2014,facter,1.7.5-rc2,,
|
771
|
+
1/30/2014,puppetdb,1.6.0,y,
|
772
|
+
1/30/2014,Puppet Enterprise,2.8.5,y,
|
773
|
+
1/30/2014,Puppet Enterprise,3.1.2,y,
|
774
|
+
1/29/2014,MCO Package Plugin,4.2.2,y,
|
775
|
+
1/23/2014,hiera,1.3.1,y,
|
776
|
+
1/23/2014,marionette-collective,2.4.0,y,
|
777
|
+
1/22/2014,puppetdb,1.6.0-rc3,,
|
778
|
+
1/21/2014,facter,1.7.5-rc1,,
|
779
|
+
1/16/2014,marionette-collective,2.4.0-rc2,,
|
780
|
+
1/14/2014,puppetdb,1.6.0-rc2,,
|
781
|
+
1/13/2014,MCO Package Plugin,4.2.1,y,
|
782
|
+
1/9/2014,marionette-collective,2.4.0-rc1,,
|
783
|
+
1/7/2014,puppetdb,1.6.0-rc1,,
|
784
|
+
1/7/2014,puppet,2.7.25,y,
|
785
|
+
1/6/2014,puppet,3.4.2,y,
|
786
|
+
12/26/2013,puppet,3.4.1,y,
|
787
|
+
12/26/2013,puppet,2.7.24,y,
|
788
|
+
12/26/2013,Puppet Enterprise,3.1.1,y,
|
789
|
+
12/26/2013,Puppet Enterprise,2.8.4,y,
|
790
|
+
12/19/2013,puppet,3.4.0,y,
|
791
|
+
12/17/2013,facter,1.7.4,y,
|
792
|
+
12/12/2013,hiera,1.3.1-rc1,,
|
793
|
+
12/11/2013,puppet,3.4.0-rc2,,
|
794
|
+
12/9/2013,facter,1.7.4-rc1,,
|
795
|
+
12/3/2013,puppet,3.4.0-rc1,,
|
796
|
+
11/21/2013,hiera,1.3.0,y,
|
797
|
+
11/13/2013,puppet,3.3.2,y,
|
798
|
+
11/8/2013,hiera,1.3.0-rc2,,
|
799
|
+
11/7/2013,marionette-collective,2.3.3,y,
|
800
|
+
10/22/2013,puppetdb,1.5.2,y,
|
801
|
+
10/15/2013,Puppet Enterprise,3.1.0,y,
|
802
|
+
10/7/2013,puppet,3.3.1,y,
|
803
|
+
10/3/2013,puppet,3.3.1-rc3,,
|
804
|
+
10/2/2013,puppetdb,1.5.0,y,
|
805
|
+
9/27/2013,puppet,3.3.1-rc2,,
|
806
|
+
9/23/2013,puppet,3.3.1-rc1,,
|
807
|
+
9/15/2013,puppet,3.3.0,y,
|
808
|
+
9/9/2013,puppet,3.3.0-rc3,,
|
809
|
+
9/9/2013,facter,1.7.3,y,
|
810
|
+
9/3/2013,puppet,3.3.0-rc2,,
|
811
|
+
8/28/2013,facter,1.7.3-rc1,,
|
812
|
+
8/15/2013,puppet,2.7.23,y,
|
813
|
+
8/15/2013,puppet,3.2.4,y,
|
814
|
+
8/15/2013,Puppet Enterprise,3.0.1,y,
|
815
|
+
8/15/2013,Puppet Enterprise,2.8.3,y,
|
816
|
+
8/12/2013,puppetdb,1.4.0,y,
|
817
|
+
7/15/2013,puppet,3.2.3,y,
|
818
|
+
7/11/2013,marionette-collective,2.3.2,y,
|
819
|
+
7/10/2013,facter,1.7.2,y,
|
820
|
+
7/6/2013,Puppetlabs_spec_helper,0.2.0,y,
|
821
|
+
6/28/2013,facter,1.7.2-rc1,,
|
822
|
+
6/25/2013,Puppet Enterprise,3.0.0,y,
|
823
|
+
6/18/2013,Puppet Enterprise,2.8.2,y,
|
824
|
+
6/18/2013,puppet,2.7.22,y,
|
825
|
+
6/18/2013,puppet,3.2.2,y,
|
826
|
+
5/31/2013,puppetdb,1.3.2,y,
|
827
|
+
5/22/2013,puppetdb,1.3.1,y,
|
828
|
+
5/22/2013,puppet,3.2.1,y,
|
829
|
+
5/21/2013,marionette-collective,2.2.4,y,
|
830
|
+
5/17/2013,puppet,3.2.1-rc1,,
|
831
|
+
5/13/2013,facter,1.7.1,y,
|
832
|
+
5/13/2013,MCO Puppet Plugin,1.6.0,y,
|
833
|
+
5/7/2013,puppet,3.2.0-rc2,,
|
834
|
+
5/6/2013,puppetdb,1.3.0,y,
|
835
|
+
5/3/2013,facter,1.7.1-rc1,,
|
836
|
+
4/18/2013,hiera,1.2.1,y,
|
837
|
+
4/18/2013,puppet,3.2.0-rc1,,
|
838
|
+
4/17/2013,Puppet Enterprise,2.8.1,y,
|
839
|
+
4/15/2013,facter,1.7.0,y,
|
840
|
+
4/11/2013,hiera,1.2.1-rc1,,
|
841
|
+
4/8/2013,facter,1.7.0-rc2,,
|
842
|
+
4/3/2013,hiera,1.2.0,y,
|
843
|
+
4/3/2013,puppetdb,1.2.0,y,
|
844
|
+
4/1/2013,facter,1.7.0-rc1,,
|
845
|
+
3/29/2013,MCO Nettest Plugin,3.0.2,y,
|
846
|
+
3/28/2013,Puppet Enterprise,2.8.0,y,
|
847
|
+
3/27/2013,hiera,1.2.0-rc3,,
|
848
|
+
3/21/2013,Dashboard,1.2.23,y,
|
849
|
+
3/14/2013,Dashboard,1.2.23-rc3,,
|
850
|
+
3/13/2013,hiera,1.2.0-rc2,,
|
851
|
+
3/13/2013,facter,1.6.18,y,
|
852
|
+
3/12/2013,Puppet Enterprise,2.7.2,y,
|
853
|
+
3/12/2013,Puppet Enterprise,1.2.7,y,
|
854
|
+
3/12/2013,puppet,3.1.1,y,
|
855
|
+
3/12/2013,puppet,2.7.21,y,
|
856
|
+
3/12/2013,puppet,2.6.18,y,
|
857
|
+
3/11/2013,MCO Service Plugin,3.1.2,y,
|
858
|
+
3/7/2013,Dashboard,1.2.23-rc2,,
|
859
|
+
3/5/2013,hiera,1.2.0-rc1,,
|
860
|
+
3/5/2013,MCO Package Plugin,4.2.0,y,
|
861
|
+
3/5/2013,MCO Sysctl Data Plugin,2.0.0,y,
|
862
|
+
3/5/2013,facter,1.6.18-rc1,,
|
863
|
+
3/1/2013,MCO Logstash Audit Plugin,2.0.0,y,
|
864
|
+
3/1/2013,MCO Puppet Plugin,1.5.1,y,
|
865
|
+
2/26/2013,MCO Service Plugin,3.1.1,y,
|
866
|
+
2/22/2013,MCO Puppet Plugin,1.5.0,y,
|
867
|
+
2/21/2013,MCO Service Plugin,3.1.0,y,
|
868
|
+
2/21/2013,MCO Package Plugin,4.1.0,y,
|
869
|
+
2/21/2013,MCO Filemgr Plugin,1.0.1,y,
|
870
|
+
2/20/2013,MCO Facts Plugin,1.0.0,y,
|
871
|
+
2/20/2013,MCO Service Plugin,3.0.2,y,
|
872
|
+
2/20/2013,MCO Puppet Plugin,1.4.1,y,
|
873
|
+
2/20/2013,Razor,0.9.0,y,
|
874
|
+
2/15/2013,Razor Microkernel,0.11.0,y,
|
875
|
+
2/14/2013,marionette-collective,2.3.1,y,
|
876
|
+
2/14/2013,marionette-collective,2.2.3,y,
|
877
|
+
2/14/2013,marionette-collective,2.0.1,y,
|
878
|
+
2/13/2013,Dashboard,1.2.22,y,
|
879
|
+
2/8/2013,Puppetlabs_spec_helper,0.4.1,y,
|
880
|
+
2/8/2013,MCO Puppet Plugin,1.4.0,y,
|
881
|
+
2/7/2013,MCO Puppet Plugin,1.3.0,y,
|
882
|
+
2/6/2013,Puppet Enterprise,2.7.1,y,
|
883
|
+
2/6/2013,Puppet Enterprise,1.2.6,y,
|
884
|
+
2/6/2013,Razor Microkernel,0.10.0,y,
|
885
|
+
2/6/2013,Razor,0.8.0,y,
|
886
|
+
2/5/2013,MCO Package Plugin,4.0.0,y,
|
887
|
+
2/4/2013,puppetdb,1.1.1,y,
|
888
|
+
2/4/2013,puppet,3.1.0,y,
|
889
|
+
2/2/2013,MCO Puppet Plugin,1.2.1,y,
|
890
|
+
1/25/2013,puppet,3.1.0-rc2,,
|
891
|
+
1/25/2013,MCO Puppet Plugin,1.2.0,y,
|
892
|
+
1/24/2013,puppetdb,1.1.0,y,
|
893
|
+
1/23/2013,MCO Service Plugin,3.0.1,y,
|
894
|
+
1/17/2013,puppet,2.7.20-2 (for debian),y,
|
895
|
+
1/17/2013,MCO Iptables Plugin,3.0.1,y,
|
896
|
+
1/17/2013,marionette-collective,2.2.2,y,
|
897
|
+
1/16/2013,MCO NRPE Plugin,3.0.2,y,
|
898
|
+
1/16/2013,MCO Puppet Plugin,1.1.1,y,
|
899
|
+
1/16/2013,Dashboard,1.2.20,y,
|
900
|
+
1/15/2013,Dashboard,1.2.19,y,
|
901
|
+
1/15/2013,MCO Puppet Plugin,1.1.0,y,
|
902
|
+
1/10/2013,puppetdb,1.1.0-rc5,,
|
903
|
+
1/10/2013,MCO Puppet Plugin,1.0.0,y,
|
904
|
+
1/10/2013,marionette-collective,2.3.0,y,
|
905
|
+
1/9/2013,puppet,3.1.0-rc1,,
|
906
|
+
1/8/2013,puppetdb,1.1.0-rc4,,
|
907
|
+
1/8/2013,Dashboard,1.2.18,y,
|
908
|
+
1/4/2013,MCO Iptables Plugin,3.0.0,y,
|
909
|
+
1/4/2013,MCO Filemgr Plugin,1.0.0,y,
|
910
|
+
1/3/2013,Dashboard,1.2.17,y,
|
911
|
+
12/27/2012,hiera,1.1.2,y,
|
912
|
+
12/27/2012,facter,1.6.17,y,
|
913
|
+
12/27/2012,Dashboard,1.2.16,y,
|
914
|
+
12/26/2012,puppet,3.0.2,y,
|
915
|
+
12/26/2012,Puppetlabs_spec_helper,0.4.0,y,
|
916
|
+
12/20/2012,puppetdb,1.0.5,y,
|
917
|
+
12/20/2012,MCO NRPE Plugin,3.0.1,y,
|
918
|
+
12/20/2012,Dashboard,1.2.16-rc1,,
|
919
|
+
12/20/2012,hiera,1.1.2-rc2,,
|
920
|
+
12/19/2012,facter,1.6.17-rc1,,
|
921
|
+
12/19/2012,hiera,1.1.2-rc1,,
|
922
|
+
12/14/2012,Puppetlabs_spec_helper,0.4.0-rc1,,
|
923
|
+
12/14/2012,puppet,3.0.2-rc3,,
|
924
|
+
12/11/2012,puppet,3.0.2-rc2,,
|
925
|
+
12/5/2012,Dashboard,1.2.15,y,
|
926
|
+
12/4/2012,puppet,3.0.2-rc1,,
|
927
|
+
11/30/2012,facter,1.6.16,y,
|
928
|
+
11/28/2012,Dashboard,1.2.15-rc1,,
|
929
|
+
11/28/2012,facter,1.6.15,y,
|
930
|
+
11/27/2012,puppetdb,1.0.4,y,
|
931
|
+
11/21/2012,facter,1.6.15-rc1,,
|
932
|
+
11/20/2012,Puppet Enterprise,2.7.0,y,
|
933
|
+
11/19/2012,puppet,2.7.20,y,
|
934
|
+
11/9/2012,puppet,2.7.20-rc1,,
|
935
|
+
11/7/2012,Dashboard,1.2.14,y,
|
936
|
+
11/5/2012,Dashboard,1.2.13,y,
|
937
|
+
11/1/2012,facter,1.6.14,y,
|
938
|
+
10/31/2012,hiera,1.1.1,y,
|
939
|
+
10/25/2012,facter,1.6.14-rc1,,
|
940
|
+
10/25/2012,puppetdb,1.0.2,y,
|
941
|
+
10/24/2012,Dashboard,1.2.13-rc1,,
|
942
|
+
10/24/2012,hiera,1.1.1-rc1,,
|
943
|
+
10/18/2012,puppet,3.0.1,y,
|
944
|
+
10/17/2012,Puppet Enterprise,1.2.5,y,
|
945
|
+
10/17/2012,marionette-collective,2.2.1,y,
|
946
|
+
10/11/2012,puppet,3.0.1-rc1,,
|
947
|
+
10/10/2012,puppetdb,1.0.1,y,
|
948
|
+
10/10/2012,Puppet Enterprise,2.6.1,y,
|
949
|
+
10/4/2012,Dashboard,1.2.12,y,
|
950
|
+
10/4/2012,hiera,1.1.0,y,
|
951
|
+
10/4/2012,facter,1.6.13,y,
|
952
|
+
9/28/2012,puppet,3.0.0,y,
|
953
|
+
9/28/2012,facter,1.6.12-2,y,
|
954
|
+
9/26/2012,hiera,1.1.0-rc1,,
|
955
|
+
9/26/2012,Dashboard,1.2.12-rc1,,
|
956
|
+
9/26/2012,facter,1.6.13-rc1,,
|
957
|
+
9/25/2012,puppet,3.0.0-rc8,,
|
958
|
+
9/21/2012,puppet,3.0.0-rc7,,
|
959
|
+
9/20/2012,puppetdb,1.0.0,y,
|
960
|
+
9/19/2012,Puppet Enterprise,2.6.0,y,
|
961
|
+
9/18/2012,hiera,1.0.0-2,y,
|
962
|
+
9/13/2012,Dashboard,1.2.11,y,
|
963
|
+
9/13/2012,marionette-collective,2.2.0,y,
|
964
|
+
9/10/2012,puppetdb,0.11.0,y,
|
965
|
+
9/10/2012,puppet,3.0.0-rc6,,
|
966
|
+
9/10/2012,facter,1.6.12,y,
|
967
|
+
9/5/2012,Dashboard,1.2.11-rc1,,
|
968
|
+
8/31/2012,facter,1.6.12-rc2,,
|
969
|
+
8/30/2012,Hiera-Json,0.4.0,y,
|
970
|
+
8/30/2012,hiera,1.0.0,y,
|
971
|
+
8/30/2012,facter,1.6.12-rc1,,
|
972
|
+
8/29/2012,puppet,3.0.0-rc5,,
|
973
|
+
8/28/2012,Hiera Puppet,1.0.0,y,
|
974
|
+
8/24/2012,puppet,3.0.0-rc4,,
|
975
|
+
8/15/2012,Puppetlabs_spec_helper,0.3.0,y,
|
976
|
+
8/14/2012,puppet,2.7.19-rc3,,
|
977
|
+
8/14/2012,Hiera Puppet,1.0.0-rc3,,
|
978
|
+
8/9/2012,puppetdb,0.10.0,y,
|
979
|
+
8/8/2012,facter,1.6.11,y,
|
980
|
+
8/7/2012,puppet,2.7.19-rc2,,
|
981
|
+
8/1/2012,puppet,2.7.19-rc1,,
|
982
|
+
8/1/2012,Puppet Enterprise,2.5.3,y,
|
983
|
+
8/1/2012,facter,1.6.11-rc1,,
|
984
|
+
7/20/2012,Hiera Puppet,1.0.0-rc2,,
|
985
|
+
7/20/2012,hiera,1.0.0-rc4,,
|
986
|
+
7/13/2012,marionette-collective,2.1.1,y,
|
987
|
+
7/12/2012,puppetdb,0.9.2,y,
|
988
|
+
7/12/2012,Dashboard,1.2.10,y,
|
989
|
+
7/10/2012,puppet,2.7.18,y,
|
990
|
+
7/10/2012,puppet,2.6.17,y,
|
991
|
+
7/10/2012,Puppet Enterprise,2.5.2,y,
|
992
|
+
7/5/2012,Dashboard,1.2.10-rc1,,
|
993
|
+
6/19/2012,puppet,2.7.17,y,
|
994
|
+
6/14/2012,puppetdb,0.9.1,y,
|
995
|
+
6/13/2012,Dashboard,1.2.9,y,
|
996
|
+
6/13/2012,puppet,2.7.16,y,
|
997
|
+
6/13/2012,facter,1.6.10,y,
|
998
|
+
6/8/2012,Puppetlabs_spec_helper,0.1.0,y,
|
999
|
+
6/8/2012,marionette-collective,2.1.0,y,
|
1000
|
+
6/6/2012,Dashboard,1.2.9-rc1,,
|
1001
|
+
6/6/2012,puppet,2.7.16-rc1,,
|
1002
|
+
6/6/2012,facter,1.6.10-rc1,,
|
1003
|
+
6/1/2012,puppet,3.0.0-rc3,,
|
1004
|
+
6/1/2012,puppet,2.7.15-rc4,,
|
1005
|
+
5/24/2012,facter,2.0.0-rc4,,
|
1006
|
+
5/22/2012,puppet,3.0.0-rc2,,
|
1007
|
+
5/22/2012,Hiera Puppet,1.0.0-rc1,,
|
1008
|
+
5/22/2012,hiera,1.0.0-rc3,,
|
1009
|
+
5/22/2012,facter,2.0.0-rc3,,
|
1010
|
+
5/21/2012,Dashboard,1.2.8,y,
|
1011
|
+
5/18/2012,puppetdb,0.9.0,y,
|
1012
|
+
5/18/2012,puppet,2.7.15-rc2,,
|
1013
|
+
5/17/2012,puppet,3.0.0-rc1,,
|
1014
|
+
5/17/2012,facter,2.0.0-rc2,,
|
1015
|
+
5/17/2012,facter,1.6.9,y,
|
1016
|
+
5/15/2012,puppet,2.7.15-rc1,,
|
1017
|
+
5/15/2012,facter,2.0.0-rc1,,
|
1018
|
+
5/14/2012,Dashboard,1.2.8-rc2,,
|
1019
|
+
5/14/2012,hiera,1.0.0-rc2,,
|
1020
|
+
5/14/2012,hiera,1.0.0-rc1,,*RC Repos go live - From this point forward we fully package RCs for apt and yum
|
1021
|
+
5/10/2012,facter,1.6.8-rc1,,
|
1022
|
+
5/9/2012,Dashboard,1.2.8-rc1,,
|
1023
|
+
5/2/2012,puppet,2.7.14,y,
|
1024
|
+
4/30/2012,marionette-collective,2.0.0,y,
|
1025
|
+
4/24/2012,puppet,2.7.14-rc3,,
|
1026
|
+
4/23/2012,puppet,2.7.14-rc2,,
|
1027
|
+
4/23/2012,facter,1.6.8,y,
|
1028
|
+
4/17/2012,puppet,2.7.14-rc1,,
|
1029
|
+
4/13/2012,facter,1.6.8-rc1,,
|
1030
|
+
4/11/2012,puppet,2.6.16,y,
|
1031
|
+
4/10/2012,puppet,2.7.13,y,
|
1032
|
+
4/10/2012,puppet,2.6.15,y,
|
1033
|
+
4/10/2012,Puppet Enterprise,2.5.1,y,
|
1034
|
+
3/29/2012,Dashboard,1.2.7,y,
|
1035
|
+
3/29/2012,facter,1.6.7,y,
|
1036
|
+
3/28/2012,Puppet Enterprise,2.5.0,y,
|
1037
|
+
3/22/2012,Dashboard,1.2.7-rc1,,
|
1038
|
+
3/22/2012,facter,1.6.7-rc1,,
|
1039
|
+
3/12/2012,puppet,2.7.12,y,
|
1040
|
+
2/24/2012,puppet,2.7.12-rc1,,
|
1041
|
+
2/23/2012,facter,1.6.11,y,
|
1042
|
+
2/22/2012,puppet,2.7.11,y,
|
1043
|
+
2/22/2012,puppet,2.6.14,y,
|
1044
|
+
2/22/2012,Dashboard,1.2.6,y,
|
1045
|
+
2/22/2012,Puppet Enterprise,2.0.3,y,
|
1046
|
+
2/16/2012,facter,1.6.6-rc2,,
|
1047
|
+
2/15/2012,facter,1.6.6-rc1,,
|
1048
|
+
2/15/2012,Dashboard,1.2.6-rc1,,
|
1049
|
+
2/2/2012,Puppet Enterprise,2.0.2,y,
|
1050
|
+
1/26/2012,Dashboard,1.2.5,y,
|
1051
|
+
1/26/2012,Puppet Enterprise,2.0.1,y,
|
1052
|
+
1/25/2012,facter,1.6.5,y,
|
1053
|
+
1/25/2012,puppet,2.7.10,y,
|
1054
|
+
1/18/2012,Dashboard,1.2.5-rc1,,
|
1055
|
+
1/18/2012,puppet,2.7.10-rc1,,
|
1056
|
+
1/18/2012,facter,1.6.5-rc1,,
|