forked from sodabrew/puppet-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
1056 lines (1042 loc) · 60.7 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
v1.1.1
======
f1b2af4 (#7060) Use absolute paths for cert/private key
1a3e607 maint: Document the `rake reports:schematize` upgrade process
c02527a Fixed #6980 - Updated DEB packaging for 1.1.0
535b69e Fixed #6980 - Updated RPM spec file for Puppet Dashboard
d8374cc maint: Clean sample reports before generating new ones
b2e62cc (#6862) Add a default subject for the mail_patches rake task
e06e4e7 maint: require 'yaml' should be lowercase, works on macs for some reason
148358c (#6532) Add NUM_REPORTS to reports:samples:generate rake task
75768ae (#6533) Add rake task to generate unresponsive nodes
1e924aa (#6532) Add options to sample generator rake task
fd860bf (#6532) Add combination rake task for generating & importing samples
ff1c087 (#6532) Change report generator to a rake task
f0625a9 maint: Print error message when rake:import fails
8d7f875 (#6531) Folded into one file & renamed
c5056e4 (#6531) Add ability to generate events
9d51f70 Branch with report generation utility
e0652ef (#6736) Add require 'thread' to rakefile
062f91c maint: Make sure config/installed_plugins is present before db:migrate
bf2d91f (#6684) Sanitize plugin migration names
v1.1.0
======
e786ea3 Updated CHANGELOG for 1.1.0rc3
2d4d3da Updated VERSION for 1.1.0rc3
29969d7 Updated CHANGELOG for 1.1.0rc2
af1a006 (#6835) Handle malformed facts from Puppet 2.6.7 & storedconfigs
520a02d Update CHANGELOG and version for 1.1.0rc1
3817aa5 maint: Add missing CHANGELOG entries for 1.0.3 to 1.0.4
1fcfc01 (#6736) Provide Mutex, avoid an error.
95f97fb maint: Move inventory section lower on the node page
8629962 (#4403) Do timezone arithmetic outside of the DB in the Status model
614655c Remove dead code from Status model
849f2de Validate the user supplied daily_run_history_length
118962b (#6656) Inventory service is no longer experimental.
90e0624 (#6601) Inventory search uses the new inventory URL
fb55499 (#5711) Change license from GPLv3 to GPLv2
68b335e (#5234) Source of silk icons attributed, per author's license
d3d1528 Maint: Moved logic for identifying inspect reports into a callback.
c2fe255 Maint: removed bogus comments from _report.html.haml
81b8a04 Maint: Moved elements of the report "show" view into callbacks.
2b91838 Maint: Moved elements of the node "show" view into callbacks.
cc95431 Maint: Forbid uninstalled plugins from adding themselves to hooks.
169d275 Maint: Add plug-in install and uninstall rake tasks
d4d0b00 Maint: removed db/schema.rb
5f6614d Maint: Removed some private methods in the report model that are part of baseline functionality.
db663a5 Maint: remove code that belongs in the "baseline" module.
5be1f0f maint: Added log dir to version control
93857f0 Maint: Add puppet plugins to .gitignore
1197e8a Bug fix: renamed each_hook and find_first_hook to *_callback
cbfde3d Remove some forgotten baseline code
2b4f9eb Add some basic hooks for use by future Dashboard plug-ins.
c9ff13e Add a registry for creating hooks and callbacks.
a40e6c9 Oops: Remove report baseline functionality
fd7f799 Rename baseline-diff-report CSS classes and IDs to be expandable-list
161e0da (#6090) Improved auto-selection of "specific baseline".
035aa17 (#6072) Moved baseline inspection link underneath "Recent Inspections"
613a465 (#6095) Render proper error messages when diffing against a baseline that can't be found
ea2368f (#6069) Fixed unique ids in the report group diff view.
3426763 maint: Use new factory_girl syntax to improve a test
1862966 maint: Refresh the vendored gem specifications
79a23c9 maint: replace object_daddy with factory_girl
b6b17e5 maint: Fix a case where the alphabetically first baselines may not appear
f5d0bbe Maint: Moved colorbox.css and image files to be compatible with production environment
989fb4a (#5869) Extract baseline selector into a partial
f666476 (#5869) Add new baseline selector to the node group page
5e0d448 (#5869) Rework the baseline selector for report show page
6fef8e7 (#5869) Add a /reports/baselines action to retrieve baselines
5e7f8cb maint: add a view test to motivate reverting diff expand_all
f5ac259 maint: Added combobox widget, to replace autocomplete plugin
9da052f maint: upgraded jquery-ui to 1.8.9
80c182c Maint: Add JQuery UI animation to expand/collapse widgets.
efefe3d (#6024) Show filebucket popup on diff screen, too
1c3c134 (#6024) Click md5s to popup file bucket contents on reports
f1bed8f maint: Privatize string helper
2112ba1 (#5865) Further improvements and bug fixes to the "search inspect reports" page
d0cda86 Revert "Maint: Removed show_expand_all_link variable"
57589a4 (#5785) Removed some redundancy from report view.
353998f Maint: Removed show_expand_all_link variable
de8ee46 (#5867) Add ability to diff a node_group against a single baseline
7ca4d59 (#5867) Only show baseline comparison UI when there are baselines
43e45d4 (#5867) Order nodes by name on node_group diff-against-baseline page
475c5b5 (#5171) Added a user interface for viewing file content differences
3bd69e9 (#5865) Rework search reports page
4f752f4 (#5866) Get a consolidated report for baseline diffs in a group
1dba2cf (#5866) Split dividing diff into pass and fail into a method
e2c2d9a maint: Fixing bad view logic related to enable_read_only_mode
90d9fe1 maint: Remove unused, user related views
7cd677d (#5880) Renamed diff_summary to diff now that there is a single view for all diffing.
583880f (#5880) Redesigned UI for diffing inspect reports
68657bd (#5865) Search for files differing from the expected checksum
cca236b (#5171) Allow Dashboard to contact a file bucket server for file diffs
ff1d4de Maint: made PuppetHttps.get handle errors
9bf6803 Maint: check that report deserialization fills in change_count
459e588 (#5900) Added missing migration
3caf9e3 (#5900) Added support for the resource status "failed" attribute in reports.
e5d5f9b (#5889) Add pagination to the file search page
7cd5d39 (#5863) Inspect report search defaults to only searching the most recent report
2ca98d4 (#5863) inspect and apply reports are allowed to happen at the same timestamp
025de25 (#5863) rename latest_report to latest_apply_report
34ba970 maint: Add the certs directory to .gitignore
9c71d31 (#5874) Git rid of unused assignments and services tables and models
554cc21 (#5744) Change large columns from string to text
54421c8 (#5864) Display "no results" if a file search returns an empty list.
8d76938 (#5861) Make a enable_read_only_mode setting
48c04cf maint: Remove redundant will_paginate plugin, and just use the gem
4c1a5e8 maint: Fetch metrics all at once on reports index page
862235c maint: Make pagination only appear when needed
bcd85dd (#5540) Inspect reports no longer affect the status of a node
2b4a664 (#5540) Make run time chart only consider 'apply' reports
faa7251 (#5540) Make daily run status chart only consider 'apply' reports
e0ffd79 (#5540) Do not allow 'apply' reports to be made baselines
5b56960 (#5540) Split report tables into inspect and apply
9cd5a5a (#5540) Require a kind for reports
c5af8e5 (#5172) Add link to reports search page
85aedfc (#5172) Add a page for searching reports
3e1e241 (#5172) Add a route and controller action for searching reports by file title/content
f05d3ea (#5172) Add scopes for finding resource_statuses by file title/content
bf00c35 (#5743) Fix problems with supporting report_format 2
890c0b6 (#5743) Added resource_statuses' skipped attribute to the database.
3a151f7 (#5743) Added a test to verify that failed reports don't have a bogus time/total metric added to them when they are transformed from format 1 to 2.
cc17ae0 (#5743) Cleaned up code for detecting status of reports when translating format 1 to format 2.
c3ed82f (#5743) Made the report format 1->2 transformer convert metric names to strings.
360b896 (#5743) Removed tags from resource_events, since they were redundant.
7f25ea8 (#5743) Added audited and historical_value to the schema for reports and updated the report format 1->2 transformer to create these attributes.
bf26cc6 (#5743) Removed source_description from resource_statuses and events in both the report hashes and in the database.
e7f0102 (#5743) Removed resource_type and title from to_hash for format 0 and 1 reports, added to the format 1->2 report transformer.
5677d56 (#5743) Added out_of_sync_count to the schema and to the 1->2 report transformer.
5c3febf (#5743) Tested that the report format 1->2 transformation converts kind correctly.
39331ff (#5743) Tested that the report format 1->2 conversion sets puppet_version properly.
2a7b3c2 (#5743) Test that the format 1->2 report transformation handles configuration_version properly.
a100e8f (#5743) Added to the report version 0->1 transformation to add puppet version information to logs.
d9ec962 (#5743) Created the mixins for interpreting reports in format 2.
fafa062 (#5743) Removed kind, configuration_version, and puppet_version from the hash reperesentation of version 1 reports, since these reports don't contain those attributes.
f0f4bd1 (#5743) Changed resource_statuses to be represented as a hash internally while transforming reports.
73f62c4 (#5743) Added log version to the hash for version 0 and 1 reports.
36f3d3b (#5743) Added resource_status version to the hash for format 1 reports.
4cbe8e5 (#5743) Removed kind, puppet_version, and configuration_version from the hash generated from format 1 reports, since those fields are not present in format 1 reports.
665c67d (#5743) Removed dead code.
089c37e (#5743) Add puppet_version, configuration_version, and kind to the 0->1 report transformer.
4bae7ff (#5743) Remove kind, puppet_version, and configuration_version from the hash generated by 0.25.x reports, since those fields weren't present in 0.25.x reports.
87be419 Prep work for #5743. Test version and status inference.
346d597 Prep for work on #5743. Removed all pending spec tests.
627612c (#5725) Update schema.rb to reflect the removal of the user table
98813af maint: report title is a partial
723b369 (#5174) Colorize diffs
beeb45c (#5174) Unchanged resources appear on diff page
a004a65 (#5174) UI to choose a baseline to diff against
1e72aa4 (#5174) named scope to find baseline reports
88cac05 (#5174) added named scopes to separate apply and inspect reports
5338ace (#5174) add images for baseline and inspect
91f74a1 (#5174) make_baseline action is exposed in UI
9cf443a maint: 2.6 reports should respect @kind if they have it
a9251c4 (#5174) Node has a Baseline Report
52ab849 (#5739) Removing unused vendored plugin resources_controller
50efbba (#5739) Removing unused vendored gem stringex
686115b (#5739) Removing unused vendored gem has_scope
5d6b148 (#5739) Removing unused vendored plugin jrails
ed3285a (#5725) Remove user related code
a5a4140 Fix #5573. Diff now handles missing resources/properties.
5e2e060 (#5493) Use the hash version of reports to create Reports
02ae643 (#5493) Implemented ReportTransformer to bring reports to the latest format
4a959fd (#5493) Added Puppet::Transaction::Report#to_hash method
5d4ad28 maint: Don't recommend development head for installation
4c279f2 (#5535) Rake task to migrate old database yaml to the new reports schema
9343788 (#5543) Fix rake reports:import task
c3232ac maint: group create_from_yaml tests
191d8a9 maint: Remove dead metric view code.
5012cbf maint: Get rid of generate_for usage and method
26f8412 (#5459) Use resource_status.name method
73179fb (#5459) Correctly retrive total_time
dbe0958 (#5459) Fix rake db:seed to use new create_from_yaml
bbd0a39 (#5459) Modify the slow success migration not to be slow
200800b (#5459) Handle errors in report upload
a68cd27 (#5459) Added a test of resource_status.name
b4c6166 (#5459) Added a test of importing 0.25 reports
027c914 (#5459): Make create_from_yaml transactional
b0d651c (#5459) Convert from yaml in the report column to a schema
32717c3 maint: removed unnecessary REPORTS_META constant
fe3db03 maint: Rename failed? and changed? to not conflict with ActiveRecord methods
bd5f4aa maint: remove unused formats for reports/nodes
8b6557a (#5361) Add a new /reports/upload URL, and optionally disable old url
810cd6a (#5170) Screens for diff and diff summary
edca51f (#5174) Add a method to allow reports to be diffed
6ea9305 (#4972) Add Rake task for creating the release tar-balls
271fa63 (#5116) Add spec for PagesController#home
55817ed (#5116) Fixed unreported nodes displaying as recently-reported
2b2a34d (#5116) Add specs for hiddenness
10e79c7 (#5116) Add ability to hide nodes
d0c1fa3 (#5379) Reset SETTINGS to defaults before every test
20beefa maint: Fix HTML table structure
b182574 Feature #5142 Per-Page parameter
796f83b Maint: Removed accidental duplication in Debian packaging
609f7ff (#5116) Clean up specs for NodeController
210d6a2 Added Ubuntu dist to changelog to update packaging
9805a7a Feature #5117: custom_logo_url will replace the Puppet Dashboard logo
9debd16 (#4623) Sort timeline_events in the order they were created
3c48dad (#4623) Define comparator for NodeGroup and NodeClass
d837e01 maint: Suppress ActiveSupport deprecation warnings
2ebcfd2 maint: Remove useless test
001c9c6 (#5120) Disable editing nodes when external node classification is disabled
9f5a081 maint: Remove dead code and cleanup whitespace
e3010ac (#4401) Modified status query to use the Rails time zone
6b2143f (#4601) Fixes table rendering on group/class/node pages
6605aea (#4661) Fix broken specs for shared behaviors
ad7a1c1 (#4661) Classes/groups/nodes are now sorted appropriately
c0080fe (#4605) Renamed date_format setting to datetime_format and added separate date_format.
11e883a (#4475) Fixed documentation for passing environment variables to the external node script
66207f4 maint: Fix setting dependent spec
d2b37e4 (#4605) Fix timezone issues with chart grouping and start
0db778d (#4605) Allow date_format to be set in settings.yml
bc12011 (#4605) Tests for the time_zone setting
047510b (#4605) Added Time zone setting to settings.yml.
8748389 (#3435) Fix broken migration
3f5b59f (#5278) Settings will now individually fallback to values in settings.yml.example
faf7612 (#5278) Remove unused arguments to SettingsReader.read
a00b741 (#5278) Rename settings-sample.yml to setting.yml.example
3d9dda0 (#5278) Add specs for existing settings functionality
47c88f5 Refine #4475 Add environment variables for all external_node settings
1b9639a Feature #4475 Configurable URL in external_node script
fa14898 (#4881) Added daily_run_history_length setting
080912a (#4881) Add a spec for the daily run history partial
3805872 (#3435) Add Node model stub to make migration safer
7f0ab7b (#4474) Add setting to disable node classification
7f4d692 Maint: Move "Local-branch:" info below "---"
37218fb (#4874) Add setting for no_longer_reporting_cutoff
1cff89c (#3435) Reports now have "changed/unchanged" as statuses
07ccbc4 Maint: add "Local-branch:" info to mails sent by "rake mail_patches"
506190f (#4345) Modified README to include workaround for Puppet bug #5244.
6dc4b0c maint: require activesupport from config/environment.rb
806aa69 (#4553) Add log rotation to config/environment.rb
44f27c6 (#4620) Never reported nodes are not considered failing
3b4a218 (#5104) Failed catalog compiles now report as failed
2fd983a (#4636) Add file/line to log and event messages
ba91e32 (#4514) Add table of resource events to report view
3b6061c (#4514) Support total time for 2.6 reports
b9cf649 (#4514) Support config retrieval time for 2.6 reports
5e1ec78 (#4688) Update README to explain SSL configuration
f145e31 (#4688) Add HTTPS support to bin/external_node
5aeb60f maint: rename cert rake tasks to be in the "cert" namespace
fe2cc2b (#4688) Include example SSL settings for apache
4f45405 Maint: Remove delegation from PuppetHttps to Settings
c0cf881 (#4688) Get CA cert and CRL list as part of cert rake tasks
254397f (#3531) Moved node/group methods to NodeGroupGraph
ba93b70 (#3531) Rename "list" methods and remove unused methods/files
cadccc4 (#3531) Don't leave source for params/groups/classes blank
d831eaf (#3531) Remove unused NodeGroupCycleError file
854b7e2 (#3531) Show sources for nodes/group/classes/parameters
7322d79 (#3531) Add helper methods for dealing with the node group graph
35042e0 (#5199) Add setting to disable the inventory service features
1c1c097 (#5133) Document auth.conf security for inventory service
c1e6b88 (#2986) Add node search based on facts
8391463 (#2933) Add missing partial for facts
62409a3 (#2933) Add table of facts to node pages
053319e Tightened up permissions on the public/private key pair that is used to contact the master.
263f2b0 (#4604) Dashboard now has a place for site-specific settings
e193f9f (#5133) Made Dashboard able to fetch node facts from inventory REST API.
a196fd2 (#5149) Added rake tasks to manage certificate and public/private key pair
dfb7b1b (#4880) Fixed validation of new reports
1e43615 [#4541] Route to nodes using id instead of name.
v1.0.4
======
071acf4 Bump VERSION to v1.0.4.
036aea9 (#4513) Fix and improve package task documentation.
e281f7b (#4513) Add support for specifying the signing key id in the deb packaging rake task
b000539 (#4513) Output the full file path to the built packages in the packaging rake tasks.
143c454 (#4513) Update all references to ~/.rpmmacros controlled dirs to use rpm_macro_value
b26d25e (#4513) Add helper to resolve rpm macros for packaging rake tasks
4c6d1bf (#4513) Improve `rake package:deb package:rpm` to not use Rails environment.
60b8eef Bump VERSION to 1.0.4rc2.
4f48308 Updated RELEASE_NOTES for v1.0.4rc2.
dacb309 (#4878) Improve efficiency of database query counting nodes.
ea4355e Fix 'debian/rules' to install the 'bin' directory.
2547e6a Fix 'redhat/puppet-dashboard.init' restart functionality.
54a5d4f Fix 'debian/postinst' symlink handling of 'database.yml'.
b9aee6f Fix debian/init script to not include stray "-dashboard" argument.
9adfac7 Improve .rpm's init script to display 'status' in help
677c9e5 (#4878) Improve efficiency of database query counting nodes.
cfd1203 (#4877) Add rake task to optimize database tables.
252403b (#4876) Document tips for improving performance.
f66ff97 (#4879) Use common method to fetch node in NodesController.
6c12e6c (#4513) Fix permissions on Red Had based systems
d4b1f8d (#4513) Create a working init script for Red Hat based systems
abeab6f (#4513) Update database.yml handling on Debian based systems
bc5187b (#4513) Fix duplicated files in Debian packaging
e87171a Bump RPM spec file's version so that `rake package:rpm` builds.
309ff56 Added RELEASE_NOTES.md to `rake package:rpm` documents.
d795074 Fixed RPM spec file to use more compatible way of detecting user.
eafdabc Fixed `rake package:create_rpmmacros` path declarations.
28cc0b1 Add documentation for `rake package:rpm` UNSIGNED option.
c0d4e33 Correct typo in `rake package;deb` instructions.
a72026f [#4513] Advertise UNSIGNED "option" to package rake tasks, on build failure.
e166c69 (#4825) Fix raw "favicon.ico" URL, which breaks if app is mounted in subpath.
c34304c (#4811) Fix raw URLs, which break when web app is mounted in a subpath.
24c1abc [#4513] Add default file and init script for Debian
2b54124 [#4513] Clean up README_PACKAGES.markdown
aa5bc45 [#4513] Update RPM .spec file to add missing installation files
7560242 [#4513] Minor clean-ups to RPM .spec file
88fd0a7 [#4513] Update RPM .spec to mark config/database.yml as a config file.
4ed8ba6 [#4513] Update Red Hat init script to start as puppet-dashboard user
3dfa63e [#4513] Update RPM .spec to create a user & group, and set proper permissions.
05e1167 [#4513] Update RPM .spec install section to use $RPM_BUILD_ROOT
94ed2ee [#4513] Update Requires in RPM .spec
3e03caf [#4513] Add tasks for RPM packaging.
a452733 [#4513] Move clean working-tree check into "helper" task, and clean it up.
9384bc3 [#4357] Add reports database index to improve performance.
d451af4 [#4801] Fix exception in node's report listing.
406152b Remove unused vendored gem.
5a4e606 Fixed #4757 - Added rake mail_patches task to dashboard
1dcd751 [#4794] Fix timezone shown in views.
7046596 [#4791] Add a rake task to require the ci_reporter gem
453ca3c Bump VERSION to 1.0.4rc1
4b3fa06 Fix typos in RELEASE_NOTES.
efc8921 [#4766] Replace 'reductivelabs' with 'puppetlabs' in documentation.
aebebf1 [#4767] Fix migrations for Ruby 1.8.5 and earlier.
abb87cf [#4562] Updated release notes to include recently-merged changes.
131b0d8 [#4764] Add example "libdir" usage to the documentation.
9b21691 Remove spurious trailing whitespace in spec tests.
43722c7 [#4663] Change all `before` blocks in spec tests to be `before :each do`
b04a886 [#4679] Remove duplicate group, and class memberships.
32efb9d [#4639] Improve README's suggested shell and gem.
a931797 Standardize whitespace used for indentation, and wrap longer code lines
1e1dce8 [#4639] Update rubygems installation instructions to be sh compatible.
027cce9 [#4734] Update instructions for enabling EPEL on CentOS 5
cd1167c Fix failing specs for Node{Group,Class}#show views.
ac47b51 [#4513] Fix ".deb" packaging and docs. Add `rake package:deb` task.
fa12363 Remove unwanted ".bak" and "~" files.
7044687 [#4677] Add "Report:" header prefix and realign "Node:".
b82826a [#4677] Add resource type to header in #show for Node, NodeClass, and NodeGroup
c38b94a [#4662] Add Jacob Helwig to contributor list.
f1c1256 [#3470] Fix Node#available_node_classes specs by clearing database.
c5fb09b [#3470] Improve specs by describing number of items expected.
08f6ce5 [#3470] Update token autocompletion interface to match previous styling.
5f8110f [#3470] Re-add support for node_class_names & node_group_names to NodeClass, and Node
e66845f [#3470] Add find_from_form_* class methods to NodeClass & NodeGroup
f6561f9 [#3470] Move class/group validation for Node, and NodeGroup to before_validation
cefc5e6 [#3470] Remove unused fcbkcomplete JavaScript, and CSS
73ddfa5 [#3470] Switch class, and group tokenizer/autocomplete to use new JavaScript library.
ea44390 [#3470] Add a view helper to tokenize input fields
9d2ced9 [#3470] Change default CSS classes for jquery.tokeninput.js
1094127 [#3470] Tokenizer: Select current token on blur
dd60488 [#3470] Tokenizer: Add "space" to the list of keys to select token
d701b6f [#3470] Tokenizer: Use jQuery's "each", instead of "for(i in foo){...}"
b6268cd [#3470] Whitesace fixups for jquery.tokeninput.js
8524ef8 [#3470] Add new tokenizer JavaScript for use with classes and groups.
15c6267 [#3470] Add jQuery UI library in preparation for switching autocomplete librarires.
3000d66 [#4574] Fixed spec to reflect changes to external node errors
bf8a376 [#4574] The external node tool will now receive and print error messages
e40c094 [#4618] Refactor Node#assign_last_report and improve related spec.
fcf9b83 [#4625] Fix NodeClassesController#index view to only show footer once.
0561eed [#4625] Reformat code, add whitespace and include more inline documentation.
cc39ba7 Add setup and usage documentation to watchr.rb.example.
54471b4 Add a sample watchr file for continuous testing.
8124c51 [#4625] Moved pagination from views into controllers
e0adddf Add an example rcov.opts file
63474b4 [#4618] Deleting the most recent report for a node now finds the previous report
eeac9ee [#4622] Remove unused Node#environment method.
a3a54f0 [#4621] Remove unnecessary TimelineEvent query on homepage.
e50c7f3 [#4617] Fix label on node run time graph
d042489 [#4578] Add specs describing how to show nodes that don't exist.
48de593 [#4578] Node classifier properly returns an empty node when node not found
fcf28ae Updated packaging information
e4e02d1 [#4571] Rename incorrectly-named views and specs. Improve and add view specs.
5c17c40 [#4571] Improve helpers for displaying "no matches" messages.
b4a485f [#4503] Class names are allowed to start with a number
f272f01 [#4571] Fix and improve views.
60c14a0 Updated VERSION and RELEASE_NOTES for r1.0.4.
fba9b23 [#4503] Fix NodeClass#name validation regexp to be more like Puppet's.
5045a12 [#4520] Fix letter case of sidebar buttons to: "Add class" and "Add group".
a7e8f21 [#4403] Fixed missing space in Status::by_interval SQL query.
698b009 [#4543] Added error messages to class new/edit forms
d7c7e6e [#4543] Node classes now use their edit form
2b94287 [#4403] Refactor and improve documentation for Status::by_interval.
fa635e8 [#4511] Improve nodes/edit view spec.
1914ba5 [#4403] Run failure chart now shows the correct reports
7f7f45d [#4531] Reports now use "time" where they used "created_at"
9a431ed [#4511] Changing a node name to empty no longer crashes the page
1f15007 [#4187] Remove unnecessary #return statements.
d4e327f [#4503] Fix NodeClass validation message and specs.
2ac5ff4 maint: Spell check, formatting and clarifications of README.
dcbf778 [#4470] Improve `rake reports:prune` usage message.
a0c254c [#4187] Improve validation messages and clarify validation return values.
779ec92 [#3298] Add warnings explaining truncation bug and how to re-import reports.
7cf6e9e [#4470] Fix which reports to prune, improve documentation and refactor.
000c79a [#4470] Make 'rake reports:prune' friendlier
a912cf6 [#4008] Fixed group parameter inheritance
3baf3f6 maint: More README changes, mostly formatting, based on Igal's feedback
9ada6bd maint: Making README style changes based on feedback form Igal
1197fa7 [#4455] Document ownership requirements for the install directory
3895f1e [#4469] Add documentation for upgrading
69acf11 [#4492] Documentation to find the log files to help with debugging
55d4ece [#4470] Documentation for pruning reports
341dba5 Change index on reports(node_id) to reports(node_id,success)
1cef2a5 Remove unnecessary report loading from pages controller
caa9f0e [#4503] Make the class name regex more like puppet's
4951ad5 [#3298] Add a line to the migration to remove truncated reports
9b630ab [#3298] Test that you can have large report field without truncation
c96357e [#3298] Increase the size of the reports.report column from 64k to 16mb
8862372 [#4421] Delete reports.yml from version control
6766d0e [#4417] .gitignore should have "public/stylesheets/all.css", not all.js
6cd4e1a [#4187] Group graphs containing the same group twice aren't considered cyclic
c501bea [#4503] New class allows a name with hyphens
ee0a6c1 [#3820] Cleanup memberships when objects are deleted
a45f54b [Bug #4451] Fix node search when :current and :successful aren't needed.
94432c6 maint: Updated release notes for 1.0.3
001df28 maint: Update CHANGELOG for 1.0.3
3cbc8dc [Bug #4329] Updated documentation with operating system-specific installation instructions.
f7f5b83 Fixed exception in nodes/_form partial, it now uses :object or :collection as appropriate.
6d0d39a Fixed unwanted dependency on 'rake' gem, because 'rake' is often installed outside of RubyGems.
c07300d maint: Redo report metrics to always put total at the bottom
e507743 maint: Make report metric totals last and bold
bffdd9e maint: CSS improved button spacing, hover style
1e10b83 maint: Fixed display of empty entries
daba9de Updated RELEASE NOTES regarding Puppet 2.6 reports.
616c681 [#4332] Using lighter yellow
f85d1b3 [#4332] Use 2x default Puppet Run frequency for no longer reporting cutoff
0a6e484 [#4332] Removing facets and replacing #ergo and #to_b
eaf6491 [#4375] Added instructions for setting up the database using both a `rake` task and `mysql` console.
65eb170 [#4332] Don't query Node.all twice, use #each
fddaeb8 Updated RELEASE_NOTES.
d03b130 Fixed '.timeline .date' CSS style to be wide enough for larger dates.
f096ab7 Updated specs.
59cfd0b Added CSS styles for colorizing log entries by their severity level.
d10378f Improved '.section.error' and '.section.warning' CSS styles to reduce gap below the text.
c80cb17 Added '.nowrap' style to easily stop text wrapping.
5854d28 Improved '.pagination' CSS style by moving it to right side where it's more visible.
ae65cb4 Fixed '.actionbar' CSS style to have a flat top and rounded bottom.
fe45ac2 Added 'body item:last-child' style to eliminate big gap below these sections.
4b3308f Added '#sidebar .count.failure' CSS style to highlight errors in sidebar.
c0d09a4 Improved '#sidebar .active' CSS style to be more visible.
40cb05b Fixed '.header h2.half' CSS style to shrink to its content, rather than cause unwanted wrapping on narrow screens.
8939a30 [Bug #4332] Fixed node categories, failing nodes from being displayed forever, many performance problems.
2d9ffcf Extracted Node::NO_LONGER_REPORTING_CUTOFF as constant.
4cbb3ac Improved nodes/show by adding node_status_icon.
dc70d65 [Bug #4374] Added pagination to node_classes#index, node_groups#index, reports#index and nodes/_nodes.
fde96e6 Fixed header for nodes listings: removed it from nodes/nodes partial, added specific ones to home and nodes/index.
73cc839 Fixed statuses/run_failure partial to get only data it needs, simplified invocations.
a537ef4 Switched date-time formatting to international form.
55bf1eb Improved puppet/util/logs/_log partial by adding classes to colorize logs by their level.
dec66c0 Fixed puppet/util/logs/_log partial exceptions when rendering time, its improved formatting.
a86e5fb Improved reports/_report partial to sort logs by level and specified location associated partial.
dc7a2ec Removed unused checkboxes.
1e3ccab Fixed .clear and 'clear: both' CSS styles by unifying them to the same valid markup.
e27ebe7 Normalized titles, their case and contents.
ba9aacf Removed pagination from nodes, groups, classes and reports controllers.
e8af364 Added NodeClass::with_nodes_count and NodeGroup::with_nodes_count.
ebb1225 Fixed exceptions and messages shown if missing entries on the groups, classes and reports listings.
1661570 Added "Reports" to the main menu.
16c4949 Fixed Status::by_interval exceptions when given :start or multiple options.
b990cee Added Status::INTERVAL_CUTOFF constant to specify how much status information to graph.
e1c3e3d Removed unused "collection" and "sidebar" partials.
c6257d7 Added ApplicationHelper#paginate_scope to return a paginated scope based on current #items_per_page settings.
e175547 Added ApplicationHelper#items_per_page to return number of items on a page for pagination.
bb5e22d Added ApplicationHelper#counter_class to return CSS class used to colorize a sidebar item as an error.
8c47fae Improved #report_status_icon to show errors, and added #node_status_icon to show icon for a node.
1cb3e92 Improved ApplicationHelper#pagination_for to optionally display a "More" link.
cf3ee73 Fixed chart width to fit on screen, for real this time.
7811962 MIGRATION: Added :success and :last_report columns to Node and improved Report to set these.
b46af2b Added vendored 'facets' gem
b6f04c2 Updated Red Hat spec file
2469892 Added updated packaging information for Red Hat and Debian
v1.0.3
======
3cbc8dc [Bug #4329] Updated documentation with operating system-specific installation instructions.
f7f5b83 Fixed exception in nodes/_form partial, it now uses :object or :collection as appropriate.
6d0d39a Fixed unwanted dependency on 'rake' gem, because 'rake' is often installed outside of RubyGems.
c07300d maint: Redo report metrics to always put total at the bottom
e507743 maint: Make report metric totals last and bold
bffdd9e maint: CSS improved button spacing, hover style
1e10b83 maint: Fixed display of empty entries
daba9de Updated RELEASE NOTES regarding Puppet 2.6 reports.
616c681 [#4332] Using lighter yellow
f85d1b3 [#4332] Use 2x default Puppet Run frequency for no longer reporting cutoff
0a6e484 [#4332] Removing facets and replacing #ergo and #to_b
eaf6491 [#4375] Added instructions for setting up the database using both a `rake` task and `mysql` console.
65eb170 [#4332] Don't query Node.all twice, use #each
fddaeb8 Updated RELEASE_NOTES.
d03b130 Fixed '.timeline .date' CSS style to be wide enough for larger dates.
f096ab7 Updated specs.
59cfd0b Added CSS styles for colorizing log entries by their severity level.
d10378f Improved '.section.error' and '.section.warning' CSS styles to reduce gap below the text.
c80cb17 Added '.nowrap' style to easily stop text wrapping.
5854d28 Improved '.pagination' CSS style by moving it to right side where it's more visible.
ae65cb4 Fixed '.actionbar' CSS style to have a flat top and rounded bottom.
fe45ac2 Added 'body item:last-child' style to eliminate big gap below these sections.
4b3308f Added '#sidebar .count.failure' CSS style to highlight errors in sidebar.
c0d09a4 Improved '#sidebar .active' CSS style to be more visible.
40cb05b Fixed '.header h2.half' CSS style to shrink to its content, rather than cause unwanted wrapping on narrow screens.
8939a30 [Bug #4332] Fixed node categories, failing nodes from being displayed forever, many performance problems.
2d9ffcf Extracted Node::NO_LONGER_REPORTING_CUTOFF as constant.
4cbb3ac Improved nodes/show by adding node_status_icon.
dc70d65 [Bug #4374] Added pagination to node_classes#index, node_groups#index, reports#index and nodes/_nodes.
fde96e6 Fixed header for nodes listings: removed it from nodes/nodes partial, added specific ones to home and nodes/index.
73cc839 Fixed statuses/run_failure partial to get only data it needs, simplified invocations.
a537ef4 Switched date-time formatting to international form.
55bf1eb Improved puppet/util/logs/_log partial by adding classes to colorize logs by their level.
dec66c0 Fixed puppet/util/logs/_log partial exceptions when rendering time, its improved formatting.
a86e5fb Improved reports/_report partial to sort logs by level and specified location associated partial.
dc7a2ec Removed unused checkboxes.
1e3ccab Fixed .clear and 'clear: both' CSS styles by unifying them to the same valid markup.
e27ebe7 Normalized titles, their case and contents.
ba9aacf Removed pagination from nodes, groups, classes and reports controllers.
e8af364 Added NodeClass::with_nodes_count and NodeGroup::with_nodes_count.
ebb1225 Fixed exceptions and messages shown if missing entries on the groups, classes and reports listings.
1661570 Added "Reports" to the main menu.
16c4949 Fixed Status::by_interval exceptions when given :start or multiple options.
b990cee Added Status::INTERVAL_CUTOFF constant to specify how much status information to graph.
e1c3e3d Removed unused "collection" and "sidebar" partials.
c6257d7 Added ApplicationHelper#paginate_scope to return a paginated scope based on current #items_per_page settings.
e175547 Added ApplicationHelper#items_per_page to return number of items on a page for pagination.
bb5e22d Added ApplicationHelper#counter_class to return CSS class used to colorize a sidebar item as an error.
8c47fae Improved #report_status_icon to show errors, and added #node_status_icon to show icon for a node.
1cb3e92 Improved ApplicationHelper#pagination_for to optionally display a "More" link.
cf3ee73 Fixed chart width to fit on screen, for real this time.
7811962 MIGRATION: Added :success and :last_report columns to Node and improved Report to set these.
b46af2b Added vendored 'facets' gem
64cf395 maint: Fix button size for search
b01b55c maint: Add flash to the layout and update css
92a0785 maint: Clarify wording in README
b7f4b8a maint: Fix indention of code block in README
b8d57df [#4306] Move report processor to ext/puppet
819b1f4 [#4358] Added start-up check to ensure database is running the latest schema.
04453b6 Refactored .gitignore: sorted contents, squashed duplicates and clarified paths.
0289778 Updated .gitignore to add more entries.
313096b Removed unwanted 'taglist' file.
f5d4e55 [#4324] Update report handling for 2.6.0 reports
b619e5c [Bug #4341] Fixed autocomplete styling so that these dropdowns are more visible.
a617aa9 [Bug #4320] [Bug #4331] Reduced minimum width of content body so it will fit on smaller screens.
0b35618 [#4330] Concatenated .js and .css files to speed up loading.
7657a00 [Bug #4323] Fixed formatting of h2 headers in release notes.
2b55e31 maint: Fixing CHANGELOG by removing duplicate version tags
5bfbbc2 Added release note about fixing chart rendering issues.
9c9cfeb [Bug #4320] Fixed run-time chart rendering problems.
4ed02f0 [#4316] Added version and release notes for v1.0.3, and fixed them for v1.0.2.
cd43700 [#4317] Added `rake db:raw:dump` and `rake db:raw:restore` tasks, and documentation.
5614372 [#4318] Added `rake spec:rcov:save` to save code coverage and `rake spec:rcov:diff` to view differences.
388dd91 [#Bug 4307] Fixed unwanted dependency on JSON gem in specs.
de5bcfd [Bug #4305] Fixed documentation.
7c2f79c [#4309] Ensure that reports processing handles Puppet 0.25.x and 2.6.x
2e27d7c maint: Ignoring local Makefile
236b07d maint: Remove code that depends on puppet gem being installed
dbdba7b maint: Status icons in tables alligned middle again
02a679d Improved nodes page by only displaying "More..." if there are more reports.
e53b264 Improved styling of node's "Dashboard Activity" log.
57ecd76 Improved metric partial to sort values, display only seconds as floating point, and add label to seconds.
7ca826f Improved reports page by moving logs up and sorting metric sections.
9c136c0 Improved report page to show log first and sort the metric sections.
b869cfc Improved tables.css by aligning text, specifying width and tightening padding.
01c632e Improved typography.css by making h3 tag larger.
e4132f8 Wrote spec for ApplicationHelper#show.
5a08679 Updated views to use new #report_status_* helpers.
6fa3c45 Added ApplicationHelper#report_status_icon and #report_status_td helpers.
ff5c4ff Improved HTML BODY tag by adding classes based on controller and action.
v1.0.2
======
ab2e031 maint: Add v1.0.2 to RELEASE_NOTES
bbe0d9d maint: Update CHANGELOG for v1.0.2
798575b maint: Add missing warning.png, minor CSS tweak for message box icons
1264997 maint: Minor update to README's Reports section
4a5a0a4 [Bug #4283] Hid "Register" and "Log in" links because authorization isn't implemented yet.
1565e93 [Bug #4170] Fixed warnings to look like errors.
7c38593 [Bug #4272] Fixed errors in documentation.
11f369a [Feature #4264] Added a release notes page.
c297715 [Bug #4282] Fixed warnings produced by missing haml-3.0.13 gem specification.
2ae0bad GEM: Added vendored Maruku 0.6.0 library for rendering release notes Markdown.
7d20359 [Fixed #4281] Renamed REALEASE_NOTES.md to RELEASE_NOTES.md
f896b82 [Fixed #4271] Added missing "favicon.ico", the lack of which was filling logs with errors.
fcbffd3 [Bug #4280] Fixed chart formatting.
4f210cf [Fixed #4276] Fixed exception on the node reports page, caused by unqualified path to partial.
3d55aeb [Fixed #4265] Chart headers displayed twice or none at all.
v1.0.1
======
4be5dcb maint: Fix filename typo
916ecc7 maint: Adding release notes
f18dddd maint: Updating CHANGELOG for v1.0.1
aabe1c3 [#4216] Successful and failed scopes only return appropriate nodes
3646ff3 maint: Updating documentation (with installation instructions)
63ba904 [Bug #4163] [Bug #4166] [Bug #4169] Improved installation instructions.
d8a2e23 [#3839] Add legends and labels to node charts
7e66479 maint: Use status icons for report tables
5345d41 [#4116] Refactor reports index to use report metric accessors
27c7e54 [#3535] Refactor report metric access
12a7a54 [#3841] Add search to all node index-like actions
310373e [#3840] Replace symbols with icons
7fbcac3 maint: update vendored gem specifications
b495b3b [#4164] No longer load seed data with the rake install task
d31f353 maint: removing unused views and partial
7718c3a [Bug #3843] Footer should say PuppetLabs
c1dcb52 [#3579] Destroying a node destroys all dependent reports
5d35e76 maint: Refactor node counts
9e819ac Added `rake scss` task to compile application.scss to STDOUT, useful for debugging.
7f79868 Fixed application.scss styling of buttons for webkit browsers and removed disabled styles.
cab1a13 Improved nodes_controller_spec to provide more complete examples and remove duplication.
6a84fc5 Fixed environments/test to declare dependency on 'rspec-rails' gem
88bd9fd Upgraded bundled gems to rspec-1.3.0 and rspec-rails-1.3.2.
967840c Fixed timeline_event view to handle subjects that can't be linked (e.g. Parameter). Updated specs.
813efde Updated Red Hat spec file
00c53d3 Added updated packaging information for Red Hat and Debian
e6b530d [Bug #4181] Fixed broken reports.css link in application layout.
443ff8d Fixed node_groups#show to not fail with exceptions if it has classes or groups.
fea0098 Fixed nodes#show to not display "value" columns in inspector tables.
8a285cf Improved ApplicationHelper#inspector_table and shared#_inspector to only display "value" column if wanted.
874837d Rewrote application.scss using nesting, mixins, variables and calculations.
4cf7b6e Converted application.css to application.scss.
151d5ee Upgraded vendored gem "haml" from 2.2.2 to 3.0.13
2f9f88f Converted application.css to application.scss using SASS, to simplify styling.
d38b6f9 Made buttons more visible by using contrasting colors, margins and rounded corners.
418be6a Added ApplicationHelper#focus to set the UI focus on a specific form field using JavaScript.
104a3dc Refactored timeline_events partial and added specs.
55c55da Corrected nodes#new form's submit button.
d79f102 Updated forms to use #header_for helper.
450c20b Added ApplicationHelper#header_for(form).
8c2ed8a Updated index views to use #pagination_for helper.
4cb2812 Added ApplicationController#pagination_for, which extracts common pagination code throughout the views.
7993f95 Improved NodesController by adding #scoped_index to generalize scoped index rendering, added specs.
8e71715 Updated reports_collection to use PaginatedIndex.
eef740e Updated NodesController to use paginate_collection!
81c5e88 Added ApplicationController#paginate_collection! and updated PaginatedIndex#index to use it.
958ce4d Renamed JsonIndex to PaginatedIndex, updated controllers using it.
82e9447 [#3719] Do not paginate Groups and Classes JSON
79206fc Fixing RubyGems deprecation warning
6ca7629 Moving testing-only gems to the testing environment config
4f42eb8 Removing rspec-rails gem (we use the plugin)
3ca326e Updating rspec/rails plugin to 1.3.2
8abdf2a Creating a Report shouldn't trigger node updated audit msg
0d56fb9 Updated audit entry text and style
2aee9fa [Bug #3660] timeline event undefined method "name"
68b53fd Fix add class and add group butotns
dd3635c CSS: Firefox gradient love
ef336eb CSS and layout updates
c9f7734 Add tooltips for node report status
b79ff03 [Feature #3701] Home page left hand navigation
2cddec9 [Feature #2985] warn if node stops sending reports
cf4c4dc [Feature #3426] name field should have a label
6c2868c CSS: adjust sidebar margins
1178f72 Remove description placeholder from groups and classes
07b80cf [Feature #3477] Node Manager sidebar class and group links
52ec66c [Bug #3544] Class and group search broken
0f1a245 [Bug #3562] all browser javascript dependencies should be bundled.
94a59df [Feature #3579] Added ability to delete single reports
3683132 Change report inspect for better debugging
0bb51b4 By Class and By Group sidebars now sroll
d294d86 Add status graphs to all node index pages
6017005 Fix incorrectly failing report specs for real
v1.0.0rc2
=========
d5918df Releasing v1.0.0rc2
b70552f Vendoring authlogic plugin
8cf65cf Add report specs, refactor report, fix spec issue
75f951c [Bug #3516] puppet dashboard rake install aborted
982e791 [Bug #3527] Successful nodes > all nodes?
76ddac3 Ignore generated README.html
0b00832 [Bug #3469] node activity items link to current page
f8a0406 [Bug #3430] README missing = after REPORTDIR
a5c85a5 [Bug #3432] success report list sorts by hostname
ae9de8a [Bug #3467] dates show up in Euro Format (DD/MM/YY)
30c7d39 [Bug #3478] Update copyright to 2010
a1dd137 [Bug #3489] Delete of only group or class item in a node does nothing
3885361 Fix fcbkcomplete to work in noConflict more
17a6f99 [Bug #3480] Truncate node lists
3f4077a more colorblind-safe chart colors
9c60546 Basic graphico-based status graphs
98a731d Removing flot javascripts, adding grafico
0104ffe Update status graph partials
ad31527 Adding unreported nodes
1a8c60a Fix node successful, failed scopes. Add unreported.
343aa0a Ignore ctags file
2c95e5d Correct order for reports on dashboard page
03d7864 Adding rake udpate task
0393ad2 Vendoring has_scope gem
0a9795a Releasing 1.0.0 (Sweet!)
803ce67 Removing changelog task
30e16b3 Update changelog task
549b985 Fix bug in assigning classes to nodes
f584f3b Add indexes for reports(time) and reports(node_id)
bea2df6 Adding report status indicator to reports index
4328e99 Add node failure warning to dashboard page
65d20fe Add accessor for report metrics and report status icon
0144ee1 Use distinct count in nodes sidebar
355f705 Fix report status names (for CSS)
d56ea83 Fix Node.failed scope SQL
af761df Update tables CSS
2c6507c Update gitignore
05d1da7 Fix JavaScript autocompletion to work under relative_url_root
ba78196 Fix image URLs in stylesheets to work under relative_url_root
v1.0.0rc1
=========
e926fe7 Releasing v1.0.0rc1 (Yeaah!)
9cd63b9 Updating CHANGELOG
ad6704b [Bug #3322] Use local times, not UTC times
e20bd0b [Bug #3358] Do not specify hostname column width in tables
c428643 Fix example conf for external_node script
da48338 No longer blowing away groups and classes when updating node
0667504 Ignoring semver file
de657e1 Adding Ian Comfort as a contributor
2fa2e95 Relax rake requirement to >= 0.8.3
ae755db Add link to Mike Zupan's install guide
6b34e97 Fix database.yml example
7307b5f Updating contributors
0705119 Remove extra layout line in nodes controller
9ab62c6 [Bug ##3302] pagination breaks external node
7c06dc0 Fix node reports index routing and re-add View More
7c63eb2 Updating key/value table CSS
420d8b9 Reorganize report show view
81e378b Reorganize node show view
8770033 Reports use new UI
28bf686 Fix number formatting in flot graphs
7f4c8ec Update README
60f670d Basic node search (by hostname only)
bebda1d Removing code from old UI
30e3eab In place edit for class names
282bf5c Render correct sidebar for class show
44d8d9b Add puppet dashboard logo
bc4bf35 Add id to node index checkboxes
0ef8937 Sane paginatino per-page size
63d434b Remove condition on Node.by_report_date
d20c294 Adding run time to dashboard page
edbfbf0 Minor updates to forms CSS and nodes forms
7643292 Update dashboard page
2a314cb Update header drop down styles
bb1a5c7 Minor style updates
11e0a75 Updating node show and adding half width style
b1b1091 Fixing default time format
e95c202 Updates to form CSS
1303cca Update node manager tab active condition
cf283ff Add dropdown to main nav
503bc00 Update Node Class views to new UI
f02cc9a Update Node Group views to new UI
5fc4ee8 Updates to Nodes UI
e4e390b Working node group and class completion
5837819 Basic working facebook-style group autocomplete
7698cda Adding fcbkcomplete jQuery plugin
df58cf3 Small tweaks to index styles
84d35b9 New Nodes index layout and general UI styles
b56c64b Simplifying timeline event view and css
b4ef0e6 Truncate node name in dashboard list
4788194 [Bugfix #3177] Nodes groups parameter not in external node
ee5da5c [BUGFIX #3146] README.markdown tweak
f9388f2 Display details on parameter changes in history.
4751ddd A node's last_report returned the incorrect report, since changing the default_scope order of reports.
a010410 Fix timestamp formatting on x axis for graphs Fix order of run success graph so it shows most recent runs.
a83f05d Make activity timeline more verbose.
1fca6fc Don't show run status graph if there are no reports.
0eb3cf1 Show number of reports for a node in node's 'show' action.
4ed3d15 Enabling pagination for node collections.
277791a Add node and report management rake tasks
4a84db7 Fixed sorting of reports in default_scope of the model.
3729cd0 Adding node rake task. This is for adding/modifying/removing nodes in the dashboard.
a08d992 Add where named scope
6835156 [Bugfix #3071] Node report list should show most recent first
67e481d Clean up environment.rb
846da97 Fix failing nodes controller specs
f0f0533 Add paginated reports and view more links
06676b2 [BUGFIX #3024] Unsuccessful report raises error on #metrics
a19dca3 [Feature #2978] Sort nodes based on domain name
9be6623 Classes can be added when editing groups
261f227 Releasing 0.2.1
v0.2.1
======
773bc5f Fix nasty routing bug for hosts that contain a '.'
a849c84 Releasing 0.2.0
v0.2.0
======
b62d71e Update README
d57764e Sample external nodes script
320c1eb Lookup node by host name
924d4f9 Tweak status report link text
482448f Tweak footer paddings
c2d9194 Element footer (styled like table footer)
7890b62 Move node sidebar Add button to table footer
eb5d2c3 Add paginated reports and view more links
49d7e02 Adding will paginate to vendor and gem.config
f1cb4c1 [BUGFIX #2946] not showing failed icon
6f0906c [BUGFIX #2947] uneven lists on dashboard
2130b97 Large update to stats and graphing
1352421 [BUGFIX #2946] not showing failed icon
8b17973 rake reports:import task imports report YAML files
32c48a5 Extract data from report into reports table
024fe93 Update install task to use file tasks
24f37ab More robust test of node activity feed
3e83b56 Fix statuses controller spec
66ca885 Updating CHANGELOG for 0.1.1
v0.1.1
======
df15ea5 Updating CHANGELOG for 0.1.1
c1b5a52 Version bump 0.1.1
1be1310 Add changelog generation task
49109c2 [BUGFIX] Add migration for reports.success field
40460d5 Use schema load in rake install
522e62e Start tracking schema.rb
v0.1.0
======
87905c0 Updating changelog
dae4172 Reordering of node view information, minor CSS tweak
5475b16 Equal caption size to header
b1cbc08 Increasing tick size in timeline graphs
0cf3df1 Version bump 0.1.0
e6ee999 Adding changelog
86e93c3 Dashboard now requires MySQL
cdc181b Add status graphs to dashboard and status page
3d4c34d Adding runtime stats
79f9d54 [Bugfix #2897] Add dependency to rake >= 0.8.4
e81c542 [Bugfix #2912] Node class names allow "::"
8b3ecba Updating status javascript
0100afd Adding basic status info/graphs
425849e Fix bug in parameter assignment
v0.0.2
======
a8d2b39 Version 0.0.2
1c9bce1 Add reported_at to Node, updated by report creation
bd878de Adding rake to dependencies list
9c1a9e7 Display icon for deleted subjects in timeline
b6f35bf Use indifferent access hash for report metrics
a3775eb Tweak reports styles
9963092 Require unique class and group names
dfe9f21 has_parameters accepts options for has_many
8f3ecfc Adding rake dependency to README list
265988f Add copy database.yml task to rake install
75a6b0b README is a markdown file (for github)
v0.0.1
======
8a6cf1d Adding VERSION file
b78e9da Fix bug in node group graphing
fe84f81 Update README for release
0578b53 Adding HOST and PORT constants to report processor
15d33c6 Updates to report handling
16e67dc Moving report generator
26befce Adding install rake task
c91c067 Adding puppet report generator
3e69d37 CSS Refactor
bc7e1a1 Adding icon class to parameter delete button
396eda1 Node form autocomplete tweaks, hiding headers of empty tables
cbf88bf Adding description to group and class json
6038670 Add host accessor to Report
db40158 Fix bug in node form class list
b9421c7 Adding sample report to seed data
81ca370 Updating seed data
c84f001 class and group search return JSON for autocomplete
7072ef1 Moving puppet require to env
a1d9f87 Put autocomplete search box in table footer
bdd9709 Adding autocomplete javascripts and impl
103903f Update node controller spec
3872f0e Refactor node class and group forms, restyle errors
6dd62ea Removing prototype files from Rails upgrade
e0ce6eb Ignore swap files
018d6fc Fix activity feed for removed items
7f9dcf8 Update interface elements for node groups show
54bf278 Use form.object instead of @node
5dac65d Update to resource finder for nodes controller
b1c2a36 Stylesheet tweaks
7e879a1 Node urlification in route
df659c4 Adding stringex gem for urlification
728867f Updating rack gem
eb535fd Updating rails to 2.3.5
ee89e9e Update to reports
6148c07 Autocomplete search for node form, minor UI updates
8e2e963 Freezing rails
9881f39 Vendoring gems
8ee4e2a Rework node edit for node group, class autocomplete
9862ea9 Create a node from a node group view
e59b939 Refactor node group graph
67ec232 Removing node spec
56b2446 Don't show secondary content box without content
2d0772f Further refine activity feed template
4757b77 First pass handle cycle error in node view
a75a468 Parameters don't conflict if their values are the same
576d3cd Fix bug in activity feed templating
cd52252 Remove dev comments and alias
dcbc237 Refactor graph node traversal to add inherited groups
9371db1 Node group graph raises an error if there are cycles
6d6bbac Handle activity feed events with removed subjects, etc
587747a Parameter compilation and conflict management
13b1b2a Updating parameters implementation, refactoring layouts
37492a7 Rework node parameters for new model, refactor layouts
afbd4d8 Updating views and view specs
4e1a0b9 Updating rspec-rails
9a1a9a4 Replace parameters serialization with Parameter backend
d329405 Add node class name validation
398e57d Adding parameter model
e1db7fe Ignore all files in tmp
29df1c3 Adding support for opts to Node#to_yaml
436cab9 Update inherited resources for YAML fix
bc24516 Fix typo
37a3d4d Refactoring layout, using inspector_table helper
cc09a0c Adding inspector_table helper
2c43129 Refactoring controller helpers up the inheritance chain
0fcd146 Adding unicorn to backtrace silencers
db56aec Adding fake descriptions to node class and group
8b478bf Adding to_yaml to Node
f0ff10e Adding width to inspector table key column
636c1c3 Fixing radiuses, adding margin to inspector table
84d9fc3 Remove secondary content top margin
5f7e4c4 Show all when filter text is removed
53381a7 Removing unneeded ajax
1c3234a Updating show page
660fea6 Add Nodes views
6efd7ef Adding styles and markup for sign up and sign in. Search styles on node groups.
ba7b6e2 Add node list to node group view
ecbf5fd Ajax form update for node group edit
48459fd NodeGroup controller now uses InheritedResources
209043e Adding Inherited Resources plugin
9192f0a Updates to bring back Andrew's styles
5613190 Add table filtering (ala Github)
e716cd8 Iterating on node groups view
eca0dc7 Adding sidebar table filtering
ddcfc5c Adding edit ajax load to node_groups
33aec33 Updating layout, styles, and controllers for styles
550cd61 Adding nodes relationship to node group
550b248 Adding Node#inherited_classes and display in edit view
abfb9ba Adding Node#all_classes naive implementation
54a0c7d Removing old activity model files, updating user specs and node group edit spec
140b915 Adding AuthLogic authentication
182f15d Add Activity Feed, Dashboard homepage
d593d3b Adding TimelineFu plugin
f9fc468 Node groups have parameters
10369b8 Node groups have classes
a3e7670 Add delete link to node view
ecf551d Updates to node group and class views
d829a8f Minor updates to CSS
93c4b59 Sort CSS declarations because I'm anal
4faac46 Adding node classes and groups to navigation
b8125c4 Fix for 1.8.6 Hash[]
340ec7a Remove debugging code
4b6317f Ensuring that parameters can be deleted from nodes
c849d4d Updating .gems for heroku defaults
15adf2f Adding .gems file for heroku
2c3ff12 Add, edit nodes w/ classes, groups, properties
cb746b2 Adding seeds file
328f656 Refactoring node, node class, adding node group
1d72ee2 Refactoring node controller
86ea7ee Removing prototype JS files
aeb23cd Adding basic nodes index page
5b73977 Adding rspec and shoulda matchers to gem list
5c4a8ec Moving lib specs to spec/lib
89bb198 Adding basic layout and styles
74f3366 Updating rails
5f35ecc Removing vendor/rails
7a6c263 Condensing basic schema into one migration
64bc2ad jQuery-izing Node<->Service (dis)connect interface
b2bc34e Adding (and partializing) (dis)connect result views for Nodes<->Services (aka "classes")
ed0014d Controller functionality for Node (dis)connect to/from services (aka "classes")
320d4fa Adding non-Ajaxed, non-backed-by-controller Node<->Class (dis)connect interface.
5b487b3 Adding description to node view.
49f7c73 Refactoring parameters processing method.
50d7c74 Nodes controller now understands maintaining parameters list.
6cd8742 node view with jqueried parameter editor
c54ebfd making parameter deletion interface work with newly added parameters
7773141 adding jQuery form plugin and Livequery
47fca8b first pass at node / parameters editing
035f7c8 and adding a layout with a yield fixes the silly problem I was javing.
2134f8f new javascripts
bd41636 adding jRails plugin
e174fe3 removing unused response_for block (old larry code)
14bd27e removing response_for plugins
0c9391b View spec rendering issue is preventing the correct template from being displayed.
82e2d8d upgrading vendored HAML gem
33e0c5f simple node view
e532cda updating controller to at least show a view. (WTF?)
0d1dc3e upgrading environment rails version
4dd98f4 upgrading mocha to 0.9.7
2e6e439 upgrading vendored rails to 2.3.3
1a1eb76 Adding YAML REST response for node configuration .
51c14d1 Adding trivial node view (specs).
8b0a4ba this is no longer Larry
0e7c44f Renaming hosts to be puppet-compliant "nodes".
3d6270f removing larry migrations that don't pertain to puppet-node-manager
f29d20b removing Edge concept from system, as P-N-M has only flat 'classes'
ad09056 making Host <-> Service linkage
3e5ef84 cleaning up host model
7f2e915 removing concepts from Larry that don't apply to puppet-node-manager
bd5817d Specs and a bugfix for name normalization routine
f68f714 adding autotest rules to catch specs in spec/other
3640594 refactor common name normalization routine to a module
a383210 Host can now generate a crazy-ass Puppet manifest
56c671b Service now also has a configuration_name
1651a9a remove this pending spec; we'll get back to that if we need it
9bb0622 Make configuration_name normalized for use as an unique identifier (e.g., w/ Puppet)
cf7ef11 Instances have configuration services and parameters
f4333cd Host can return a configuration now
a4f60db Instance name should be unique per app; adding parameters to instances
6bd9071 required_services patch missed when committing earlier instance -> host work
d5bc157 hosts and instances should be able to see each other.
f84fdc7 ignore Passenger restart.txt file
a1cf25a small experiment with getting various resource responses RESTfully
9afc1d9 adding response_for and response_for_resource_controller plugins to experiment w/ REST responses
84cec12 Linkage between Instance and Service is now many:many.
183dab5 adding will_paginate as a plugin, in order to paginate views