This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
forked from theforeman/smart-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
1687 lines (1168 loc) · 62.3 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
2018-10-16 Lukas Zapletal <[email protected]>
* Refs #25100 - do not use Process::CLOCK_MONOTONIC yet
2018-10-15 Lukas Zapletal <[email protected]>
* Fixes #25100 - Ruby logging stack replaced with logging gem
2018-10-10 Michael Moll <[email protected]>
* remove has_rdoc from gemspec
2018-10-03 Lukas Zapletal <[email protected]>
* Fixes #24978 - support for DDNS lease entries
2018-09-21 Timo Goebel <[email protected]>
* refs #23211 - make PuppetCA token provider more resilient
2018-09-18 Ewoud Kohl van Wijngaarden <[email protected]>
* Correct the gemspec
2018-08-27 Julian Todt <[email protected]>
* Fixes #23211 - Add PuppetCa TokenWhitelisting provider
2018-08-24 Lukas Zapletal <[email protected]>
* Fixes #24631 - httpboot module
2018-08-13 Lukas Zapletal <[email protected]>
* Fixes #24591 - fixed debug message in MSDHCP
2018-08-09 Julian Todt <[email protected]>
* Fixes #24553 - Fix PuppetCa migrations
2018-08-01 Eric Helms <[email protected]>
* Generate source with the actual version specified in VERSION (#599)
2018-07-27 Lukáš Zapletal <[email protected]>
* Fixes #24364 - non-ascii logs are readable now
2018-07-17 Tomer Brisker <[email protected]>
* Bump version to 1.20-develop (#594)
2018-06-21 Julian Todt <[email protected]>
* Fixes #23799 - Refactor: Make PuppetCa pluggable
2018-06-20 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #24016 - Allow building a tarball without bundle
2018-06-13 Stephen Benjamin <[email protected]>
* fixes #23917 - convert tls version to string
2018-05-30 Dmitri Dolguikh <[email protected]>
* Bump version to 1.19-develop
2018-05-23 Dmitri Dolguikh <[email protected]>
* Fixes #23433 - lease uids are now parsed correctly
2018-05-22 Dmitri Dolguikh <[email protected]>
* Fixes #23666 - reduced length of systemd test socket path
2018-05-10 dima <[email protected]>
* fixes #23383 - add support for srv dns records
2018-04-27 swadeley <[email protected]>
* Fixes #23399 - Fix puppet kick instructions
2018-04-25 Matt Cahill <[email protected]>
* Fixes #23236 - fix for choria puppetrun on Ubuntu
2018-04-09 Lukas Zapletal <[email protected]>
* Fixes #23166 - MAC DHCP CRUD not case sensitive
2018-04-08 Ewoud Kohl van Wijngaarden <[email protected]>
* Update the README
2018-04-06 Dmitri Dolguikh <[email protected]>
* Fixes #2677 - Removed sinatra workaround for "accept" headers
2018-04-05 Dmitri Dolguikh <[email protected]>
* Fixes #23031 - parse server duid's with nested double quotes
2018-02-28 Dmitri Dolguikh <[email protected]>
* Removed codeclimate badge from README.md
* Fixes #22704 - handle dhcpd's "never" expiring leases
2018-02-27 Dmitri Dolguikh <[email protected]>
* Fixes #22651 - extend dhcpd config parser support for "include"'s
2018-02-19 Dmitri Dolguikh <[email protected]>
* Fixes #22496 - use common free_ips code in ms dhcp provider
2018-02-12 Dmitri Dolguikh <[email protected]>
* Fixes #20826 - additional test for server-duid parser.
2018-01-19 Partha Aji <[email protected]>
* Fixes #22292 - Config option for tftp timeout
2018-01-17 Michael Moll <[email protected]>
* Fixes #22304 - Allow Puppet 5.x in bundle
2018-01-08 Ondrej Prazak <[email protected]>
* Bump version to 1.18-develop
2018-01-03 Eric D. Helms <[email protected]>
* Fixes #21350 - Allow restricting to TLSv1.2
2018-01-02 Dmitri Dolguikh <[email protected]>
* Fixes #21729 - removed gem specs for older rubies
2018-01-01 Michael Moll <[email protected]>
* Fixes #22098 - pin rdoc gem for Ruby <2.2
2017-12-18 Dmitri Dolguikh <[email protected]>
* Fixes #21975 - filename dhcp option is accepted now
2017-12-17 Dmitri Dolguikh <[email protected]>
* Fixes #15535 - http ports used by plugins are being logged now.
2017-12-04 Anthony Chevalet <[email protected]>
* Fixes #21236 - No ping check causes duplicated IP with MS DHCP
2017-11-22 Dmitri Dolguikh <[email protected]>
* Fixes #21710 - correct arguments to find_free_ip are used. (#551)
2017-11-22 Dmitri Dolguikh <[email protected]>
* Fixes #21728 - pinned rack and rack-test for rubies < 2.2
2017-11-16 Anthony Chevalet <[email protected]>
* Fixes #21249 - Check MS DHCP range versus start/end address
2017-11-06 Timo Goebel <[email protected]>
* fixes #21463 - new reservations are deletable
* fixes #21581 - tests run without bundler development group
2017-11-03 Dmitri Dolguikh <[email protected]>
* Fixes #20474 - return different ips on sequential unused_ip calls
2017-09-25 Dmitri Dolguikh <[email protected]>
* Fixes #20826: added parsing of server-duids
2017-09-08 Michael Moll <[email protected]>
* Refs #20843 - Put public_suffix only in test
2017-09-05 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #20843 - Pin public_suffix on RUBY_VERSION 2.0
2017-08-31 Lukáš Zapletal <[email protected]>
* Fixes #20700 - templates are passed with spaces in kind
2017-08-28 Daniel Lobato Garcia <[email protected]>
* Bump version to 1.17-develop
2017-08-17 Tomer Brisker <[email protected]>
* Fixes #20542 - correct link to cipher suite names
2017-08-09 Daniel Lobato Garcia <[email protected]>
* Fixes #20539 - foreman-debug shouldn't save private key
2017-07-18 Eric D. Helms <[email protected]>
* Fixes #17747: Add Puppet 4 paths to debug
2017-07-18 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #20236 - Unify DNS record conflict detection
2017-06-30 Dmitri Dolguikh <[email protected]>
* Fixes #20173,#6819 - removed race condition in Subnet#unused_ip
2017-06-08 Dmitri Dolguikh <[email protected]>
* Fixes #19709 - check version before loading dependencies
2017-05-30 Michael Moll <[email protected]>
* Fixes #6945 - use autosign path for puppetca
2017-05-30 Lukas Zapletal <[email protected]>
* Fixes #19666 - add DHCP record type field
2017-05-25 Dmitri Dolguikh <[email protected]>
* Fixes #19649 - dhcpd provider ignores conflicts with leases.
2017-05-24 Dmitri Dolguikh <[email protected]>
* Fixes #19441 - recursive descent parser for dhcpd config files.
* Fixes #19599: del dhcp record returns empty body on success.
2017-05-23 Michael Moll <[email protected]>
* Fixes #6022 - disable StrictHostKeyChecking
2017-05-22 Lukas Zapletal <[email protected]>
* Fixes #19597 - fallback DHCP hostname pattern
2017-05-19 Dominic Cleal <[email protected]>
* fixes #7832 - add SSL verification tests for production Rack apps
2017-05-09 Dominic Cleal <[email protected]>
* fixes #19480 - add systemd notify support
* fixes #19485 - pin sinatra to 1.x on Ruby 2.0-2.1
2017-05-05 Deltik <[email protected]>
* Fixes #2595 - Add more Rubyipmi methods to BMC API
2017-05-03 Paul Kelly <[email protected]>
* fixes #18177 - file descriptor leak in puppet autosign handling
2017-04-10 tek0011 <[email protected]>
* Fixes #19234: Update register-service.rb
2017-04-10 Dominic Cleal <[email protected]>
* fixes #19225 - compare minor Puppet versions numerically
2017-04-07 Ondrej Prazak <[email protected]>
* Fixes #992 - Make NFS a recognized protocol
2017-03-28 Dmitri Dolguikh <[email protected]>
* Bump version to 1.16-develop
2017-03-27 Dmitri Dolguikh <[email protected]>
* Fixes #18962 - moved isc file parser into dhcp_common
2017-03-01 Dominic Cleal <[email protected]>
* fixes #18745 - add xmlrpc dep to realm_freeipa under Ruby 2.4
2017-03-01 Dmitri Dolguikh <[email protected]>
* Fixes #18399 - use warning instead when cache init fails
2017-02-10 Dmitri Dolguikh <[email protected]>
* Fixes #18290 - increased puppet classes api timeout
2017-02-10 Dmitri Dolguikh <[email protected]>
* Fixes #18395 - better error message with ms dhcp on win2008.
2017-02-08 Dmitri Dolguikh <[email protected]>
* Fixes #17500 - introduced providers for realm module.
2017-02-06 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #18397 - Valid CNAME targets are valid DNS names
2017-01-30 Dmitri Dolguikh <[email protected]>
* Fixes #18072 - removed load_* methods from core dhcp providers
2017-01-30 Michael Moll <[email protected]>
* Fixes #9063 - Revert pinning of Rack to < 1.6
2017-01-26 Dmitri Dolguikh <[email protected]>
* Fixes #18026 - proxy can listen on multiple arbitrary interfaces
2017-01-25 Dmitri Dolguikh <[email protected]>
* Fixes #18070 - add_record() checks for conflicts with leases now.
2017-01-19 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #17906 - Move {create,remove}_*_record to dns_common
2017-01-19 Alexander Olofsson <[email protected]>
* Fixes #18149 - Duplicates due to OU in certnames
2017-01-19 Dmitri Dolguikh <[email protected]>
* Fixes #18115 - Logger is initialized when Syslog isn't available.
2017-01-18 Dmitri Dolguikh <[email protected]>
* Fixes #13318 - Revoked certs always have state 'revoked'
2017-01-16 Dmitri Dolguikh <[email protected]>
* Fixes #18071 - Deleting missing records doesn't generate errors
2017-01-13 Timo Goebel <[email protected]>
* fixes #17856 - support multiple dhcp records for same ip
2017-01-03 Timo Goebel <[email protected]>
* fixes #17868 - dhcp: convert next-server ip correctly
2017-01-03 Ewoud Kohl van Wijngaarden <[email protected]>
* Refs #17037 - Fix deprecation warning in dnscmd
2016-12-21 Shlomi Zadok <[email protected]>
* Fixes #14394 - Undisclose WEBrick server version
2016-12-12 Dmitri Dolguikh <[email protected]>
* Fixes #17554 - inotify events can't overflow the observer anymore
2016-12-07 Lukas Zapletal <[email protected]>
* Fixes #17045 - hostgroup templates URLs proxied correctly
2016-12-06 Dominic Cleal <[email protected]>
* Bump version to 1.15-develop
2016-11-22 Dominic Cleal <[email protected]>
* fixes #17387 - SubnetService#find_subnet has constant time lookup
2016-11-16 Dmitri Dolguikh <[email protected]>
* Fixes #15874 - added logging of 'X_REQUEST_ID' http headers
2016-11-16 Lukas Zapletal <[email protected]>
* Fixes #17172 - SSH BMC network details implementation
* Fixes #16079 - subnet recursive parsing
2016-11-14 Dmitri Dolguikh <[email protected]>
* Fixes #17037 - Resolver::DNS#getresources is used now.
2016-11-10 Dmitri Dolguikh <[email protected]>
* Fixes #7766: ms dhcp provider uses native dhcps api now.
2016-11-09 Alexander Fisher <[email protected]>
* fixes #17125 - Prompt for Windows service name
2016-11-08 Dominic Cleal <[email protected]>
* fixes #17262 - verify the JSON request body contains a hash
2016-11-08 Pavel Moravec <[email protected]>
* Fixes #17069 - foreman-debug counts size instead lines
2016-10-20 Dmitri Dolguikh <[email protected]>
* Fixes #16964 - Proxy::Dns::Record#dns_find works with ipv6 params
2016-10-12 Tomas Strachota <[email protected]>
* Fixes #16860 - use blank 404 page
2016-10-04 Alexander Fisher <[email protected]>
* fixes #13237 - Use RRData option when deleting DNS records
2016-10-03 Lukas Zapletal <[email protected]>
* Fixes #10250 - simple SSH BMC provider
2016-10-03 Dominic Cleal <[email protected]>
* fixes #16760 - require 'concurrent' to load concurrent-ruby
2016-10-03 Dmitri Dolguikh <[email protected]>
* Fixes #16766 - allow non hash-rocket syntax in rubocop
2016-09-27 Dmitri Dolguikh <[email protected]>
* Fixes #15095 - Support for puppet environment classes api
2016-09-07 Dominic Cleal <[email protected]>
* Bump version to 1.14-develop
2016-09-01 Dmitry Vasilets <[email protected]>
* Fixes #16410 - handle several instances of "server" in ipa config
2016-08-18 Dmitri Dolguikh <[email protected]>
* Fixes #16099 - in daemon mode module threads continue to execute
* Fixes #16122 - added equality method
* Fixes #16145 - Removed unnecessary tests for common dhcp entities
2016-08-17 Dominic Cleal <[email protected]>
* refs #16021 - monitor modifications on entire directory
* fixes #16021 - restart inotify monitoring on queue overflow
2016-08-16 Dmitri Dolguikh <[email protected]>
* Fixes #15942 - dns module and providers use updated di config.
2016-08-15 Konstantin Orekhov <[email protected]>
* fixes #16009 - added support for native iPXE variant
2016-08-15 Ivan Nečas <[email protected]>
* Fixes #10581 - ensure string from IPA XML-RPM is marked as UTF8
2016-08-09 Timo Goebel <[email protected]>
* fixes #15985 - Pxegrub2 tftp filename prefix
2016-08-04 Dmitri Dolguikh <[email protected]>
* Fixes #15959 - removed recursive require
2016-08-04 Guido Günther <[email protected]>
* Fixes #15944 - Make it obvious that messages come from DHCP
2016-07-29 Lukas Zapletal <[email protected]>
* Fixes #15864 - Pxelinux alias variant for Syslinux
2016-07-29 Dmitri Dolguikh <[email protected]>
* Fixes #2687: Leases file is no longer parsed on every request
* Fixes #15865 - pin json_pure to < 2.0.0 for RUBY_VERSION < 2.0.0
2016-07-25 Dmitri Dolguikh <[email protected]>
* Fixes #15791 - no more intermittent test failures in ms dhcp test
2016-07-21 Guido Günther <[email protected]>
* fixes #13575 - Don't fail on missing PXEClient dhcp opt
2016-07-05 Paul Kelly <[email protected]>
* fixes #15572 - incorrect missing vendor class check in native ms
2016-07-01 Paul Kelly <[email protected]>
* fixes #15452 - disable DDNS updates for Native MS DHCP provider
2016-06-28 Paul Kelly <[email protected]>
* fixes #1172 - proxy should return leases and reservations
* fixes #15244 - provide a CNAME api
2016-06-20 Dmitri Dolguikh <[email protected]>
* Fixes #15434 - pin ruby-libvirt to > 0.6.0
2016-06-13 Paul Kelly <[email protected]>
* fixes #15373 - windows ping called with very small timeout
2016-06-09 Paul Kelly <[email protected]>
* fixes #15348 - close check is now correct for std_out and std_err
2016-06-08 Jack Watroba <[email protected]>
* fixes #15341 - case sensitivity issues with dnscmd
2016-06-07 Dominic Cleal <[email protected]>
* fixes #15323 - correct Puppet SSH provider name
2016-06-06 Dominic Cleal <[email protected]>
* fixes #15300 - change rubygems.org API endpoint to HTTPS
2016-06-06 Dmitri Dolguikh <[email protected]>
* Fixes #15025 - do not show foreman_proxy startup messages.
2016-06-03 Dmitri Dolguikh <[email protected]>
* Fixes #15240 - empty arrays no longer trigger validation failures
2016-06-02 Lukas Zapletal <[email protected]>
* Fixes #12633 - Pxegrub2 variant and multiple configs
2016-05-31 Dominic Cleal <[email protected]>
* Bump version to 1.13-develop
2016-05-23 Dmitri Dolguikh <[email protected]>
* Fixes #15130 - use puppet apiv2 when 'environmentpath' is present
* Fixes #15110 - used default setting values are marked now.
2016-05-18 Dmitri Dolguikh <[email protected]>
* Fixes #13667 - support for puppet 4.0 in puppet_proxy module
2016-05-13 Alexander Fisher <[email protected]>
* fixes #15043 - Fix puppet 4 mco search path
2016-05-13 Lukas Zapletal <[email protected]>
* Fixes #15028 - log buffer capacity reported correctly
2016-05-12 Dmitri Dolguikh <[email protected]>
* Fixes #14952 - isc_dhcp respects :subnets setting now.
2016-05-11 Lukas Zapletal <[email protected]>
* Fixes #14995 - proxy default log is INFO
2016-05-11 Dmitri Dolguikh <[email protected]>
* Fixes #14618 - refactored module initialization
2016-05-09 Matthias Thubauville <[email protected]>
* Fixes #10015 - FreeIPA realm-proxy permissions do not allow for removing a DNS record at time of host delete
2016-05-05 Lukas Zapletal <[email protected]>
* Fixes #14931 - TFTP class instantiating fixed
2016-05-02 Dmitri Dolguikh <[email protected]>
* Fixes #14775 - virsh provider is now being renamed
* Fixes #14755 - Do not install SIGUSR1 handler on windows.
2016-04-28 Michael Moll <[email protected]>
* Fixes #14862 - pin webmock version for Ruby <1.9.3
2016-04-22 Lukas Zapletal <[email protected]>
* Fixes #13761 - libvirt provider with native bindings
2016-04-15 Ewoud Kohl van Wijngaarden <[email protected]>
* Refs #13544: Test for AAAA record case sensetivity
2016-04-15 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #13544: Support IPv6 in DNS
2016-04-12 Tomer Brisker <[email protected]>
* Fixes #13747 - Allow configuration of dsabled SSL cipher suites
2016-04-06 Dmitri Dolguikh <[email protected]>
* Fixes #14461 - removed :method_missing from Proxy::Settings::Plugin
2016-03-31 Pieter Hollants <[email protected]>
* Fixes #10504 - Avoid splitting undefined customrun_args
2016-03-30 Brandon Weeks <[email protected]>
* Fixes #14387 - correctly disable SSLv3 on Ruby 1.8.7
2016-03-24 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #13552: Validate DNS names passsed to the DNS API
* Fixes #13551: Add IP address validation in DNS API
2016-03-23 Dominic Cleal <[email protected]>
* fixes #14142 - launch WEBrick directly, avoiding Rack::Server
2016-03-17 Dmitri Dolguikh <[email protected]>
* Fixes #12295 - Added support for log rotation
2016-03-15 Dmitri Dolguikh <[email protected]>
* Fixes #14159 - output to the console during tests reduced to the normal volume
2016-03-10 Dominic Cleal <[email protected]>
* fixes #14134 - update rubocop and pin for rake 11.x compatibility
2016-03-01 Dmitri Dolguikh <[email protected]>
* Fixes #13947 - removed html views for dhcp and root modules
2016-02-29 Ewoud Kohl van Wijngaarden <[email protected]>
* Refs #12209: Pass in the actual values to {create,remove}_ptr_record
2016-02-25 cyrus-mc <[email protected]>
* Fixes #13841 - Smart Proxy DNS nsupdate GSS fails
2016-02-25 Daniel Helgenberger <[email protected]>
* Fixes #13536 - working ptr's for dnscmd
2016-02-24 Lukas Zapletal <[email protected]>
* Fixes #13427 - fixed log buffer with SYSLOG
2016-02-19 Dominic Cleal <[email protected]>
* Bump version to 1.12-develop
2016-02-19 Dmitri Dolguikh <[email protected]>
* Fixes #13028: provider will not be configured if the main plugin is disabled
2016-02-18 Dominic Cleal <[email protected]>
* refs #13638 - fix .empty? check in pkg:generate_source task
2016-02-18 Brandon Weeks <[email protected]>
* Fixes #13638 - Enable rubocop 0.37.1 cops
2016-02-17 Dominic Cleal <[email protected]>
* refs #13421 - change array layout to suit rubocop 0.37.1
2016-02-15 Daniel Helgenberger <[email protected]>
* Fixes #13421 - Support for dnscmd zone names and sub zones
2016-02-15 Marek Hulan <[email protected]>
* Fixes #13701 - improve .gitignore
2016-02-10 Goh Choon Ming <[email protected]>
* fixes #13522 - add correct path to puppet binary
2016-02-10 Brandon Weeks <[email protected]>
* Fixes #13637 - Upgrade rubocop to 0.37.1
2016-01-27 Lukas Zapletal <[email protected]>
* Refs #12715 - decoupled logs API from core
2016-01-27 Daniel Helgenberger <[email protected]>
* Fixes #13346 - use of .each_line on array
2016-01-27 Dominic Cleal <[email protected]>
* refs #12715 - update default values of log_buffer settings
2016-01-25 Lukas Zapletal <[email protected]>
* Fixes #12715 - simple log buffer and API
2016-01-21 Dmitri Dolguikh <[email protected]>
* Fixes #13219: force utf-8 external encoding on puppet classes
* Fixes #13129: fixes intermittent test failures in ms dhcp server
2016-01-12 Dominic Cleal <[email protected]>
* fixes #13062 - handle missing or non-IP fixed-address ISC fields
2015-12-22 Dmitri Dolguikh <[email protected]>
* Fixes #12555: switched to session-based freeipa api
2015-12-10 Dmitri Dolguikh <[email protected]>
* Fixes #11081: broke out dhcp providers into separate modules
2015-12-10 Brandon Weeks <[email protected]>
* Fixes #12572 - refactor openssl settings
2015-11-30 Dmitri Dolguikh <[email protected]>
* Fixes #10378: smart-proxy service starts on windows now
2015-11-26 Brandon Weeks <[email protected]>
* Fixes #12465 - remove deleted records from results
2015-11-26 Shlomi Zadok <[email protected]>
* Fixes #12568 - Add module versions to /version
2015-11-26 Aaron Stone <[email protected]>
* Fixes #12597: remove extraneous method definition in the DNS API tests
2015-11-24 Dmitri Dolguikh <[email protected]>
* Fixes #12209: introduced basic support for di in dns module
2015-11-24 Brandon Weeks <[email protected]>
* Fixes #12574 - Upgrade rubocop to 0.35.1
* Fixes #12578 - set SSL_OP_CIPHER_SERVER_PREFERENCE
* Fixes #12580 - configure WEBrick to use ::Proxy::Log.logger
2015-11-23 Dmitri Dolguikh <[email protected]>
* Fixes #12466: isc dhcp provider handles subnet block declarations correctly now.
2015-11-20 Dmitri Dolguikh <[email protected]>
* Fixes #12546: smart-proxy now loads under bundler_ext
2015-11-19 Dmitri Dolguikh <[email protected]>
* Fixes #12146: moved core dependencies into gemspec
2015-11-16 Brandon Weeks <[email protected]>
* Fixes #12469 - raise Proxy::DHCP::InvalidRecord
2015-11-12 Baptiste Agasse <[email protected]>
* Fixes #12211 - Improve DHCP subnets parsing to get more informations from DHCP server
2015-11-12 Dominic Cleal <[email protected]>
* fixes #12449 - load nsupdate_gss config from plugin settings
2015-11-11 Dmitri Dolguikh <[email protected]>
* Fixes #12136: load only Puppet dependencies that are required by the config
2015-11-10 Dmitri Dolguikh <[email protected]>
* Fixes #12254: pinned addressable gem to ~> 2.3.8
* Fixes #8946: Added a handler for SIGTERM
2015-11-10 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #12138: Add require statements to run from bundler
2015-11-09 Lukas Zapletal <[email protected]>
* Fixes #12370 - proxy logs stacktrace on SIGTTIN
2015-11-02 Dmitri Dolguikh <[email protected]>
* Fixes #12319: fixed race condition in templates module
2015-10-20 Dmitri Dolguikh <[email protected]>
* Fixes #12217: support older versions of bundler
2015-10-19 Timo Goebel <[email protected]>
* fixes #12178 - Smart Proxy Plugins do not handle rc versions well
2015-10-19 Dmitri Dolguikh <[email protected]>
* Fixes #12152: support for ruby 2.2.x
2015-10-13 Dmitri Dolguikh <[email protected]>
* Fixes #9974: do not attempt to open settings.d/foreman_proxy.yml
2015-10-12 Daniel Helgenberger <[email protected]>
* Fixes #11783 - MS providers: add compat for ruby2.0
2015-10-07 Dominic Cleal <[email protected]>
* Bump version to 1.11-develop
2015-10-01 Dmitri Dolguikh <[email protected]>
* Fixes #12012: missing puppet module dependencies no longer crash smart-proxy on startup
2015-10-01 Fernando Carolo <[email protected]>
* Fixes #11997 - DHCP option for NX-OS should be quoted
2015-09-30 Dominic Cleal <[email protected]>
* refs #11599 - permit Puppet 4.x in Gemfile
2015-09-29 Dmitri Dolguikh <[email protected]>
* Fixes #11599: introduced support for puppet 4.0 These changes are based on Damien Churchil's PR
2015-09-17 Dmitri Dolguikh <[email protected]>
* Fixes #11866: first pass at speeding up dhcp (both isc and ms).
2015-09-11 Lukas Zapletal <[email protected]>
* Fixes #11318 - HttpDownloads.start_download returns instance
* Fixes #11676 - added dhcp_server option
2015-09-04 Dmitri Dolguikh <[email protected]>
* fixes #11653: only display warning message about unavailability of 'SYSLOG' when it was configured
* fixes #11654: no longer rely on rubygems to determine rack version
2015-08-28 Lukas Zapletal <[email protected]>
* Fixes #11323 - fixed PID writing, interrupt trap and daemon logging
2015-08-25 Dmitri Dolguikh <[email protected]>
* Fixes #10940: puppetrun works properly now on ruby > 1.8.7
2015-08-07 Dmitri Dolguikh <[email protected]>
* Fixes #11311: puppet tests no longer fail if /etc/puppet/puppet.conf doesn't exist
2015-08-03 Dmitri Dolguikh <[email protected]>
* Fixes #11103: tftp tests no longer fail when module config file contains changes.
* Fixes #11229: changes in puppet modules are now being detected when listing available puppet classes
2015-07-22 Lukas Zapletal <[email protected]>
* Fixes #10259 - Templates are now fully proxied
2015-07-16 Dominic Cleal <[email protected]>
* fixes #11131 - use consistent timestamps in cache test expectations
2015-07-16 Dmitri Dolguikh <[email protected]>
* fixes #10941: fixed puppet class caching
2015-07-14 Lukas Zapletal <[email protected]>
* Fixes #10877 - puppet pinned to 3.x series
2015-07-14 Dmitri Dolguikh <[email protected]>
* fixes #11098: fixed ruby 1.8-specific issues around plugin and provider searches
2015-07-10 Ewoud Kohl van Wijngaarden <[email protected]>
* Fixes #11090: fix README filename in the gemspec
2015-07-10 Dmitri Dolguikh <[email protected]>
* Fixes #7008: dns providers are now plugins
2015-06-26 Dominic Cleal <[email protected]>
* Bump version to 1.10-develop
2015-06-24 Dmitri Dolguikh <[email protected]>
* fixes #10801: fixed spelling of error messages in puppetca module
* fixes #10895: moved smart_proxy_chef-specific classes to the plugin itself
2015-06-18 Dmitri Dolguikh <[email protected]>
* fixes #10769 - added a debug trace when downloading templates from foreman
2015-06-17 Klaas Demter <[email protected]>
* refs #8046: Add possibility for providers to overwrite find_record to load single records
2015-06-16 Fernando Carolo <[email protected]>
* Fixes #10527 - DHCP/TFTP support for Cisco POAP
2015-06-11 Dmitri Dolguikh <[email protected]>
* Fixes #9121: better readme for the github project page
2015-06-05 Lukas Zapletal <[email protected]>
* Fixes #10639 - stracktrace is reported via log_halt
2015-06-03 Dmitri Dolguikh <[email protected]>
* Fixes #10003: Support for config file migrations
2015-05-05 Martin Matuska <[email protected]>
* Fixes #9713: restore WIN32 service support
2015-05-05 Jon McKenzie <[email protected]>
* Fixes #10324 - Improves certificate serial lookup in Puppet CA module
2015-05-05 Matt Chesler <[email protected]>
* Fixes #10320 - WIN32 requires additional gems
2015-05-05 Florian Maier <[email protected]>
* Fixes #10264 - omapi port not evaluated.
2015-04-30 Corey Osman <[email protected]>
* Fixes #10116 - BMC is not able to use parameters passed in through body
2015-04-08 Corey Osman <[email protected]>
* Fixes #7543 - allow additional rubyipmi connection options to be passed through
2015-04-07 Corey Osman <[email protected]>
* Fixes #9852 - REST API violation in BMC smart proxy API * authentication errors now return 401 and proper message
2015-04-02 Dominic Cleal <[email protected]>
* fixes #9919 - stub DNS lookup during trusted hosts test
2015-03-31 Marek Hulan <[email protected]>
* Fixes #9740 - support foreman_url with path
2015-03-20 Corey Osman <[email protected]>
* Fixes #9840 - BMC providers should return 501 error code when they don't implement the api call
* Fixes #9711 - bmc module does not full implement its api * adds additional logic around providers * implements /providers, /providers/installed, /host, / * the / returns a list of resources to use to help the user * catches a case where if the provider is nil, we can default to a provider and warn the user * changes the bmc_setup method to be public instead of private. * refactors the providers_installed? rubyipmi command to providers_installed
* Fixes #9710 - add rubyipmi test_connection api call
* Fixes #9709 - allow the bmc module to log all impi calls
* Fixes #9709 - allow the bmc module to log all impi calls
2015-03-03 Dominic Cleal <[email protected]>
* Bump version to 1.9-develop
2015-02-26 Corey Osman <[email protected]>
* Fixes #9245 - Add override setting to allow mcollective puppet runs to run as a different user
2015-02-24 Christian Arnold <[email protected]>
* refs #8625: add support for custom salt_puppetrun_cmd config parameter
2015-02-19 Dmitri Dolguikh <[email protected]>
* refs #9299: prefixes ending with a '/' do not get appended a '-'
2015-02-19 Lukas Zapletal <[email protected]>
* Fixes #9457 - fixed file permissions of debug script
2015-02-09 Lukas Zapletal <[email protected]>
* Fixes #9089 - refactored SSL client verification into method
* Refs #8710 - moved foreman-debug bits into proxy package
2015-01-28 Markus Frosch <[email protected]>
* Refs #7849 - Avoid OpenSSL deprecation
2015-01-27 Stephen Benjamin <[email protected]>
* fixes #9102 - remove trusted_hosts check from templates module
2015-01-26 Lukas Zapletal <[email protected]>
* Fixes #8905 - bind_port config option
2015-01-26 Markus Frosch <[email protected]>
* Fixes #7849 - re-factor trusted_hosts handling
2015-01-21 Dmitri Dolguikh <[email protected]>
* Fixes #9061: pinned rack version to < 1.6
2015-01-14 Markus Frosch <[email protected]>
* Fixes #8948: Remove implicit test ordering from DHCP API test
2015-01-14 zjherner <[email protected]>
* Fixes #8788 - DHCP not detecting pingable addresses on Windows
2015-01-07 Mathieu Parent <[email protected]>
* Fixes #8853 - Actually redirect stderr to proxy error log
2014-12-30 Shlomi Zadok <[email protected]>
* fixes #8811 - refactor per-module enabling of http(s) to http(s)_rackup
2014-12-22 Greg Sutcliffe <[email protected]>
* Fixes #8748 - Allow per-module enabling of http(s)
2014-12-17 Ori Rabin <[email protected]>
* Fixes #8210 - Adding caching for smart-proxy puppet classes using Stefan Julin's implementation of cache
2014-12-11 Lukas Zapletal <[email protected]>
* Fixes #8538 - Fixed ISC DHCP states and duplicities
2014-11-26 Dmitri Dolguikh <[email protected]>
* fixes #8282: sslv3 is disabled
2014-11-21 Stephen Benjamin <[email protected]>
* fixes #7197 - add man page for foreman-prepare-realm
2014-11-20 Ori Rabin <[email protected]>
* Fixes #8347 - facts feature should not be enabled by default
2014-11-20 Stephen Benjamin <[email protected]>
* fixes #8278 - update foreman-prepare-realm for freeipa 4
2014-11-12 Greg Sutcliffe <[email protected]>
* Refs #8267 - pass template_url in call to foreman
2014-11-11 Lukas Zapletal <[email protected]>
* Fixes #8320 - shutdown shell provider threading fixed
2014-11-06 Dominic Cleal <[email protected]>
* fixes #8300 - set webmock custom HTTP status response correctly
2014-11-06 Marek Hulan <[email protected]>
* Fixes #8160 - Remove chef related code
2014-11-04 Dustin Tsang <[email protected]>
* Refs #969 - Proxy-side changes for serving templates from the proxy
2014-11-03 Shlomi Zadok <[email protected]>
* fixes #7352 - missing DNS record returns 404
2014-10-29 Lukas Zapletal <[email protected]>
* Fixes #8006 - added STDOUT proxy log option
2014-10-28 Dominic Cleal <[email protected]>
* Bump version to 1.8-develop
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]>