-
Notifications
You must be signed in to change notification settings - Fork 31
/
CHANGELOG
1017 lines (601 loc) · 21.2 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
vagrant-pe_build
================
0.19.2
------
2019-09-05
This is a backwards compatible bugfix release.
* Add support for PE 2019.1.1
* Add support for PE 2019.0.4
* Add support for PE 2018.1.9
* Add test coverage for Vagrant 2.2.5
0.19.1
------
2019-06-05
This is a backwards compatible bugfix release.
* Fix the pe_agent provisioner to read and use the master's version number
instead of the agent's when determining how to provision and clean up
certificates.
0.19.0
------
2019-05-30
This is a backwards compatible feature release.
* Add support for Ubuntu 18.04 masters.
* Add support for RedHat 8 masters.
* Add test coverage for Vagrant 2.2.4
* Add support for PE 2019.1.0
* Add support for PE 2019.0.3
* Add support for PE 2018.1.8
0.18.2
------
2019-01-29
This is a backwards compatible bugfix release.
* Add test coverage for Vagrant 2.2.3
* Add support for 2018.1.7
* Add support for 2019.0.2
* Disabled collection of analytics from PE installs created by the
vagrant-pe_build plugin.
0.18.1
------
2019-01-01
This is a backwards compatible bugfix release.
* Add test coverage for Vagrant 2.2
* Add support for 2018.1.5
* Add support for 2019.0.1
* Fixed an issue where Windows agent packages were not downloaded to the
location where the installer expected them.
* Improved logging around failed Windows installations.
0.18.0
------
2018-10-10
This is a backwards compatible feature release.
* Add support for signing and purging agent certificates with Puppet 6
CA commands.
* Add support for two new agent types, "replica" and "compile", which can
be used to provision PE HA replicas and compilers.
* Add support for 2019.0.0
Huge thanks to Jarret Lavallee for contributing Puppet 6 CA support along
with the replica and compile agent roles.
0.17.14
-------
2018-08-23
This is a backwards compatible bugfix release.
* Add support for 2016.4.15
* Add support for 2017.3.10
* Add support for 2018.1.4
* Add support for 2016.4.14
* Add support for 2017.3.9
* Add support for 2018.1.3
0.17.13
-------
2018-06-18
This is a backwards compatible bugfix release.
* Add support for 2016.4.13
* Add support for 2017.3.8
* Add support for 2018.1.2
* Add Vagrant 2.0 to test matrix.
* Add Vagrant 2.1 to test matrix.
0.17.12
-------
2018-05-02
This is a backwards compatible bugfix release.
* Add support for 2016.4.10
* Add support for 2016.4.11
* Add support for 2017.3.4
* Add support for 2017.3.5
* Add support for 2017.3.6
* Add support for 2018.1.0
* Add Vagrant 1.9 to test matrix.
0.17.11
-------
2017-11-07
This is a backwards compatible bugfix release.
* Add support for 2016.4.9
* Add support for 2017.2.5
* Add support for 2017.3.2
0.17.10
-------
2017-10-17
This is a backwards compatible bugfix release.
* Add support for 2017.3.1
0.17.9
------
2017-10-13
This is a backwards compatible bugfix release.
* Fix an incorrect use of twentyseventeen_two_x in the 2017.3 release
definition.
0.17.8
------
2017-10-12
This is a backwards compatible bugfix release.
* Add support for 2017.3.0
0.17.7
------
2017-09-21
This is a backwards compatible bugfix release.
* Add support for 2017.2.4
* Add support for 2016.4.8
0.17.6
------
2017-08-08
This is a backwards compatible bugfix release.
* Add support for 2017.2.3
0.17.5
------
2017-06-23
This is a backwards compatible bugfix release.
* Add support for 2016.4.6, 2016.4.7 and 2017.2.2.
0.17.4
------
2017-05-11
This is a backwards compatible bugfix release.
* Add support for 2016.4.5 and 2017.2.1.
0.17.3
------
2017-04-12
This is a backwards compatible bugfix release.
* (GH-134) Allow dns-alt-names in cert requests for provisioning
compile masters.
* (GH-135) Fix GPG key updates for 2.7, 2.8 and 2016.2.
* (GH-130) Deprecate Vagrant versions earlier than 1.8.
* Add support for 2016.4.4, 2017.1.0, 2017.1.1 and 2017.2.0.
0.17.2
------
2017-02-16
This is a backwards compatible bugfix release.
* Update version check used when determining GPG key replacement.
0.17.1
------
2017-02-13
This is a backwards compatible bugfix release.
* Update GPG key used to sign packages for PE 2016.2 and earlier.
0.17.0
------
2016-12-13
This is a backwards compatible feature release.
* Add support for PE 2016.5.1.
* Disable PE analytics collection.
* (GH-119) Make errors thrown during agent cleanup non-fatal.
0.16.0
------
2016-10-20
This is a backwards compatible feature release.
* Add support for PE 2016.4.0.
* (GH-127) Switch download progressbars to the ruby-progressbar library.
0.15.6
------
2016-09-10
This is a backwards compatible bugfix release.
* (GH-126) Don't use root privileges when staging installer tarballs.
0.15.5
------
2016-08-23
This is a backwards compatible bugfix release.
* (GH-125) Fix curl TLS flag used by pe_agent provisioner.
0.15.4
------
2016-08-09
This is a backwards compatible bugfix release.
* Add support for PE 2016.2.1
0.15.3
------
2016-07-19
This is a backwards compatible bugfix release.
* (GH-122,GH-123,GH-124) Re-work GPG fix to address issues with the
installation process.
0.15.2 -- yanked
----------------
2016-07-12
**NOTE:** Yanked on 7/18/2016 due to breaking issues caused by the GPG fix.
This is a backwards compatible bugfix release.
* (GH-120) Fix expired GPG package signing key bundled with PE releases
shipped prior to April 29th, 2016.
0.15.1
------
2016-06-21
This is a backwards compatible bugfix release.
* Minor updates to the 2016.2.0 installation template to match stock answer
files distributed with the tarball installer.
0.15.0
------
2016-05-11
This is a backwards incompatible feature release.
* (GH-95) *Breaking change* Using the pe_bootstrap provisioner to install
is deprecated for 2015.2.0 and newer and raises an error starting with
2016.2.0. Agent installs should be transitioned to the pe_agent
provisioner.
* (GH-116) Starting with PE 2016.2.0, the new PEM installer is used to
install Puppet Masters. Answer files for this installer should be
written in HOCON format instead of bash format.
0.14.2
------
2016-04-19
This is a backwards compatible bugfix release.
* (GH-114) Fix incorrect LATEST_VERSION in PEBuild::Release.
0.14.1
------
2016-04-07
This is a backwards compatible bugfix release.
* Add support for PE 2016.1.1
0.14.0
------
2016-03-26
The is a backwards compatible feature release.
* (GH-40) The pe_bootstrap provisioner has been refactored to skip most
actions if PE is already installed.
* (GH-78) Provisioners running Windows installs now wait for msiexec to
complete and write logs to puppet-enterprise-installer.log.
* (GH-110) The pe_agent provisioner now installs Windows agents using packages
provided by pe_repo instead of falling back to the pe_bootstrap installer.
* (GH-112) The pe_boostrap provisioner can be configured to download
installers directly to the vm instead of relying on the /vagrant shared
filesystem by setting shared_installer to false. This is useful for
compute environments such as AWS and OpenStack where VMs are not running
directly on the Vagrant host.
* Add support for PE 3.8.4, 2015.3.3 and 2016.1.0.
0.13.7
------
2015-02-10
This is a backwards compatible bugfix release.
* (GH-111) Add support for all forseeable 3.8.z releases as the answer file
format is unlikely to change.
* Add support for PE 2015.3.1 and PE 2015.3.2.
0.13.6
------
2015-12-17
This is a backwards compatible bugfix release.
* (GH-60) Fix PE tarball downloads on windows.
* (GH-109) Fix pe_bootstrap agent installations for 2015.3.x. Note that this
functionality isn't technically supposed to work in 2015.x and may break
with upcoming releases. The pe_agent provisioner is the recommended method
for installing 2015.x agents.
0.13.5
------
2015-12-08
This is a backwards compatible bugfix release.
* Add release definitions for PE 2015.3.0.
0.13.4
------
2015-11-15
This is a backwards compatible bugfix release.
* Fix an error that was raised during agent destruction if the master vm was
powered off.
0.13.3
------
2015-11-07
This is a backwards compatible bugfix release.
* (GH-107) Fall back to using VM names as certnames if VM hostnames are
unset.
* (GH-108) Added support for PE 3.8.3 and 2015.2.3.
0.13.2
------
2015-10-31
This is a backwards compatible bugfix release.
* (GH-104) Fixed an issue where the `pe_agent` provisioner would reject
PE version 2015.2.0 as being "too old".
* (GH-105) Fixed an issue where the `pe_agent` provisioner would raise
an error during agent deletion if the master wasn't created.
0.13.1
------
2015-10-25
This is a backwards compatible bugfix release.
* (GH-100) Fixed an issue where the `pe_build` provisioner would fail
validation after provisioning had been executed. Some Vagrant providers
and plugins set up action chains that run validation multiple times.
* (GH-101) When loading facts, POSIX guests now properly search for
Puppet installations.
* (GH-102) Searches for Puppet installations are performed using the root
account and environment variables.
0.13.0
------
2015-10-18
This is a backwards compatible feature release.
* Support for PE 2015.2.2.
* (GH-69), (GH-54) Added a new `pe_agent` provisioner which provides
fictionless agent installation for PE 2015.2.0 and newer. This provisioner
also supports orchestrating actions on the PE master VM, such as setting
up `pe_repo` to serve agent packages, signing agent certificates and
purging agent data when VMs are destroyed.
* (GH-99) Windows agents running PE 3.7.0 and newer are now installed from
64-bit packages if the underlying hardware supports it.
* (GH-91) New guest capability for retrieving VM facts using `puppet facts`.
A basic set of `architecture`, `os` and `release` facts is provided if
Puppet is not installed. There is a new command, `puppet pe-build facts`
for retrieving this data in JSON format, but the primary usecase is to
inform `pe_agent` decision-making.
0.12.0
------
2015-09-24
This is a backwards compatible feature release.
* (GH-89) Support 2015.2.x master platforms and Windows
This release adds support for all 2015.x.2 master platforms:
- Enterprise Linux: 6, 7
- Ubuntu: 12.04, 14.04
- SLES: 11, 12
Tarball installers are no longer available for other agent platforms, so
support for those is currently pending. Windows installation is still
supported.
0.11.0
------
2015-09-08
This is a feature release that also removes one deprecated command.
* (GH-66) The `pe_bootstrap` provisioner now has a `answers_extra`
configuration option. This option can be set to a list of strings which
will be appended to the answer file, one entry per line.
* (GH-44) Vagrant 1.3.0 prevented any plugin from declaring a command that
uses a `--version` flag. The `vagrant pe-build copy` command now uses a
flag called `--release` to specify which PE version to download.
* (GH-35) The deprecated `vagrant pe-build download` command has been
removed. Use `vagrant pe-build copy` instead.
0.10.4
------
2015-08-12
This is a backwards compatible bugfix release
* Add support for PE 2015.2.0
0.10.3
------
2015-06-18
This is a backwards compatible bugfix release.
* Add support for PE 3.8.1.
0.10.2
------
2015-06-08
This is a backwards compatible bugfix release.
* Fix compatibility issues with Puppet Server and Puppet 4.
0.10.1
------
2015-04-28
This is a backwards compatible bugfix release.
* Add release info for PE 3.8.0.
* Update release info for PE 3.3.2 and PE 3.7.2.
0.10.0
------
2015-04-08
This is a backwards compatible feature release.
* Allow `version_file` to be a URI. This allows an external service to
determine the version of PE to install on a machine.
0.9.7
-----
2015-03-26
This is a backwards compatible patch release.
* Add support for 3.7.x patch releases.
* (GH-81) Add support for upcoming future parser settings.
0.9.6
-----
2014-10-17
This is a backwards compatible patch release.
* (GH-74) Change the q_database_host answer on 3.x masters to the hostname of
the box instead of localhost.
* (GH-75) Generalize Windows installation so that it no longer searches for
the installer in Virtualbox specific mount points.
0.9.5
-----
2014-09-09
This is a backwards compatible patch release.
* Add release info for PE 3.3.2 and 2.8.8.
0.9.4
-----
2014-08-29
This is a backwards compatible patch release.
* Fix detection of Solaris 11 as a Solaris operating system.
0.9.3
-----
2014-08-20
This is a backwards compatible patch release.
* Add release info for PE 3.3.1.
0.9.2
-----
2014-07-15
This is a backwards compatible patch release.
* Add release info for PE 3.3.0.
0.9.1
-----
2014-07-13
This is a backwards compatible bugfix release.
* (GH-68) Fix a regression in merging version numbers set in global config.
0.9.0
-----
2014-07-09
This is a backwards compatible feature release.
* Add two new config attributes, `version_file` and `series`, that add
flexibility to the installation location.
* Internal code cleanup and re-organization.
* Add unit and acceptance tests.
0.8.8
-----
2014-06-10
This is a backwards compatible release.
* Add support for PE 2.8.7.
* (GH-63) Add version detection for Debian 7, Solaris 11 and Ubuntu 14.04.
0.8.7
-----
2014-05-14
This is a backwards compatible release.
* Fully enabled support for PE 1.2.x.
* Bumped default PE version to 3.2.3.
0.8.6
-----
2014-04-15
This is a backwards compatible release.
* (GH-57) Add support for Debian 7 on PE 3.x
* (GH-57) Add support for PE 2.8.6 and 3.2.2
### Thanks
Thanks to Charlie Sharpsteen for his work on this release.
0.8.5
-----
This is a backwards compatible maintenance release.
* (GH-56) Add support for Vagrant 1.5.
### Thanks
Thanks to Reid Vandewiele for his work on this release.
0.8.4
-----
This is a backwards compatible maintenance release.
* Support for Puppet Enterprise for 2.8.5
* Support for Puppet Enterprise for 3.1.2
* (GH-53) Intelligently set ext for posix pre-release builds
### Thanks
Thanks to Zachary Stern and Reid Vandewiele for their work on this release.
0.8.3
-----
This is a backwards compatible bugfix release.
* (GH-39) Add PE 2.0.x compatible answer files instead of reusing 2.x answer
files.
Thanks to Zachary Stern for his help in this release.
0.8.2
-----
2013-01-13
This is a backwards compatible bugfix release.
* Download and copy commands have been refactored to reduce duplication confusion.
* Support for Puppet Enterprise versions 3.1.1 and 2.8.4
* Safely access @env[:home_path] in middleware
Thanks to Gary Larizza for his help in tracking down issues in this release.
0.8.1
-----
2013-12-05
This is a backwards compatible bugfix release.
* (vagrant-pe_build-#43) Better path interpolation when fetching arguments
* (maint) Fix for a silly variable error inside of pe-build copy
0.8.0
-----
2013-10-15
This is a backwards compatible feature release.
* Support added for new PE release: 3.1.0.
0.7.1
-----
2013-10-14
This is a backwards compatible bugfix release.
* Fixed pe_bootstrap config normalization to safely handle UNSET_VALUE as a
role value.
0.7.0
-----
2013-10-14
This is a backwards incompatible bugfix and feature release.
### User notes:
* At long last, The pe_bootstrap `steps` option has been entirely removed.
* The pe_bootstrap role value is now normalized; users can specify a string
or symbol and the right thing will happen.
### Developer notes:
* Error handling and messages around missing and unreadable archives have
been improved.
Thanks to Charlie Sharpsteen for his contributions to this release.
0.6.0
-----
2013-10-03
This is a backwards compatible bugfix and feature release.
### User notes:
* The tar archive unpacker has been split into a true tar unpacker and a
tar.gz unpacker. Archives with either '.tar' and '.tar.gz' will be
extracted with the correct unpacker.
* If a version of PE is requested but there's no definition for it, release
information for the latest version of PE will be used. This means that the
new versions of PE that aren't yet supported should work without having to
specify an explicit answer file.
* PE versions with trailing version information can now be used.
0.5.0
-----
2013-09-17
This is a backwards compatible bugfix and feature release.
### User notes:
* Added detect_installer capability for SLES
* (GH-32) Added detect_installer capability for Solaris
* (GH-32) run_install capability uses posix compliant `at` command syntax
* (GH-33) Added detect_installer and run_install capabilities for Windows
### Developer notes:
* All StandardError exceptions emitted from transfer/open_uri are now rescued,
so errors generated during downloads won't cause Vagrant to die with a
stacktrace.
* cap/detect_installer exceptions now subclass Vagrant::Errors::VagrantErrors
so that detection errors don't cause stacktraces.
* Archive unpacking logic has been generalized to support multiple implementations
like 'pe_build/transfer'
Thanks to Reid Vandewiele for implementing the Windows and Solaris fixes and
extracting the 'unpack' logic.
Thanks to Charlie Sharpsteen for validating the new platform support and
correcting the issues around open_uri error handling.
0.4.3
-----
2013-09-09
This is a backwards compatible bugfix release.
* (GH-27) Fully implement global pe_build options in pe_bootstrap config_builder model
* Standardize answer file variables across 2.x and 3.x for console password, listen port
* Add PE 2.8.3 to supported releases
* Trap network errors in transfer/openuri
0.4.2
-----
2013-08-22
This is a backwards compatible bugfix release.
* Define PE 3.0.1 release
* Define latest PE release at PEBuild::Release::LATEST
0.4.1
-----
This is a backwards compatible bugfix release.
* Correct errors in cap/run_install I18n messages.
0.4.0
-----
This is a backwards compatible feature and bugfix release.
### User notes:
#### Enhancements
* New pe_bootstrap configuration option: `autosign` adds the ability to
configure the Puppet master autosign.conf
#### Bugfixes
* The pe_bootstrap provisioner restarts the pe-httpd service if changes were
made to the master configuration that require a restart.
### Developer notes:
* pe_bootstrap post-install configuration has been extracted out of the
provisioner and into the PostInstall module.
* post-install configuration is now handled by generating a Puppet manifest
instead of executing sed and a shell script.
### Thanks
Thanks to Tom Linkin for his work on handling post-install configuration with
Augeas and Puppet.
0.3.0
-----
2013-08-14
This is a backwards compatible feature and bugfix release.
### User notes:
#### Enhancements:
* Puppet Enterprise 3 is now fully supported and should have answers that
work out of the box.
* (GH-25) The installer for a given platform will be detected based on the
guest platform, which means that the most precise installer will be used
instead of the `all` installer.
* pe_build.download_root now fully supports a local directory with URIs using
the "file" URI.
* As part of GH-25 pe_build.suffix defaults to detect, which will auto-select
the correct installer name
#### Fixes:
* (GH-23) Removed double expansion of files when running `vagrant pe-build copy`
* (GH-24) Installer files are downloaded at provision time instead of before
VMs are constructed
#### Deprecations:
* Shell scripts run with the `add_step` hash are deprecated and will be
removed in the next 'major development' release (either 0.4.0, 0.5.0,
or 1.0.0). This behavior is effectively provided by the `shell` provisioner.
### Developer notes (AKA the gory details):
* Informational logging has been expanded and is directed to the Vagrant
internal loggers.
* Answers file generation has been extracted out of the pe_bootstrap
provisioner and into an independent class to respect the single
responsibility principle.
* New guest capability: "detect_installer" detects the correct installer
for the given guest platform. Initial supported platforms are Debian,
Ubuntu, and Redhat.
* New guest capability: "run_install" extracts the actual command generation
and execution to install PE on a guest. Initial supported platforms are
Linux and Solaris.
* Installer file transfer has been fully extracted from the PEBuild::Archive
class and pushed into pe_build/transfer classes.
* File transfer behavior has been abstracted behind the PEBuild::Transfer
module and the implementing class is selected based on the scheme of the
requested URI.