forked from puppetlabs/puppet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGELOG
19115 lines (14337 loc) · 676 KB
/
CHANGELOG
1
2
3
4
5
6
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
59
60
61
62
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
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
207
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
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
383
384
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
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
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
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
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
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
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
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
993
994
995
996
997
998
999
1000
Fri, 4 Sep 2009 16:22:42 -0700
Luke Kanies <[email protected]>
Adding tests for the #2599 fix
Fri, 4 Sep 2009 16:10:20 -0700
Markus Roberts <[email protected]>
Ticket #2525 don't fail find_manifest on invalid module names
Sat, 5 Sep 2009 09:27:26 +1000
James Turnbull <[email protected]>
Updated permissions on test files
Thu, 3 Sep 2009 22:05:11 -0700
Markus Roberts <[email protected]>
Refactoring tests to reduce code size, increase coverage, and make
Thu, 3 Sep 2009 17:43:24 -0700
Markus Roberts <[email protected]>
This further normalizes the handling of init-style services (including
Tue, 1 Sep 2009 15:11:05 -0700
Markus Roberts <[email protected]>
Combined fix for #2525, #2552 -- RedHat service issues
Fri, 4 Sep 2009 15:47:00 +1000
James Turnbull <[email protected]>
Fixed #2589 - Renamed zfs delete to destroy and added tests
Fri, 4 Sep 2009 13:00:30 -0700
Markus Roberts <[email protected]>
Monkey patch to improve yaml compatibility between ruby versions
Sat, 5 Sep 2009 09:11:45 +1000
James Turnbull <[email protected]>
Fixed typo in parser test
Sat, 5 Sep 2009 09:00:00 +1000
James Turnbull <[email protected]>
Updated Red Hat spec file and RH patches for 0.25.0.
Thu, 3 Sep 2009 17:22:08 -0700
Luke Kanies <[email protected]>
Fixing #2592 - you can escape slashes in regexes
Thu, 3 Sep 2009 17:41:42 -0700
Luke Kanies <[email protected]>
Fixing #2590 - modulepath is not cached inappropriately
Thu, 3 Sep 2009 12:16:50 -0700
John A. Barbuto <[email protected]>
Fixed #2593: puppet init script status command not returning proper exit code
Thu, 3 Sep 2009 14:19:38 -0400
Steven Jenkins <[email protected]>
Update documentation string to reflect actual intent of Puppet::Node::Facts::Rest
Tue, 1 Sep 2009 12:04:45 -0700
Nigel Kersten <[email protected]>
Fixes #2581. Use new 10.6 global launchd overrides file for service status/enabled
Thu, 3 Sep 2009 09:46:55 +1000
James Turnbull <[email protected]>
Fixed Naginator link
Mon, 31 Aug 2009 23:23:57 -0700
Luke Kanies <[email protected]>
Fixing #2582 - / no longer autorequires /
Mon, 31 Aug 2009 23:38:26 -0700
Luke Kanies <[email protected]>
Fixing #2577 - clarifying and demoting the deprecation notice
Mon, 31 Aug 2009 16:01:17 -0700
Luke Kanies <[email protected]>
Fixing #2574 - autoloading finds plugins in modules
Tue, 1 Sep 2009 00:20:15 -0700
Luke Kanies <[email protected]>
The first regex node now matches first
Tue, 1 Sep 2009 00:12:07 -0700
Luke Kanies <[email protected]>
Fixing #2563 - multiple regex nodes now work together
Mon, 31 Aug 2009 15:18:05 +0200
Marc Fournier <[email protected]>
Fixes #724 - false is equivalent to 'ruby -W1'
Sun, 23 Aug 2009 21:30:35 -0400
Todd Zullinger <[email protected]>
Fix parser error output
Sun, 23 Aug 2009 23:54:03 -0700
Luke Kanies <[email protected]>
Fixing #2551 - fixing content changed logs
Sun, 23 Aug 2009 15:45:58 -0700
Markus Roberts <[email protected]>
Fix for test isolation portion of Ticket #2511
Tue, 18 Aug 2009 18:14:19 -0700
Luke Kanies <[email protected]>
Fixing #2549 - autoloading of top-level classes works again
Tue, 18 Aug 2009 18:14:10 -0700
Luke Kanies <[email protected]>
Fixing a heisenbug resulting from a race condition
Wed, 19 Aug 2009 17:49:04 -0700
Luke Kanies <[email protected]>
Fixing #2460 - puppetmasterd can now read the cert and key
Wed, 19 Aug 2009 17:27:35 -0700
Luke Kanies <[email protected]>
Not using the service user in settings when it's unavailable
Wed, 19 Aug 2009 17:26:36 -0700
Luke Kanies <[email protected]>
Explicitly loading all facts in the directory service provider
Wed, 19 Aug 2009 17:04:20 -0700
Luke Kanies <[email protected]>
Adding an 'exists?' delegator from user type to provider
Wed, 19 Aug 2009 15:24:10 -0700
Luke Kanies <[email protected]>
Switching the owner/group settings to use symbolic values
Wed, 19 Aug 2009 14:25:52 -0700
Luke Kanies <[email protected]>
Fixing the yamldir group to be a group instead of user
Wed, 19 Aug 2009 11:31:19 -0700
Luke Kanies <[email protected]>
Moving Setting classes into separate files
Wed, 19 Aug 2009 11:20:14 -0700
Luke Kanies <[email protected]>
Removing chuser on darwin restriction
Wed, 19 Aug 2009 11:17:45 -0700
Luke Kanies <[email protected]>
Fixing a ruby warning in the authstore test
Sun, 23 Aug 2009 12:10:35 -0700
Luke Kanies <[email protected]>
Fixing #2558 - propagating recent fileserving changes
Wed, 19 Aug 2009 17:06:41 -0700
Markus Roberts <[email protected]>
Fixes #2550 Handles case where metadata is nil
Fri, 21 Aug 2009 17:46:57 -0700
Markus Roberts <[email protected]>
Ticket 2559 -- parseonly ignored specified file
Fri, 21 Aug 2009 20:18:32 -0700
John A. Barbuto <[email protected]>
Fixed #2562 - Recognize the usecacheonfailure option again
Tue, 18 Aug 2009 16:00:21 -0700
Luke Kanies <[email protected]>
Refactoring the Module/Environment co-interface
Tue, 18 Aug 2009 15:58:38 -0700
Luke Kanies <[email protected]>
Fixing #1544 - plugins in modules now works again
Tue, 18 Aug 2009 15:57:55 -0700
Luke Kanies <[email protected]>
Adding a global cleanup to the spec_helper
Mon, 17 Aug 2009 21:30:44 -0700
Markus Roberts <[email protected]>
Removed misguided case sensitivity tests
Fri, 14 Aug 2009 13:35:24 -0700
Nigel Kersten <[email protected]>
Fixes #2513. debian service provider now uses invoke-rc.d to determine enabled? status
Fri, 14 Aug 2009 13:52:03 -0700
Luke Kanies <[email protected]>
Fixing fact-missing problem when puppet.conf is reparsed
Fri, 14 Aug 2009 19:41:54 -0700
Markus Roberts <[email protected]>
Fix for #2531; adds tests to confirm problem and related cases,
Thu, 13 Aug 2009 21:10:26 +1000
James Turnbull <[email protected]>
Fixed #2530 - Fixed status setting in the SMF provider
Sat, 15 Aug 2009 00:31:13 +1000
James Turnbull <[email protected]>
Fixed spec typo
Thu, 6 Aug 2009 22:26:27 -0700
Markus Roberts <[email protected]>
Fixes #2493
Thu, 6 Aug 2009 12:36:20 -0400
Todd Zullinger <[email protected]>
conf/redhat/*.init: Fix condrestart/try-restart
Thu, 6 Aug 2009 12:34:56 -0400
Todd Zullinger <[email protected]>
conf/redhat/client.init: Fix #2123, status options on older RHEL
Tue, 11 Aug 2009 21:56:10 +1000
James Turnbull <[email protected]>
Updates to Solaris smf files to reflect new binary locations
Tue, 11 Aug 2009 22:58:34 -0700
Markus Roberts <[email protected]>
Fix #2517 - Stack overflow when CA cert missing
Mon, 10 Aug 2009 23:08:21 +0200
Brice Figureau <[email protected]>
Fix #2516 - Fix format detection when content-type contains charset
Mon, 10 Aug 2009 20:08:18 +0200
Brice Figureau <[email protected]>
Fix #2507 - Add missing integration tests
Fri, 7 Aug 2009 22:45:12 +0200
Brice Figureau <[email protected]>
Fix #2507 - Exported resources were not correctly collected.
Thu, 6 Aug 2009 14:52:16 -0700
Markus Roberts <[email protected]>
Fixes #2503
Mon, 10 Aug 2009 18:24:48 -0600
Andrew Shafer <[email protected]>
Fixes #2360 - Removed annoying log message
Tue, 11 Aug 2009 08:17:42 +1000
James Turnbull <[email protected]>
Fixed #2525 - Wrong method being overridden in Red Hat services
Mon, 10 Aug 2009 04:31:26 +0000
Luke Kanies <[email protected]>
Fixing more tests broken from missing libraries
Mon, 10 Aug 2009 04:20:54 +0000
Luke Kanies <[email protected]>
Fixing ActiveRecord Indirector tests to skip w/out Rails
Mon, 10 Aug 2009 04:10:51 +0000
Luke Kanies <[email protected]>
Fixing #2489 - queue integration tests are skipped w/out json
Sun, 9 Aug 2009 21:03:06 -0700
Luke Kanies <[email protected]>
Fixing #2508 - removing mention of ActiveRecord 2.3
Fri, 7 Aug 2009 17:39:44 -0700
Luke Kanies <[email protected]>
Fixing #2541 - file cache is more resilient to failure
Thu, 6 Aug 2009 22:54:42 -0400
Todd Zullinger <[email protected]>
vim: Mark puppetFunction values as contained
Tue, 4 Aug 2009 14:47:12 +0200
Thomas Bellman <[email protected]>
Add shellquote() function.
Tue, 4 Aug 2009 16:38:06 -0700
Nigel Kersten <[email protected]>
Fixes #2499. Allows execs to specify an array for the returns parameter
Wed, 5 Aug 2009 09:48:40 +1000
James Turnbull <[email protected]>
Updated fix for #2481
Wed, 5 Aug 2009 09:34:51 +1000
James Turnbull <[email protected]>
Revert "Fxied #2481 - Added status and restart overrides for Red Hat service provider."
Wed, 5 Aug 2009 08:21:14 +1000
James Turnbull <[email protected]>
Fixed #2498 - logcheck update
Tue, 4 Aug 2009 15:30:50 +1000
root <[email protected]>
Removed extraneous debugging
Tue, 4 Aug 2009 11:40:59 +1000
James Turnbull <[email protected]>
Updated two more tests
Mon, 3 Aug 2009 16:14:26 -0700
Luke Kanies <[email protected]>
Logs now assume resource params have metadata
Mon, 3 Aug 2009 16:07:30 -0700
Luke Kanies <[email protected]>
Adding metadata delegation from param to resource
Mon, 3 Aug 2009 15:50:44 -0700
Luke Kanies <[email protected]>
Removing unnecessary debug output
Sun, 2 Aug 2009 17:50:54 -0700
Luke Kanies <[email protected]>
Adding integration tests for #2371 (backup refactor)
Sun, 2 Aug 2009 17:51:53 -0700
Luke Kanies <[email protected]>
Adding many tests for #2371, and slightly refactoring
Fri, 24 Jul 2009 12:31:36 -0400
Steven Jenkins <[email protected]>
Fixes for Redmine 2371.
Fri, 31 Jul 2009 17:36:50 -0700
Nigel Kersten <[email protected]>
Fixes #2464, #2457. Deprecate reportserver for report_server. Add report_port setting. Add tests.
Mon, 3 Aug 2009 14:34:20 -0700
Luke Kanies <[email protected]>
Fixing #2484 - "format missing" messages are better
Mon, 3 Aug 2009 11:53:58 -0700
Luke Kanies <[email protected]>
Fixes #2483 - Log only copies metadata from RAL objects
Tue, 4 Aug 2009 07:24:46 +1000
James Turnbull <[email protected]>
Fixed #2486 - Missing require 'monitor' in parser_support.rb
Mon, 3 Aug 2009 23:12:13 +1000
James Turnbull <[email protected]>
Added R.I.Pienaar's extlookup.rb to the ext directory
Mon, 3 Aug 2009 21:36:03 +1000
James Turnbull <[email protected]>
Added example conf/puppet-queue.conf
Mon, 3 Aug 2009 11:34:56 +1000
James Turnbull <[email protected]>
Fxied #2481 - Added status and restart overrides for Red Hat service provider.
Sun, 2 Aug 2009 08:26:04 +0000
Christian Hofstaedtler <[email protected]>
rack: SSL Env vars can be in Request.env or ENV
Fri, 17 Jul 2009 13:31:56 +0200
Christian Hofstaedtler <[email protected]>
rack: don't directly use the forbidden HTTP_CONTENT_TYPE env var (fixes rack specification conformance)
Sun, 2 Aug 2009 08:51:43 -0700
Luke Kanies <[email protected]>
Removing old filebucket test
Sun, 2 Aug 2009 08:49:07 -0700
Luke Kanies <[email protected]>
Cleaning up tests for #2469
Sun, 2 Aug 2009 11:20:30 +0200
Till Maas <[email protected]>
default server in remote filebuckets
Sun, 2 Aug 2009 11:13:07 -0700
Markus Roberts <[email protected]>
Fixes #2444 - Various JSON test failures
Wed, 29 Jul 2009 20:55:24 -0700
Markus Roberts <[email protected]>
Fixed #2294 - Classes sometimes cannot be found
Sat, 1 Aug 2009 12:45:55 -0700
Luke Kanies <[email protected]>
Adding #2477 - puppet can apply provided catalogs
Sun, 2 Aug 2009 07:27:16 +0000
Luke Kanies <[email protected]>
Fixing problems my Feature refactor caused
Sat, 1 Aug 2009 23:58:47 -0700
Luke Kanies <[email protected]>
Fixing ruby warning in definition test
Sun, 2 Aug 2009 17:03:13 +1000
James Turnbull <[email protected]>
Fixed global deprecation error in useradd Unit tests
Sat, 1 Aug 2009 16:39:27 -0700
Luke Kanies <[email protected]>
Adding a test for the Exec type
Sat, 1 Aug 2009 16:29:26 -0700
Luke Kanies <[email protected]>
Speeding a test up through stubbing
Sat, 1 Aug 2009 23:32:57 -0700
Luke Kanies <[email protected]>
Fixing a small test by stubbing instead of mocking
Sat, 1 Aug 2009 23:28:55 -0700
Luke Kanies <[email protected]>
Fixing a test broken by the regex features
Sat, 1 Aug 2009 23:24:54 -0700
Luke Kanies <[email protected]>
Fixing tests broken by caching autoload results
Sat, 1 Aug 2009 23:19:02 -0700
Luke Kanies <[email protected]>
Migrating Handler base tests from test/ to spec/
Sat, 1 Aug 2009 23:11:37 -0700
Luke Kanies <[email protected]>
Migrating Feature tests to spec
Sat, 1 Aug 2009 22:47:32 -0700
Luke Kanies <[email protected]>
Fixing cron test to match new behaviour
Sat, 1 Aug 2009 22:45:46 -0700
Luke Kanies <[email protected]>
Migrating tests to spec and removing an obsolete test
Fri, 24 Jul 2009 00:33:55 -0700
Luke Kanies <[email protected]>
Logging the configuration version we're applying
Fri, 24 Jul 2009 00:27:44 -0700
Luke Kanies <[email protected]>
Configuration version information is now in logs
Thu, 23 Jul 2009 23:52:44 -0700
Luke Kanies <[email protected]>
Adding support for an external catalog version
Thu, 23 Jul 2009 23:49:07 -0700
Luke Kanies <[email protected]>
Cleaning up duplication in another test file
Thu, 23 Jul 2009 23:34:05 -0700
Luke Kanies <[email protected]>
Removing duplication in the test structure
Sun, 2 Aug 2009 02:15:34 +1000
James Turnbull <[email protected]>
Simplified Rakefile and moved tasks to tasks/rake directorya
Tue, 28 Jul 2009 19:37:11 +0200
Brice Figureau <[email protected]>
Implement node matching with regexes
Tue, 28 Jul 2009 19:42:24 +0200
Brice Figureau <[email protected]>
Make sure node are referenced by their names
Tue, 28 Jul 2009 19:56:34 +0200
Brice Figureau <[email protected]>
Enhance selector and case statements to match with regexp
Tue, 28 Jul 2009 19:13:54 +0200
Brice Figureau <[email protected]>
Fix #2033 - Allow regexp in if expression
Tue, 28 Jul 2009 19:11:03 +0200
Brice Figureau <[email protected]>
Add AST::Regex, an AST leaf node representing a regex
Sun, 26 Jul 2009 13:44:35 +0200
Brice Figureau <[email protected]>
Add regexes and regex match operators to the parser
Sun, 26 Jul 2009 13:44:06 +0200
Brice Figureau <[email protected]>
Add regex, match and not match token to the lexer
Fri, 12 Jun 2009 23:24:36 +0200
Brice Figureau <[email protected]>
Allow variable $0 to $9 to be interpolated, if ephemeral
Sun, 26 Jul 2009 14:03:14 +0200
Brice Figureau <[email protected]>
Implement ephemeral scope variables
Thu, 30 Jul 2009 17:46:07 -0700
Eric Sorenson <[email protected]>
Signed-off-by: Eric Sorenson <[email protected]>
Thu, 23 Jul 2009 16:07:05 -0700
Luke Kanies <[email protected]>
Modifying the REST client error to make server errors more clear
Thu, 30 Jul 2009 10:15:46 -0700
Nigel Kersten <[email protected]>
Fixes #2472. Load Facter facts when ralsh is invoked, plus test.
Fri, 31 Jul 2009 22:49:57 +1000
James Turnbull <[email protected]>
Update CHANGELOG.git
Fri, 31 Jul 2009 19:00:40 +1000
James Turnbull <[email protected]>
Fixed ci_spec task for RubyGems 1.3.5
Thu, 30 Jul 2009 09:59:32 -0700
Nigel Kersten <[email protected]>
Fixes #2461. Provide new and old code paths for macosx_productversion_major with deprecation warning
Mon, 27 Jul 2009 15:13:12 -0700
Markus Roberts <[email protected]>
Fixing typo in two tests which caused them to always pass
Thu, 23 Jul 2009 19:10:29 -0700
Luke Kanies <[email protected]>
Fixing #2440 - catalogs can now be compiled on demand
Thu, 23 Jul 2009 18:48:18 -0700
Luke Kanies <[email protected]>
Exiting from app failures instead of raising
Mon, 27 Jul 2009 17:29:20 -0700
Markus Roberts <[email protected]>
Minimal patch to fix #2290 (/tmp permissions)
Wed, 29 Jul 2009 23:08:44 +0200
Marc Fournier <[email protected]>
Fix #2467 - rack: suggest putting puppet/lib at beginning of RUBYLIB search path
Wed, 29 Jul 2009 21:58:02 +0200
Brice Figureau <[email protected]>
Fix #2465 - Default auth information is confusing with no auth.conf
Wed, 29 Jul 2009 21:21:25 +0200
Brice Figureau <[email protected]>
Fix #2459 - puppetdoc added namespace classes as RDoc modules instead of classes
Wed, 29 Jul 2009 20:18:24 +0200
Marc Fournier <[email protected]>
Fix #2429 - vim: class/define/node should only be followed by whitespace
Sat, 25 Jul 2009 12:55:20 +0200
Brice Figureau <[email protected]>
Fix #2448 - fix the broken runit provider and tests
Wed, 29 Jul 2009 07:46:49 +1000
James Turnbull <[email protected]>
Fixed #2405 - Mount parameter "dump" doesn't accept all valid values on FreeBSD
Fri, 24 Jul 2009 17:23:00 -0700
Nigel Kersten <[email protected]>
Fixes #2362. Do not validate users/groups when supplied with numeric uid/gids
Tue, 28 Jul 2009 20:50:01 +0200
Brice Figureau <[email protected]>
Fix #2454 - Definition named after a module don't show in puppetdoc
Tue, 28 Jul 2009 20:47:48 +0200
Brice Figureau <[email protected]>
Fix #2453 - puppetdoc mixes long class names that look alike
Sat, 18 Jul 2009 13:08:57 +0200
Brice Figureau <[email protected]>
Fix #2422 & #2433 - make sure puppetdoc transform AST::Leaf boolean correctly
Thu, 23 Jul 2009 16:51:22 -0700
Luke Kanies <[email protected]>
Fixing #2296 - overlapping recursions work again
Tue, 21 Jul 2009 17:47:28 -0700
Luke Kanies <[email protected]>
Fixing mocks to remove warnings
Tue, 21 Jul 2009 17:38:57 -0700
Luke Kanies <[email protected]>
Fixing #2423 - no more strange dependency cycles
Fri, 24 Jul 2009 09:42:09 -0700
Luke Kanies <[email protected]>
Fixing #2443: Adding debugging guidance to dep cycle errors
Fri, 24 Jul 2009 15:35:34 -0700
Luke Kanies <[email protected]>
Fixing a test broken by changing the default os x package type
Fri, 24 Jul 2009 15:32:48 -0700
Luke Kanies <[email protected]>
Fixing selinux tests broken in the fix for #1963
Fri, 24 Jul 2009 15:26:38 -0700
Luke Kanies <[email protected]>
Fixing #2445 - fixing the mount test mock
Fri, 24 Jul 2009 20:17:32 +1000
James Turnbull <[email protected]>
Minor fix to URL for LDAP nodes documentation
Thu, 23 Jul 2009 22:42:20 -0700
Luke Kanies <[email protected]>
Fixing #2399 - removing client-side rrd graphs
Thu, 23 Jul 2009 16:32:50 -0700
Luke Kanies <[email protected]>
Fixing #2421 - file renaming errors now propagate
Thu, 23 Jul 2009 09:01:24 -0700
Nigel Kersten <[email protected]>
Fixes #2438, get major OS X version from Facter and replace Puppet::Error invocations with fail builtin
Thu, 23 Jul 2009 08:18:13 -0700
Nigel Kersten <[email protected]>
Update install.rb to cope with all OS X versions, not just 10.5
Wed, 15 Jul 2009 16:03:44 -0700
Luke Kanies <[email protected]>
Fixing #2403 - provider specificity is richer and better
Thu, 23 Jul 2009 23:09:34 +0200
Brice Figureau <[email protected]>
Fix #2439 - let puppetdoc use loaded_code
Thu, 23 Jul 2009 14:45:29 +1000
James Turnbull <[email protected]>
Fixed #2436 - Changed ralsh to use Puppet::Type.new and avoid deprecation notice
Thu, 23 Jul 2009 09:15:02 +1000
James Turnbull <[email protected]>
Fixes #2430 - Stock apache2.conf for passenger incorrect
Tue, 21 Jul 2009 09:29:27 -0700
Nigel Kersten <[email protected]>
Make pkgdmg default Darwin provider, make confines consistent on Darwin package providers.
Mon, 20 Jul 2009 07:59:32 -0700
Nigel Kersten <[email protected]>
Convert to using sbindir for OS X packages, clean out previous executables in bindir
Mon, 20 Jul 2009 20:56:23 +0200
Brice Figureau <[email protected]>
Fix #2425 - make sure client can contact CA server with REST
Mon, 20 Jul 2009 23:09:09 +0200
Brice Figureau <[email protected]>
Fix #2424 - take 2, make sure default mounts allow every clients
Thu, 9 Jul 2009 20:59:41 +0200
Brice Figureau <[email protected]>
Fix #2378 and #2391 tests
Sat, 18 Jul 2009 15:34:44 +0200
Brice Figureau <[email protected]>
Fix #2424 - File server can't find module in environment
Sat, 18 Jul 2009 15:24:12 +0200
Brice Figureau <[email protected]>
Fix small typo in the fix for #2394
Sat, 4 Jul 2009 12:49:11 +0200
Brice Figureau <[email protected]>
Feature #2378 - Implement "thin_storeconfigs"
Thu, 9 Jul 2009 20:59:41 +0200
Brice Figureau <[email protected]>
Fix #2391 - Exported resources never make to the storeconfigs db
Thu, 16 Jul 2009 20:53:36 +0200
Brice Figureau <[email protected]>
Fix #2261 - Make sure query string parameters are properly escaped
Thu, 16 Jul 2009 21:28:09 +1000
James Turnbull <[email protected]>
Fixed #579 - puppet should try to clear solaris 10 services in maintenance state
Sat, 11 Jul 2009 01:57:52 -0400
Ricky Zhou <[email protected]>
Fix #1963 - Failing to read /proc/mounts for selinux kills file downloads
Wed, 15 Jul 2009 14:44:31 -0700
Luke Kanies <[email protected]>
Fixing #2245 - provider lists are not lost on type reload
Tue, 16 Jun 2009 13:25:07 -0500
Luke Kanies <[email protected]>
Ruby no longer clobbers puppet autoloading
Mon, 13 Jul 2009 16:18:51 -0700
Nigel Kersten <[email protected]>
deprecate NetInfo providers and examples, remove all NetInfo references and tests.
Mon, 13 Jul 2009 15:22:54 -0700
Sam Livingston-Gray <[email protected]>
Fixed #2410 - default acl logs as info instead of warn.
Mon, 13 Jul 2009 15:18:57 -0700
Sam Livingston-Gray <[email protected]>
Adding test for current auth config warning.
Mon, 13 Jul 2009 15:56:59 -0700
Sam Livingston-Gray <[email protected]>
Fixed #2394 - warn once on module mount deprecation.
Mon, 13 Jul 2009 15:54:16 -0700
Sam Livingston-Gray <[email protected]>
Add test for current module mount deprec warning.
Mon, 6 Jul 2009 14:55:52 -0700
Nigel Kersten <[email protected]>
Fixes #2258,#2257,#2256. Maintain correct type for integers/booleans, allow correct values, and fix rule array handling
Thu, 2 Jul 2009 14:01:39 +1000
James Turnbull <[email protected]>
Added Markdown mode to puppetdoc to output Markdown.
Fri, 10 Jul 2009 12:19:26 +1000
James Turnbull <[email protected]>
Excluded directories from rcov coverage report
Sun, 28 Jun 2009 13:55:50 +0200
Brice Figureau <[email protected]>
Allow boolean value for boolean cli parameter
Sun, 28 Jun 2009 14:20:35 +0200
Brice Figureau <[email protected]>
Fix #2364 - Associates the correct comment to the right statement
Sun, 28 Jun 2009 14:12:59 +0200
Brice Figureau <[email protected]>
Make sure the parser sees the correct line number
Sat, 27 Jun 2009 12:21:30 +0200
Brice Figureau <[email protected]>
Fix #2366 - puppetdoc was parsing classes in the wrong order
Fri, 10 Jul 2009 10:53:20 +1000
James Turnbull <[email protected]>
Added rcov coverage to Spec tests
Wed, 8 Jul 2009 08:44:19 +1000
James Turnbull <[email protected]>
Fixes #2367 - Mongrel::HTTPRequest returns a StringIO object
Sun, 5 Jul 2009 19:45:40 +0200
Brice Figureau <[email protected]>
Fix #2082 - puppetca shouldn't list revoked certificates
Sun, 28 Jun 2009 14:42:04 +0200
Brice Figureau <[email protected]>
Fix #2348 - Allow authstore (and REST auth) to match allow/deny against opaque strings
Sun, 5 Jul 2009 19:38:01 +0200
Brice Figureau <[email protected]>
Fix #2392 - use Content-Type for REST communication
Sun, 5 Jul 2009 18:50:24 +1000
James Turnbull <[email protected]>
Fixed #2293 - Added cron syntax X-Y/Z and '7' for sunday
Thu, 4 Jun 2009 00:33:25 -0500
Luke Kanies <[email protected]>
Switching to LoadedCode from ASTSet
Thu, 4 Jun 2009 00:32:12 -0500
Luke Kanies <[email protected]>
Adding a special class to handle loaded classes/defines/nodes
Thu, 2 Jul 2009 09:45:15 +0200
Christian Hofstaedtler <[email protected]>
Fix #2383, an incompatibility with early ruby 1.8 versions
Thu, 2 Jul 2009 12:47:42 -0700
Jordan Curzon <[email protected]>
Fixing #2238 In some cases blank? is not available on String.
Wed, 1 Jul 2009 21:39:22 -0700
Jordan Curzon <[email protected]>
Fixing #2238 - Deal with nil hash keys from mongrel params
Sun, 28 Jun 2009 15:12:32 +1000
James Turnbull <[email protected]>
Final fix to CI test rakes
Fri, 26 Jun 2009 13:28:44 -0700
Nigel Kersten <[email protected]>
Set ENV['PATH'] to an empty string if non-existent
Sat, 27 Jun 2009 08:58:59 +1000
James Turnbull <[email protected]>
Fix to CI rake tasks
Tue, 16 Jun 2009 13:11:26 -0700
Luke Kanies <[email protected]>
Fixing #2197 - daemontools tests now pass
Sun, 14 Jun 2009 21:47:46 +0200
Stig Sandbeck Mathisen <[email protected]>
Change the diff default output to "unified"
Wed, 24 Jun 2009 21:53:33 -0700
Martin Englund <[email protected]>
Added missing colon to suntab
Wed, 24 Jun 2009 21:27:34 -0700
Martin Englund <[email protected]>
Fixed #2087 and refactored the code that gets the smf service state
Tue, 16 Jun 2009 11:03:46 -0500
Luke Kanies <[email protected]>
Using the logging utilities to clean up module warnings
Tue, 16 Jun 2009 10:57:54 -0500
Luke Kanies <[email protected]>
Fixing #1064 - Deprecating module 'plugins' directories
Tue, 16 Jun 2009 10:40:44 -0500
Luke Kanies <[email protected]>
Removing deprecated :pluginpath setting
Tue, 16 Jun 2009 10:26:38 -0500
Luke Kanies <[email protected]>
Fixing #2094 - filebucket failures are clearer now
Sun, 14 Jun 2009 19:27:30 -0500
Luke Kanies <[email protected]>
Refactoring part of the file/filebucket integration
Sun, 14 Jun 2009 15:40:33 -0500
Luke Kanies <[email protected]>
Adding tests for file/backup behaviour
Fri, 12 Jun 2009 16:13:07 -0700
David Lutterkort <[email protected]>
Fixed pi binary so --meta option works and updated documentation
Fri, 12 Jun 2009 17:41:02 -0500
Luke Kanies <[email protected]>
Fixing #2323 - Modules use environments correctly
Sat, 13 Jun 2009 01:57:26 +1000
James Turnbull <[email protected]>
Merge branch 'tickets/master/2102'
Fri, 12 Jun 2009 23:19:55 +1000
James Turnbull <[email protected]>
Fixed #2102 - Rails feature update fixed for Debian and Ubuntu
Fri, 12 Jun 2009 23:33:21 +1000
James Turnbull <[email protected]>
Fixed #2052 - Added -e option to puppet --help output
Fri, 12 Jun 2009 13:40:15 +0200
Brice Figureau <[email protected]>
Fix #2333 - Make sure lexer skip whitespace on non-token
Fri, 12 Jun 2009 22:39:33 +1000
James Turnbull <[email protected]>
Updated split function and add split function unit tests (courtesy of Thomas Bellman)
Thu, 11 Jun 2009 16:46:27 -0700
David Lutterkort <[email protected]>
* provider/augeas: strip whitespace and ignore blank lines
Fri, 12 Jun 2009 12:21:16 +1000
James Turnbull <[email protected]>
Fixed pi tests
Wed, 10 Jun 2009 18:10:40 +1000
James Turnbull <[email protected]>
Fixed #2222 - Cleanup pi binary options and --help output
Thu, 11 Jun 2009 18:44:56 -0500
Luke Kanies <[email protected]>
Fixing #2329 - puppetqd tests now pass
Thu, 11 Jun 2009 18:36:33 -0500
Luke Kanies <[email protected]>
Cleaning up scope tests a bit
Thu, 11 Jun 2009 18:35:14 -0500
Luke Kanies <[email protected]>
Fixing #2336 - qualified variables only throw warnings
Sat, 6 Jun 2009 12:58:26 +0200
Brice Figureau <[email protected]>
Fix #2246 - take2: make sure we run the rails tag query only when needed
Sat, 6 Jun 2009 12:55:48 +0200
Brice Figureau <[email protected]>
Fix collector specs which were not working
Sat, 6 Jun 2009 12:52:25 +0200
Brice Figureau <[email protected]>
Make sure overriding a tag also produces a tag
Wed, 10 Jun 2009 07:31:05 -0400
Bryan Kearney <[email protected]>
Removed a unit test which tested munging which is no longer done in the type
Wed, 10 Jun 2009 07:02:38 -0400
Bryan Kearney <[email protected]>
Clearn up a parsing error reported by the tests
Mon, 8 Jun 2009 22:54:03 +0200
Marc Fournier <[email protected]>
vim: several improvements + cleanup
Wed, 10 Jun 2009 15:43:38 +1000
James Turnbull <[email protected]>
Fixed #2229 - Red Hat init script error
Sun, 31 May 2009 15:38:14 +0200
Brice Figureau <[email protected]>
Fix #1907 (or sort) - 'require' puppet function
Tue, 9 Jun 2009 07:42:19 -0400
Bryan Kearney <[email protected]>
#2332: Remove trailing slashes from path commands in the plugin
Wed, 3 Jun 2009 17:39:04 -0500
Luke Kanies <[email protected]>
Changing the preferred serialization format to json
Tue, 2 Jun 2009 23:08:52 -0500
Luke Kanies <[email protected]>
Switching Queueing to using JSON instead of YAML
Tue, 2 Jun 2009 17:34:43 -0500
Luke Kanies <[email protected]>
Adding JSON support to Catalogs
Tue, 2 Jun 2009 17:12:38 -0500
Luke Kanies <[email protected]>
Providing JSON support to the Resource class
Tue, 2 Jun 2009 17:11:03 -0500
Luke Kanies <[email protected]>
Adding a JSON utility module for providing Ruby compat
Wed, 6 May 2009 15:22:43 -0700
Luke Kanies <[email protected]>
Adding JSON support to Puppet::Relationship
Wed, 6 May 2009 14:32:25 -0700
Luke Kanies <[email protected]>
Adding a JSON format
Sat, 25 Apr 2009 21:07:20 +0100
Luke Kanies <[email protected]>
Allowing formats to specify the individual method names to use
Sat, 25 Apr 2009 20:55:22 +0100
Luke Kanies <[email protected]>
Allowing formats to specify the methods they require
Sat, 25 Apr 2009 19:55:05 +0100
Luke Kanies <[email protected]>
Adding a "json" feature
Wed, 3 Jun 2009 21:11:16 +0200
Brice Figureau <[email protected]>
Fix some tests who were missing some actions
Wed, 3 Jun 2009 21:10:36 +0200
Brice Figureau <[email protected]>
Make sure virtual and rails query use tags when tag are searched
Wed, 3 Jun 2009 20:09:56 +0200
Brice Figureau <[email protected]>
Make sure resources are tagged with the user tag on the server
Sat, 30 May 2009 20:15:08 +0200
Brice Figureau <[email protected]>
Fix #2246 - Array tagged resources can't be collected or exported
Sat, 6 Jun 2009 09:42:45 +1000
James Turnbull <[email protected]>
Partial fix for #2329
Fri, 5 Jun 2009 12:39:04 -0400
Ian Taylor <[email protected]>
Removed extra whitespace from end of lines
Fri, 5 Jun 2009 12:38:52 -0400
Ian Taylor <[email protected]>
Changed indentation to be more consistent with style guide (4 spaces per level)
Fri, 5 Jun 2009 12:38:35 -0400
Ian Taylor <[email protected]>
Changed tabs to spaces without interfering with indentation or alignment
Sat, 30 May 2009 23:25:08 +0200
Brice Figureau <[email protected]>
Fix #2308 - Mongrel should use X-Forwarded-For
Thu, 4 Jun 2009 11:17:55 +0200
Stéphan Gorget <[email protected]>
Fixes Bug #2324 - Puppetd fails to start without rails
Thu, 4 Jun 2009 20:48:13 +0200
Brice Figureau <[email protected]>
Enhance versioncmp documentation