forked from theforeman/smart-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
854 lines (604 loc) · 31.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
2014-10-22 Lukas Zapletal <[email protected]>
* Fixes #7859 - puppetssh run works on Ruby 1.9+
2014-10-22 Šimon Lukašík <[email protected]>
* Fixes #7922 - promote uri and http to instance property
2014-10-20 Dmitri Dolguikh <[email protected]>
* fixes #7660: fixes first bunch of rubocop warnings
2014-10-17 David Davis <[email protected]>
* Fixes #7862 - Upgrade rubocop version
2014-10-10 Thomas Kuther <[email protected]>
* Fixes #7860 - added puppetssh_wait option
2014-10-08 Dominic Cleal <[email protected]>
* fixes #7822 - forbid HTTPS requests with no client SSL certificate
* fixes #7850 - pin mixlib-shellout for Ruby 1.8 compatibility
2014-10-02 Marek Hulan <[email protected]>
* Fixes #7749 - allow using logger in log_halt helper
2014-09-24 Dmitri Dolguikh <[email protected]>
* Fixes #7181: added initial support for rubocop
2014-09-24 Dominic Cleal <[email protected]>
* fixes #7596 - validate plugin dependencies when loading, various fixes
2014-09-15 Dmitri Dolguikh <[email protected]>
* Fixes #7438: moved facter loading into the facter plugin descriptor
2014-09-11 Dominic Cleal <[email protected]>
* fixes #7297 - corrected name of DNS namespace in virsh error handlers
2014-09-05 Dmitri Dolguikh <[email protected]>
* fixes #7351: plugins no longer crash smart-proxy if they are missing either of rackup paths
2014-08-29 Dmitri Dolguikh <[email protected]>
* fixes #7235: dhcp tests are now order-independent
2014-08-27 Dmitri Dolguikh <[email protected]>
* fixes #7225: logger is now being correctly initialized during launch
* fixes #7240: puppetca now loads correctly if puppet module is disabled
2014-08-27 Dominic Cleal <[email protected]>
* fixes #7274 - generate date format expectation in tests to handle Ruby/JSON differences
2014-08-15 Dmitri Dolguikh <[email protected]>
* fixes #7080: symbols are no longer being sorted
2014-08-13 Dmitri Dolguikh <[email protected]>
* fixes #7060: puppet gem is no longer required if puppetca is disabled.
* fixes #7062: facts module uses correct path for 'requires'
2014-08-11 Dominic Cleal <[email protected]>
* fixes #7015 - to_json passes options through correctly, remove array wrapping
* Bump version to 1.7-develop
2014-08-08 Dominic Cleal <[email protected]>
* fixes #6722 - correct require for kerberos utilities
* fixes #6589 - add trusted_hosts check back
2014-08-07 Dominic Cleal <[email protected]>
* fixes #6956 - rack 1.1 minimum required for Rack::Server#start
2014-08-06 Stephen Benjamin <[email protected]>
* fixes #6542 - ship freeipa users script with the smart proxy
2014-08-06 Martin Milata <[email protected]>
* fixes #6522 - move request code out of chef module
2014-08-06 Aaron Stone <[email protected]>
* Fixes #6743 - Common code for manage_subnet? in ISC and Native MS
* Fixes #6744 - Avoid nested arrays and extra array copies in the ISC DHCP config parser
* Fixes #6745 - Clean up the params input to the DHCP::Server.addRecord method
* Fixes #6742 - Add a unit test suite for the DHCP API
2014-08-06 Dmitri Dolguikh <[email protected]>
* Merge pull request #194 from domcleal/6908-request-tests
2014-08-04 Dominic Cleal <[email protected]>
* fixes #6908 - update request tests for latest Chef release
2014-07-28 Aaron Stone <[email protected]>
* Fixes #6790: Restrict ci_reporter gem to less than 2.0.0 to fix CI.
2014-07-24 Dmitri Dolguikh <[email protected]>
* Fixes #6772: added support for testing of plugins
2014-07-23 Dominic Cleal <[email protected]>
* fixes #4699 - support Puppet environments API for directory envs
2014-07-22 Trey Dockendorf <[email protected]>
* Fixes #6689 - Allow nil mac address for TFTP API calls that do not require a MAC
2014-07-21 Aaron Stone <[email protected]>
* fixes #6700 - tests for Proxy::Puppet::Runner shell methods
2014-07-17 Dmitri Dolguikh <[email protected]>
* fixes #6661: trailing slash is not required in urls
2014-07-11 Dominic Cleal <[email protected]>
* fixes #6588 - don't load user settings when testing default settings
2014-07-11 Aaron Stone <[email protected]>
* fixes #6585 - Update Proxy::Util::CommandTask to handle Ruby 1.8 and 1.9+
* fixes #6584 - Replace Kernel#open with File.open
* fixes #6583 - Use Enumerable#find instead of each where possible
2014-07-11 David Swift <[email protected]>
* Fixes #6412: Trying to remove a DHCP record fails due to an invalid subnet check
* Fixes #6396: an error removing a DHCP record (record doesn't exist) stops the delete process for a host
2014-07-09 Dominic Cleal <[email protected]>
* fixes #6275 - idempotence needs clone of original data and to handle *_port
2014-07-07 Dmitri Dolguikh <[email protected]>
* fixes #6289: avoids concurrent downloads of files with the same name and destination dir.
2014-07-04 Vincent Kramar <[email protected]>
* fixes #6377 - incorrect dhcp providers server virsh.rb loadSubnetData
* fixes #6085 - fixed virsh dhcp provider netmask interpretation
2014-07-02 Dmitri Dolguikh <[email protected]>
* fixes #6474: smart-proxy relies on Bundler to load sinatra dependency
* fixes #6306: removed possible namespace collisions with puppet and chef
* fixes #6436: plugins are now being loaded after core modules
2014-07-02 Trey Dockendorf <[email protected]>
* fixes #6341 - Add support for 64-bit MAC addresses
2014-06-23 Dominic Cleal <[email protected]>
* fixes #6334 - pass virsh_network to virsh DNS provider
2014-06-20 Lukas Zapletal <[email protected]>
* refs #4866 - Added config/settings.d/*yml to gitignore
2014-06-18 Dmitri Dolguikh <[email protected]>
* Fixes #4866: Breaking up monolithic smart-proxy into modules
2014-06-18 Greg Sutcliffe <[email protected]>
* Fixes #6086 - stop remote command execution and path exploit in TFTP API (CVE-2014-0007)
2014-06-11 Dominic Cleal <[email protected]>
* fixes #5675 - expect dns_key setting to be nil if not set
2014-06-09 Dominic Cleal <[email protected]>
* fixes #5856 - use public initializer for Puppet settings
2014-06-02 Dominic Cleal <[email protected]>
* refs #5987 - remove unused packaging files
2014-05-30 Greg Sutcliffe <[email protected]>
* Fixes #5907 - Look at all records when suggesting IPs
2014-05-27 Dominic Cleal <[email protected]>
* fixes #5677 - handle booleans from settings.yml as bools
* refs #5793 - add pkg:generate_source rake task to create tar.bz2
2014-05-20 Greg Sutcliffe <[email protected]>
* Fixes #5739 - Only look at reservations when deleting a DHCP record
* Fixes #5648 - Match the DHCP specification of last-lease-wins
2014-05-20 Jimmi Dyson <[email protected]>
* Fixes #5712: Limit DHCP subnets for ISC if necessary
2014-05-09 Alyssa Hardy <[email protected]>
* fixes #5561 pass arguments correctly in run puppet over ssh
2014-05-08 Dominic Cleal <[email protected]>
* fixes #5522 - future parser can be set in puppet.conf [main]
2014-05-07 Dominic Cleal <[email protected]>
* fixes #5239 - update for Puppet 3.5 future parser changes
2014-04-25 Stephen Benjamin <[email protected]>
* fixes #5054 - Minor bug fixes to FreeIPA Smart Proxy
2014-04-25 Félix Barbeira <[email protected]>
* Small symantic changes.
2014-04-16 Dominic Cleal <[email protected]>
* Bump version to 1.6-develop
2014-04-10 Matt Jarvis <[email protected]>
* fixes #5123 - corrected string typos
2014-04-10 Sean Handley <[email protected]>
* fixes #5123 - IP only from the same subnet and range
2014-04-02 Lukas Zapletal <[email protected]>
* fixes #5019 - puppet cert sudo command now configurable and optional
2014-04-02 Stephen Benjamin <[email protected]>
* fixes #1809 - freeipa integration to smartproxy
2014-03-21 Dominic Cleal <[email protected]>
* fixes #4686 - don't rely on Puppet[:config] to store config file location
2014-03-21 Riley Shott <[email protected]>
* Fixes #2259 - trusted hosts work with passenger
2014-03-14 Dominic Cleal <[email protected]>
* fixes #4661 - store hostname with virsh DHCP reservations
* fixes #4660 - stub omshell during DHCP tests
* fixes #4658 - parse puppet.conf with augeas instead of puppet internals
2014-02-04 Martin Matuska <[email protected]>
* Fixes #4215 smart-proxy needlessly creates tmp/pids directory
2014-01-29 Michael Moll <[email protected]>
* refs #3874 - add which to wget call
2014-01-22 Lukas Zapletal <[email protected]>
* fixes #4116 - added missing LICENSE file
2014-01-16 Dominic Cleal <[email protected]>
* Bump version to 1.5-develop
2014-01-16 Marek Hulan <[email protected]>
* refs #3699 - combine paths when running Foreman under a prefix
2014-01-16 Romain Vrignaud <[email protected]>
* refs #3699 - fix typo in chef_proxy's authentication, overriding wrong variable
2014-01-15 Martin Matuska <[email protected]>
* fixes #3991 - dnscmd provider for smart-proxy (Windows)
2014-01-15 Romain Vrignaud <[email protected]>
* fixes #3965 Change API endpoint for chef_proxy to be the same as Foreman's
* fixes #3966 Puppet is not listed as bundler dependency
2014-01-15 Romain Vrignaud <[email protected]>
* refs #3699 - update settings.yml.example
2014-01-03 Lukas Zapletal <[email protected]>
* fixes #3943 - add simple virsh providers for libvirt DNS/DHCP
2014-01-03 Rickard von Essen <[email protected]>
* fixes #2878 - Import Classes when using parser = future, on Puppet 3.2+
2014-01-03 Frank Wall <[email protected]>
* fixes #3941 - Support for Junos ZTP
2014-01-03 Michael Moll <[email protected]>
* fixes #3874 - extend paths for FreeBSD support
2014-01-03 dima <[email protected]>
* fixes #3067 - add sparc solaris dhcp options for ISC
2014-01-01 Glen Ogilvie <[email protected]>
* fixes #3936 added a method of running a custom tool, to trigger puppet.
2013-12-09 Ewoud Kohl van Wijngaarden <[email protected]>
* fixes #3833 - ship config.ru in RPMs for running under passenger
2013-11-22 Dominic Cleal <[email protected]>
* fixes #3712 - change develop versioning scheme to indicate next version
2013-11-22 Francois Deppierraz <[email protected]>
* fixes #3732 - Saltstack puppet provider, using 'salt host puppet.run'
2013-11-20 Romain Vrignaud <[email protected]>
* fixes #3699 - chefproxy feature, proxies facts and reports to Foreman
2013-10-16 Greg Petras <[email protected]>
* fixes #3150 - adds ability to specify the user to invoke sudo as when calling mco/puppet kick
2013-10-01 Aaron Stone <[email protected]>
* fixes #3173 - tell puppetca to use the configured ssl dir
2013-09-08 Tomas Edwardsson <[email protected]>
* fixes #2870 - Always empty PXEClient on native_ms
2013-09-08 Ohad Levy <[email protected]>
* fixes #3048 - Add execution debug statement to the logs
2013-09-08 Hannes Schaller <[email protected]>
* fixes #3047 - added puppetrun over ssh support
2013-09-05 Lukas Zapletal <[email protected]>
* Bump version to 1.3-develop
2013-09-02 Jeremy Kitchen <[email protected]>
* fixes #3009 - add Proxy::Log to Proxy::DNS::Nsupdate class so 'logger.debug' works
2013-08-16 Sam Kottler <[email protected]>
* Fixes #2941: don't mention autosigning when direct signing fails
2013-07-19 Dominic Cleal <[email protected]>
* fixes #2055 - add rubyipmi dependency for BMC support
2013-07-19 Sam Kottler <[email protected]>
* Fix #2807: Remove the SCL prefix from the name
2013-07-17 Povilas Daukintis <[email protected]>
* Fixes #2790 - Optionally set DNS TTL value from settings.yml config file
2013-07-04 Daniel Baeurer <[email protected]>
* fixes #2738 - handle multiple dynamic modulepaths
2013-06-27 Dmitri Dolguikh <[email protected]>
* Fixes #2714 - corrected IO#popen parameter on ruby 1.8.7
2013-06-19 Dmitri Dolguikh <[email protected]>
* fixes #2673 - none/wildcard http 'accept' headers are being handled correctly now
2013-06-18 Dmitri Dolguikh <[email protected]>
* fixes #2662 - Proxy::Util.escape_for_shell is being used in PuppetRun.run and MCollective.run methods
2013-06-14 Greg Sutcliffe <[email protected]>
* Fixes #2659 - Use gsub in a non-destructive manner
* Fixes #2654 - Rewrite master as production when only one environment is found
2013-06-13 Lukas Zapletal <[email protected]>
* fixes #2652 - systemd service now working
2013-06-07 Dmitri Dolguikh <[email protected]>
* fixes #2520 - defines default settings for dns and puppet
2013-06-04 Kamil Winczek <[email protected]>
* fixes #2614 - log messages regarding puppetrun via mcollective
2013-05-28 Greg Sutcliffe <[email protected]>
* Fixes #2119 - Properly support colon-separated modulepath
2013-05-23 Dominic Cleal <[email protected]>
* fixes #2547 - fix ruby-abi on non-SCL EL6
2013-05-22 Dominic Cleal <[email protected]>
* Add nonscl koji tags to build configuration
* Bump version to 1.2-develop
* fixes #2514 - lock minitest to 4.7
* fixes #2523 - add missing require
2013-05-22 Martin Bačovský <[email protected]>
* fixes #2531 - support for scl-aware building, not SCL by default
* fixes #2515 - rkerberos RPM required
2013-05-20 Ewoud Kohl van Wijngaarden <[email protected]>
* Typo fix in the description
2013-05-20 Dominic Cleal <[email protected]>
* fixes #2510 - sync init script and changelog from foreman-rpms, fix shadow-utils dep
2013-05-16 Martin Bačovský <[email protected]>
* Added support for building with tito
2013-05-10 Sam Kottler <[email protected]>
* fixes #2116 - mcollective support for the proxy to initialize puppetrun
2013-05-09 Dominic Cleal <[email protected]>
* fixes #1685 - GSS-TSIG support for DNS updates
2013-04-22 Greg Sutcliffe <[email protected]>
* Override the initialize method for the shell provider, as no connection setup is needed
2013-04-10 Ashley Penney <[email protected]>
* fixes #2388 - The path to puppetca is /opt/puppet/sbin for PE.
2013-04-10 Greg Sutcliffe <[email protected]>
* fixes #2387 - Add shell provider to the BMC API
2013-04-10 Lukas Zapletal <[email protected]>
* adding Sinatra::Request.accept? method for pre-1.3.0
* refactoring http accept header for Sinatra 1.4.2+
2013-03-17 Dominic Cleal <[email protected]>
* fixes #2067 - disable puppet's handling of 'import' to fix manifests containing it
2013-03-10 Dominic Cleal <[email protected]>
* Ignore .bundle dir
* fixes #2209 - explicitly use Proxy::Puppet::Environment#name for to_json
2013-03-04 Greg Sutcliffe <[email protected]>
* fixes #2255 Fix frozen facts in facts_api
2013-03-04 Dominic Cleal <[email protected]>
* fixes #2191 - undef in puppet class params is optional
* fixes #2261 - fixes for CI testing under Ruby 1.9
2013-03-04 Sam Kottler <[email protected]>
* Fixed bad indentation in the puppet clasS
2013-02-25 Greg Sutcliffe <[email protected]>
* ignore RVM/RBenv files
2013-02-25 Sam Kottler <[email protected]>
* Fixed CVE-2013-0210 and added test for new escape method
2013-02-04 Ohad Levy <[email protected]>
* released 1.1
2013-01-30 Jan Vansteenkiste <[email protected]>
* Tests the autosign.conf operations
* fixes #1674: Ignore commented lines when reading all certificates in autosign and make sure the autosign file contains a EOL on the last line
2013-01-30 Dominic Cleal <[email protected]>
* Fix a number of tests and settings so tests run from example settings.yml
* fixes #2101 - add bundler / Gemfile
2013-01-24 Ohad Levy <[email protected]>
* version bump to RC3
* refs #1567 - fixed a copy paste error
2013-01-20 Sam Kottler <[email protected]>
* Fixes #2143: Only create the log file parent dir if daemonize is true
2013-01-20 Dominic Cleal <[email protected]>
* fixes #2085 - load Puppet 3 app defaults for master mode too
2013-01-08 DoubleMalt <[email protected]>
* fixes #2114 Add warning if no environments found
2013-01-08 Dominic Cleal <[email protected]>
* fixes #2099 - interpolate $confdir if $environment not used
2013-01-08 Raffael Schmid <[email protected]>
* fixes #2099 - fix handling of multiple module paths
2013-01-02 Ohad Levy <[email protected]>
* fixes #2077 - proxy should not return nil for parameters with a function call
2012-12-17 Greg Sutcliffe <[email protected]>
* fix tests running on both 1.8 and 1.9 ruby
2012-12-10 Ohad Levy <[email protected]>
* release bump to 1.1RC1
2012-12-10 Greg Sutcliffe <[email protected]>
* fixes #2031 - Remove dependency on net-ping
2012-12-05 Greg Sutcliffe <[email protected]>
* fixes #2016 Use a tmpfile+lockfile to avoid race conditions in IP suggestion
2012-12-05 Dominic Cleal <[email protected]>
* fixes #1983 - use /etc/puppet/puppet.conf by default
2012-11-28 Greg Sutcliffe <[email protected]>
* Fixes #1984 - explicitly call array.join when writing autosign.conf
2012-11-22 Dominic Cleal <[email protected]>
* fixes #1967 - missing require for Puppet constant
* fixes #1915 - load environments from Puppet 3
2012-11-15 Sam Kottler <[email protected]>
* Fixes #1941 - Load only the puppet binary when puppet 3 or higher is used
* Removed files related to packaging
2012-11-15 Greg Sutcliffe <[email protected]>
* More detailed log message for puppetca ssldir Add ssldir and puppetdir to config examples Fixes #1104
2012-11-11 Greg Sutcliffe <[email protected]>
* Fixes #1761 - default to /etc/puppet if we can't find a value for
2012-11-07 Dominic Cleal <[email protected]>
* fixes #1929 - set umask sensibly to prevent world writable files (CVE-2012-5477)
2012-10-24 Greg Sutcliffe <[email protected]>
* Fixes #1914: Raise if we cannot read the puppet conf file, report the path otherwise
2012-09-12 Ohad Levy <[email protected]>
* fixes #1856 - adds a config.ru and allow the SP to run as a rack app.
* added comment for code clarity
* make sure that class parameters are prefixed correctly and not as strings
2012-09-05 Ohad Levy <[email protected]>
* fixes #1836 - puppet cert in 2.7.19 has a different exit code
2012-08-29 Ohad Levy <[email protected]>
* fixes #1835 - proxy now can import classes from puppet 2.7.19
2012-08-28 Sam Kottler <[email protected]>
* Create the pid parent dir if it doesn't exist
2012-08-28 Corey Osman <[email protected]>
* feature #1829 - add bmc ipmi support to smart proxy
2012-07-31 Ohad Levy <[email protected]>
* Merge branch '26' into develop
* minor cleanups to tests
2012-07-31 Roberto <[email protected]>
* fixes #1797 - Added a REST interface for the Facts known about the proxy
2012-07-19 Ohad Levy <[email protected]>
* minor cleanups to tests
* Export arguments of parameterized classes
* 1.0 release
2012-07-18 Ohad Levy <[email protected]>
* 1.0RC2
* fixes #1759 - puppet 2.7.18 changed puppetca output
2012-07-18 Greg Sutcliffe <[email protected]>
* fixes #1733 - Environment issue if the env is not specifically defined
2012-07-18 Jeff Palmer <[email protected]>
* Fixes #1734 : Bump version number in the Rakefile
2012-06-24 Ohad Levy <[email protected]>
* 1.0RC1
* fixed minor test failure
2012-06-24 Greg Sutcliffe <[email protected]>
* Changes for Ruby 1.8/9 compatibilty, and Debian packaging guidelines
2012-06-13 Mikael Fridh <[email protected]>
* fixes #1567 - Foreman-proxy ignores dhcpd.conf include directive
2012-06-06 Florent Castelli <[email protected]>
* Don't modify the hash we are iterating on when listing environments fixes #1654
* Filter folders matching correct environments name
2012-06-06 kish <[email protected]>
* Was not returning true on command success, caused puppet_api.rb to print false messages.
2012-05-15 Greg Sutcliffe <[email protected]>
* [DEB] Update build files for building on shell.theforeman.org
2012-04-28 Ohad Levy <[email protected]>
* Merge pull request #16 from mjc-/develop
2012-04-27 mjc <[email protected]>
* kill dead 'about' link
2012-04-25 Ohad Levy <[email protected]>
* fixes # 1587 Puppet's modulepath not interpreted correctly by proxy
2012-04-05 Ohad Levy <[email protected]>
* Merge pull request #15 from pencil/develop
2012-04-05 Nils Caspar <[email protected]>
* support for IPv6 PTR
2012-04-03 Lukas Zapletal <[email protected]>
* fixes #1565 - report error when cannot create pid
2012-03-28 Jason Antman <[email protected]>
* fixes #1552 - expand $confdir if used in puppet.conf modulepath
2012-03-23 Florian Koch <[email protected]>
* fixes #1548 - Default Settings File Improvments
* fixes #1547 - Stack Trace with log level Error
2012-03-16 Ohad Levy <[email protected]>
* ensure we are using the latest repo
2012-02-28 Ulrich Dangel <[email protected]>
* Add to_json method to lease and reservation module
2012-02-23 Ohad Levy <[email protected]>
* refs #1387 make sure that we won't fail if the modulepath detection is wrong
2012-02-22 Ohad Levy <[email protected]>
* fixes #1387 - support puppet dynamic environments detection
* refs #1499 - minor restructuring
2012-02-20 Ohad Levy <[email protected]>
* add more entries to gitignore
* fixes #1499 - show puppet environments and classes over the API
2012-02-20 Ulrich Dangel <[email protected]>
* Fix log_level comment for settings.yml.example
* Change default log_level for debians log_level to INFO
2012-01-10 Ohad Levy <[email protected]>
* fixes #1442 - ip suggestion should take into account nic mac address
2012-01-09 Ohad Levy <[email protected]>
* fixes #1438 - the proxy should not consider dhcp leases as conflicts
2012-01-01 Ohad Levy <[email protected]>
* fixes #884 - IP proposed during Host creation does not belong to IP range defined in the subnet
* fixed broken tests
2011-12-28 Jochen Schalanda <[email protected]>
* Added new changelog entry for Smart-Proxy 0.3.1 debian package
2011-12-28 Ohad Levy <[email protected]>
* Merge commit '0.3.1'
* version bump to 0.3.1
2011-12-09 Paul Kelly <[email protected]>
* fixes #1383 - aready existing dns entries should not raise a collision exception
2011-12-04 Mikael Fridh <[email protected]>
* fixes #1366 - identifies omshell key conflict output
2011-11-23 Ohad Levy <[email protected]>
* fixes #1349 - some certificates are shown twice
* fixes #1349 - some certificates are shown twice
2011-11-08 Ohad Levy <[email protected]>
* Merge pull request #8 from joschi/smart-proxy-0.3_deb
* version bump
2011-11-08 Jochen Schalanda <[email protected]>
* Updated Debian package specification after release of Smart-Proxy 0.4
2011-09-28 Ohad Levy <[email protected]>
* fixes #1177 - Ensure that Solaris DHCP vendor options creation on Windows DHCP works correctly.
2011-09-18 Ohad Levy <[email protected]>
* fixes #1154 - ms dhcp smart proxy error 400
2011-09-05 Ohad Levy <[email protected]>
* refs #1022, fixes wrong condition if there is no entry in the settings file
* fixed identation
* clean up code passing, and removed duplicate code between dhcp server implementations
* fixes #1149 - add backtrace to log failures
2011-09-05 Paul Kelly <[email protected]>
* Fixes #1022 - trusted hosts are ignored
2011-08-17 Ohad Levy <[email protected]>
* fixes #1116 - When requesting the same dhcp reservation, if its not conflicting return 200
2011-08-09 Paul Kelly <[email protected]>
* Fixes #1100 - Conflict returns 400 error code
* Fixes #1094 - ISC loadRecordOptions call
2011-07-20 Paul kelly <[email protected]>
* Fixes #1055 - SETTINGS.dhcp_subnets
2011-07-19 Paul kelly <[email protected]>
* Fixes #1033 - DHCP Vendor options
2011-07-12 Paul Kelly <[email protected]>
* Fixes #1037 - dns_key should be optional
* Fixes #1036 - @om close error
* Fixes #1035 - Missing require resolv
* Fixes #1034 - Use name and not hostname option
2011-07-11 Paul Kelly <[email protected]>
* Fixes #1023 - Add collision exception type for DNS and DHCP
2011-07-03 Corey Osman <[email protected]>
* Fix: 1006 -- puppetrun is depreciated in puppet 2.6
2011-06-23 Paul kelly <[email protected]>
* Fixes #959 - Added Native MS DHCP options capture
2011-06-23 Corey Osman <[email protected]>
* Bugfix #1004 - puppetca is depreciated in puppet 2.6
2011-06-06 Ohad Levy <[email protected]>
* release of 0.2
2011-05-29 Jochen Schalanda <[email protected]>
* * Added new changelog entry for smart-proxy 0.2rc2 release * Changed source format to '3.0 (native)'
2011-05-26 Paul Kelly <[email protected]>
* Fixes #846 - supports Solaris TFTP pxe configuration files
2011-05-11 Paul Kelly <[email protected]>
* Fixes #845 - puppetca delete operations should report NotFound
2011-05-08 Ohad Levy <[email protected]>
* fixes #879 - Cryptic error message when nsupdate is not found
2011-05-06 Ohad Levy <[email protected]>
* fixes #880 - incorrect parsing of key settings causes wrong argument type
* partial fix - refs #853
* refs #853 - fixes typo
2011-05-05 Marcello de Sousa <[email protected]>
* fixes #878 - Include wget limits for timeout and retries.
2011-05-03 Ohad Levy <[email protected]>
* fixes #783 -API should contain a version
* fixes #853 - If used with the proxy, the dhcpd server is open for connections from any server
* refs #873 - do not merge pending certificate request info with revoked certificates
* fixes #873 - puppetca api should include revoked certificates and timestamps
2011-05-01 Ohad Levy <[email protected]>
* refs #869 - fixed typos
* fixes #869 - Enable API to sign pending certificate requests
2011-04-17 Ohad Levy <[email protected]>
* Fixes Bug #800, Adds support for tftp_servername
2011-04-06 Jochen Schalanda <[email protected]>
* (Re-) Introduced dedicated system user for smart-proxy
2011-03-31 Frank Sweetser <[email protected]>
* fixes #801 - Flatten path before iterating
2011-03-27 Ohad Levy <[email protected]>
* fixes #795 - Failed to fetch boot files on older ruby versions
2011-03-24 Ohad Levy <[email protected]>
* Fixes #781 - Cleanups and remove ebarresing code
* Merge branch '781' into develop
* fixes #787 - add rake task to send patches
* Fixes #781 - DHCP create attempted when mac already used
2011-03-24 Paul kelly <[email protected]>
* Fixes 779 - windows 64 bit detection wrong
* Fixed #780 - Broken error messaging in MS DHCP
2011-03-20 Jochen Schalanda <[email protected]>
* fixes # 764 - Updated Debian package specs for version 0.1
2011-03-17 Ohad Levy <[email protected]>
* fixes #755 - parenthesize warning
* fixes #754 - undefined method '+' for #<Proxy::DNS::Error
* Updating releas relate files
* fixes #732 - provide better defaults inside rpm package
2011-03-17 Mark Bainter <[email protected]>
* fixes #752 - Lookup the constant for the log level
* fixes #753 - puppetca.rb: Fixing typo in comparison operator
2011-03-17 Lukas Zapletal <[email protected]>
* fixes #610 - tftp file fetching logging
2011-03-16 Lukas Zapletal <[email protected]>
* Adding tags to gitignore file
2011-03-15 Jochen Schalanda <[email protected]>
* Fixes #665 - Set option 'bind' or 'host' depending on Sinatra version.
2011-03-15 Paul Kelly <[email protected]>
* Fixes #737 - Foreman host check was incorrect
2011-03-13 Paul Kelly <[email protected]>
* Fixes #707 - ICMP ping only for root
* Fixes #710-omshell-errors-on-stderr
* Fixes #652 - Minor error reporting issues
* Fixes #711 - DNS update errors are not returned to foreman
2011-03-10 Lukas Zapletal <[email protected]>
* fixes #716 - spec file - no write permission to tmp dir
2011-03-07 Ohad Levy <[email protected]>
* fixes #713: DHCP delete returns "Sinatra doesn't know this ditty"
2011-03-07 Paul Kelly <[email protected]>
* Fixes #651 - Minor issues with the puppetca interface
2011-02-24 Ohad Levy <[email protected]>
* fixes #689 - rpm spec file does not require net-ping
2011-02-21 Paul Kelly <[email protected]>
* Fixes #64 - microsoft DHCP support
2011-02-15 Ohad Levy <[email protected]>
* fixes #627 - Smart Proxy should be able to create a default tftp menu
2011-02-13 Paul Kelly <[email protected]>
* Fixes #663 - Provides a feature query facility
2011-02-10 Justin Sherrill <[email protected]>
* Fixes #627 - added the ability to save a default pxe boot file
2011-02-09 Jochen Schalanda <[email protected]>
* Fixes feature #550 - Added Debian package specification.
2011-02-08 Paul Kelly <[email protected]>
* Fixes #655 - add :json to log_halt
2011-02-01 Lukas Zapletal <[email protected]>
* fixes #620 - PID file creation under /var/log/foreman-proxy
* fixes #549 - Add a rpm package for the smart proxy
2011-01-27 Ohad Levy <[email protected]>
* fixes #625 - provide dhcp subnet details via json
* fixes #624 - allow the proxy to list/show puppet certificates
* fixes #662 - smart proxy can't be stopped
2011-01-27 Paul Kelly <[email protected]>
* Fixes #619 - dsn_key is optional
* Fixes #618 - Provide a dns_server setting
2011-01-26 Paul Kelly <[email protected]>
* Fixes #617 - The @ssl_options is not passed to the run\! call
2011-01-25 Ohad Levy <[email protected]>
* fixes #615 - puppetca should comply with rest best practices
* fixes #614 - proxy should support Daemon mode
* fixes #613 - Allow to use SSL to communicate with the proxy
* cleanup sinatra code. helpers are now shared accross all urls.
* fixes #610 - tftp file fetching should be logged into the smart-proxy log
* fixes #571 - Use Net::Ping library rather than system call
* Clean up of unused code, typos and debug messages
2011-01-06 Ohad Levy <[email protected]>
* fixes #574 - Exception trace when omshell does not perform
2010-12-23 Ohad Levy <[email protected]>
* Ensuring that we read the erb files... not the deleted haml files :)
* remove redundent attribute
* converted haml temlpates to erb templates, as it seems that haml is not packaged on RHEL/CentOS platform
2010-12-21 Ohad Levy <[email protected]>
* cleanup logic, refs #557
* update CSS that subnets will be visible in Chrome too
* fixes #557 - Adds abandoned lease state to ISC dhcp
* dhcp next servers need to be stored in hex, refs #554
2010-12-20 Ohad Levy <[email protected]>
* Fixes #554 - ISC dhcp reservation has incorrect next server value if using host name vs ip
* wget should not be sent into the background immediately, refs #513
2010-12-19 Ohad Levy <[email protected]>
* Fixes #513 - move tftp file fatching to run as in the background
* Fixes #537 - dhcp next server could be saved as a name, not just IP
* Fixes #548 - Subnet sometimes include records from other subnets ISC dhcp does not restrict users to put the host entries inside a subnet block.
* Minor imporvements to the build in dhcp broswer - * added delete reservation option * sorted subnet list * add counters to subnets and records page * fixed incorrect table headers in subnet details page * fixed annonying extra whitespace in the top bar
2010-12-16 Ohad Levy <[email protected]>
* free IP now returns JSON
2010-12-02 Ohad Levy <[email protected]>
* record is not created at this stage...
* Added loggin
2010-12-01 Ohad Levy <[email protected]>
* Sample config file
* Added more verbose errors upon API requests
* Added more error messages to nsupdate based on pikelly patches
* Added timestamps to subnets data
* cleanup the dhcp api's added more error messages etc
* added dhcp vendor type and configuration files into settings
* withspaces alignments
* Renamed foreman-proxy to smart-proxy
2010-10-24 Ohad Levy <[email protected]>
* create the image directory if it doesnt exists Return status of boot file fetching
* fixed typos
2010-10-22 Ohad Levy <[email protected]>
* MAC validations should be case insensitive
2010-10-21 Ohad Levy <[email protected]>
* it show now be possible to run it though the bin directory
* remove swp files
2010-10-19 Ohad Levy <[email protected]>
* added gem spec file
2010-10-18 Ohad Levy <[email protected]>
* added DHCP broke down rest actions into seperate files
2010-10-17 Ohad Levy <[email protected]>
* Added DHCP as a module
* minor refactoring to tftp module
* Changed SETTINGS to openstruct Chagned DNS from a module into a class (wip)
2010-10-14 Ohad Levy <[email protected]>
* Added DNS management
* first commit