-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
HISTORY.txt
559 lines (372 loc) · 15 KB
/
HISTORY.txt
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
1.3.9 unreleased
- Limit setpermissions to files owned by plone_buildout.
[djowett]
- Show buildout.log in the Ansible output when buildout errors.
[djowett]
- Catch cases where supervisor needs an update after a config change.
[smcmahon]
- Use python-pip-whl for focal compatability.
[smcmahon]
- Don't try to restart memmon unless it's actually in use.
[smcmahon]
- When copying buildout extra directory, preserve file modes.
[smcmahon]
- Fix incorrect indentation with plone_zope_conf_additional.
[fulv]
- Disable plone_client_tcpcheck for py3.
See discussion in https://github.com/plone/ansible-playbook/issues/138
[fulv]
1.3.8 2020-02-15
- Make 5.2.1 the default.
[smcmahon]
- Bump PloneHotfix20200121 to v1.1.
[stevepiercy]
- Add PloneHotfix20200121. Normalize and sort hotfixes across eggs and
versions sections.
[stevepiercy]
- Make it a little easier to use Vagrant to test against playbooks other than test.yml by
1) having the Vagrantfile not automatically provision with ansible; and
2) adding a couple of shell scripts to test against the default or all boxes.
Both shell scripts accept a test playbook filename; if none is given, runs against test.yml.
Note that Travis CI only tests ./test.yml.
[smcmahon]
- Fix CI by updating .travis to use bionic and --become rather than --sudo.
[smcmahon]
- Earlier buildout fix in this release introduced a typo that broke buildout operation under some conditions. Fixed.
[smcmahon]
- If plone_python_version == '3', then append an argument to install
superlance that specifies the path to pip3.
[stevepiercy]
- Bump superlance to v1.0 to support Python 3
[stevepiercy]
- Buildout would not be re-run even when the buildout template had changed. Fixed.
[fulv]
1.3.7 2019-07-21
- Make it possible to use Python 3 with Plone 5.2.
Allow plone_python_version to be set generally or per plone server.
Expand test.yml to include both 2.7 and 3 builds of Plone 5.2.
[smcmahon]
1.3.6 2019-03-25
- Add Plone 5.2 to test suite.
It's working with Python 2.7 for RC2-pending.
[smcmahon]
- Do not specify the products folder in buildout config for Plone 5.2+.
It's no longer supported.
[smcmahon]
- By default, try to download a requirements.txt from dist.plone.org.
If that doesn't work (e.g., for older Plone versions), fall back to our previous strategy of creating one from an included template.
The requirements.txt is used via pip to prime the virtualenv prior to running buildout.
[smcmahon]
- Default Plone version -> 5.1.4.
[smcmahon]
- Update use of "apt" for Debian to avoid with_items, which has been deprecated for package handling.
[smcmahon]
1.3.5 2018-09-25
- memmon's supervisor configuration failed if memmon wasn't on a particular path. Fixed.
[smcmahon]
- 1.3.4's fix for configuration of tcpcheck port broke if client count wasn't specified in the individual config.
Fixed.
[smcmahon]
1.3.4 2018-09-24
- Fix tcpchecks in test.yml.
[smcmahon]
- superlance was needlessly installed even if plone_hot_monitor was set to 'cron'.
Harmless, but untidy.
[smcmahon]
- Automated configuration of the tcp check port wasn't working for multiple plones.
Deliberately specified ports on a plone-by-plone level was working.
Fixed.
- Switch to platform virtualenv broke use of memmon in some environments. Fixed.
[smcmahon]
1.3.3 2018-08-24
- Switch to using platform virtualenv whenever available.
Then, use requirements.txt method for updating pip, setuptools, zc.buildout.
[smcmahon]
- Drop Trusty and CentOS7 from tested environments. i
They no longer have Pythons current enough for Plone 5.1.x.
(They're still fine for earlier versions of Plone.)
[smcmahon]
1.3.2 2018-05-21
- Add FreeBSD support, targetting 11.
Generalize supervisor setup to make this a bit easier.
[smcmahon]
- Update Ansible version requirement to 2.5.0.
Complementary fix for issue #112 from ansible_playbook.
[smcmahon]
1.3.1 2018-05-04
- Normalize tests to use "is" rather than jinja2 filter.
Use "version" rather than "version_compare".
[smcmahon]
- Use lynx rather than lynx-curr package on debian. lynx-curr has disappeared on bionic.
Use bionic64 as first test vagrant box.
We are now working on bionic.
[smcmahon]
- Update to Plone 5.1.1 as default.
[smcmahon]
- Switch to using launchpad.net for buildout-cache tarball downloads. Avoid timeouts from dist.plone.org.
[smcmahon]
1.3.0 2018-03-10
**Before you update***: If you're using version 1.2.x, you should note that version 1.3.0+ sets up client monitors for each ZEO client.
These monitors will use the client port + 100.
haproxy will use these monitor ports as a mechanism to check ZEO client status without using an http thread.
See ``tcpcheck`` variables in the documentation for plone setup if you wish to alter or turn off this feature.
- Use five.z2monitor facilities to configure health check ports.
plone_client_tcpcheck and plone_client_tcpcheck_port control this.
See http://hvelarde.blogspot.com/2017/12/we-have-been-doing-health-checks-wrong.html for an excellent writeup on why this is a much better idea than http checks.
Thanks, hvelarde!
[smcmahon]
1.2.25 2018-03-06
- Update to use Plone 5.1.0 as default.
1.2.24 2018-02-27
- Specify https index when we use pip. This makes it work on older platforms like wheezy.
[smcmahon]
1.2.23 2018-02-20
- Add plone_zodb_cache_size_bytes setting.
[smcmahon]
1.2.22 2017-12-12
- Remove download.zope.org links in find-links.
[smcmahon]
1.2.21 2017-12-03
- Update default Plone to 5.0.9.
[smcmahon]
- Update and clean up hotfixes.
[smcmahon]
1.2.20 2017-11-12
- Make sure we're actually testing add ons that will be recovered from PyPI.
We need to know if that breaks.
[smcmahon]
- Change wv rpm URL for Centos7
[l00ptr]
1.2.19 2017-10-29
- Specify an index that will work with PyPI https.
[smcmahon]
- Add missing instance_config for multi-instance use (plone_pack_at & plone_backup_at & plone_buildout_cfg)
[gomez]
1.2.18 2017-06-25
- Custom backup paths were not working. Fix that and add some test coverage.
[smcmahon]
- Fix superlance use tests for RedHat.
[smcmahon]
- Fix test "post" backup command.
[smcmahon]
- Remove bootstrap.py in the Plone 4.x install and instead use a buildout created by installing zc.buildout in the virtualenv.
bootstrap.py was already unused in the Plone 5.x install.
This should not affect existing Plone 4.x installs.
[smcmahon]
1.2.17 2017-05-11
- Add option to set backup post_command: plone_backup_post_command.
[smcmahon]
1.2.16 2017-04-19
- setuptools 35.0.0 changes the way manifests are handled, causing .xml files to be lost in installation of several packages.
Introduced a mechanism to set the setuptools and zc.buildout versions. Set working defaults.
Version variables work globally or in particular instances.
New variables and their defaults are plone_setuptools_version: '26.1.1' and plone_zc_buildout_version: '2.5.3'.
[smcmahon]
- Add a "plone_timezone" variable that may be used to set a timezone (via TZ environment variable) that may be different from the server or other plones.
[smcmahon]
- Timezone-setting mechanism wasn't working in Xenial.
Fixed with a mechanism that should work on any system with timedatectl.
[smcmahon]
- Add plone_hot_monitor variable to control use of superlance.
[smcmahon]
- Make default Plone 5.0.7.
[smcmahon]
- Set backup directory correctly when building multiple Plones. Fixes #103.
[smcmahon]
- Update source for wv for CentOS7.
[smcmahon]
- Add plone_buildout_cfg variable to generate buildoutfiles other than
buildout.cfg on the server. Also change the default to live.cfg,
to avoid conflicts with local buildout.cfg files.
[MrTango]
1.2.15 2017-02-01
- Redirect stdout and stderr for buildout into a log file.
This works around an Ansible bug that caused errors with misleading error messages if buildout output was long.
Workaround: if you don't have this fix, just run the playbook again.
The error resolves itself as soon as buildout output is smaller.
[smcmahon]
1.2.14 2017-01-20
- Remove uses of jinja2 "truncate", which has stopped working as advertised.
[smcmahon]
1.2.13 2016-10-07
- Turn of ssh strict host checking by Ansible in generated Vagrant vbox_host.cfg.
[smcmahon]
- Fix "Problem with host_vars overriding" from playbook repo https://github.com/plone/ansible-playbook/issues/51.
[smcmahon]
- Switch to https urls for dist.plone.org.
[smcmahon]
1.2.12 2016-09-30
- Switch to use Posix xX distinction in chmod rather than find/exec strategy.
[djowett]
- Update default version to 5.0.6. Add 20160830 hotfix.
[smcmahon]
- Use jinja2's version_compare when comparing complex version numbers. Fixes #95.
[smcmahon]
- Default Vagrant box: trusty -> xenial.
[smcmahon]
- Add a provisioning mechanism that creates vbox_host.cfg during vagrant provisioning.
This makes it easier to use Ansible directly against the newer generation of Vagrant boxes that don't have insecure keys.
[smcmahon]
1.2.11 2016-07-18
- Fix Bootstrap for 4.3 play, which was using the old path to Python.
[djowett]
1.2.10 2016-07-18
- Use the same alias for Python in both 4.x and 5.x, python2.7.
This only matters for tests.
[smcmahon]
- The way we use become_user is problematic for Ansible 2.1 unless pipelining is in use.
Set pipelining on in defaults.
[smcmahon]
- Symbolic link to self for testing fouled up vagrant on platforms without client extensions.
Change strategy to use ansible.cfg specification for roles.
[smcmahon]
1.2.9 2016-07-08
- Update to use Plone 5.0.5 as default.
[smcmahon]
- Make sure supervisord rereads config file and restarts memmon processes if the conf file
changes.
[smcmahon]
- Add Ubuntu Xenial to meta/main.yml
[svx]
- Always include PYTHON_EGG_CACHE environment variable; simplify handling; update docs.
Fixes #78.
[smcmahon]
- Add support for Xenial Xerus (Ubuntu 16.04).
[smcmahon]
- Drop shallow clone for Instance directory
[gomez]
- Allow custom Python path
[MrTango]
1.2.8 2016-04-25
- Include Products.PloneHotfix20160419.
[smcmahon]
- Default to Plone 5.0.4.
[smcmahon]
- Document several variables related to plone site creation. Fixes #74.
[smcmahon]
1.2.7 2016-03-28
- Do our best to detect changes in files copied via plone_buildout_extra_dir. Fixes #70.
[smcmahon]
- Add plone_install_zeoserver and plone_zeo_ip. Together, these make it possible to use the role for cluster configurations.
[smcmahon]
- Eliminate needless stop of client1. This also makes the role work when plone_client_count is 0.
[smcmahon]
- Make cronjob notifications via email more useful.
[djowett]
- Add plone_rsync_backup_options to make backup more flexible.
[djowett]
1.2.6 2016-03-12
- Run P4 tests with 4.3.8.
[smcmahon]
- Document plone_buildout_extra_dir.
[smcmahon]
- Add plone_restart_after_buildout option.
[smcmahon]
- A nasty bug in expression evaluation in Ansible 1.9 makes us require Ansible 2.0+.
[smcmahon]
- Add plone_always_run_buildout option. Mainly useful for CI situations.
[smcmahon]
- Change strategy on mr.developer. No longer set git-clone-depth=1, as this destroyed ability to set revisions and branches. If you want a shallow clone, use "depth=1" in the source spec.
[smcmahon]
- Add plone_extra_find_links option to enable download eggs from private servers.
[jpgimenez]
- Relicense as BSD-3-Clause.
- Add missing instance_config for multi instance use
[gomez]
- Add buildout_extra_dir option for additional config files
[gomez]
1.2.5 2016-01-24
- Update supervisord enable to use ansible's service module.
[smcmahon]
- Make sure supervisord is enabled after install. The CentOS package does not do that by default.
[smcmahon]
1.2.4 2016-01-10
- Update to 5.0.2. Remove 20151208 hotfix.
1.2.3 2016-01-02
- Instance path fouled up for three-decimal versions. Thanks, oggers.
[smcmahon]
- Add plone_buildout_extra option.
[smcmahon]
- Add plone_extra_parts option to add additional buildout parts to automatically generated buildout.
[smcmahon]
1.2.2 2015-12-10
- Memmon was getting installed in supervisor task even if max client memory was 0. Thanks, oggers. Fixes #49
[smcmahon]
- Add 20151208 hotfix
[smcmahon]
1.2.1 2015-12-02
- Use instance and program discrimination when setting supervisor memmon.
[smcmahon]
1.2.0 2015-11-15
- Refactor default variables to support multiple Plones more easily.
[smcmahon]
- Add documentation example for setting up multiple plones on
a single target server.
[smcmahon]
- Set mr.developer git_clone_depth to 1 when using mr.developer.
Elaborate documentation for plone_sources variable.
[smcmahon]
1.1.3 2015-10-13
- Doc update.
[smcmahon]
1.1.2 2015-10-13
- Adapt to build either Plone 4.3.x or Plone 5.0.
[smcmahon]
- Remove unused version cfg files.
[smcmahon]
1.1.1 2015-07-28
- buildout git repo checkout was not working. Fixed.
[jpgimenez]
- Make it possible to have multiple instance installs by adding
cron and supervisor discriminators based on instance name.
[smcmahon]
- Get vagrant test running with admin password.
[smcmahon]
1.1.0 2015-06-15
- Ansible Galaxy does not recognize 1.0.1 as later than 1.0b1,
retagging as 1.1.0. For future reference, Galaxy uses
distutils.version.LooseVersion.
1.0.1 2015-06-15
- Ansible Galaxy does not recognize 1.0 as later than 1.0b1,
retagging as 1.0.1.
1.0 2015-06-05
- Update to 4.3.6 default.
1.0b8 unreleased
- Remove restart script. It belongs in the full-stack playbook
due to its dependencies on other components.
[smcmahon]
- Correct the check for existence of buildout tarball download
[rockfruit]
- Re-running role does re-run "Run buildout" correctly
[zylinx]
- Make more complex specifications of base ports possible.
[rockfruit]
- Add ability to set extension profiles for site creation.
[rockfruit]
- Introduce variables `plone_instance_home`, `plone_instance_var_path`
and `plone_instance_backup_path`. [htgoebel]
- Fix some bugs occuring in uncommon environments. [htgoebel]
1.0b7 2015-01-27
- There is a zope package that has some files that are not world-readable.
Fix generally by making sure the whole buildout cache is readable.
[smcmahon]
- Not working with versions other than dist. Fixed.
[smcmahon]
- If there was no buildout cache available, this failed. Fixed.
[smcmahon]
- client web ports for clients > 1 were not enumerated correctly.
[smcmahon]
- plone_zeo_port was not being respected in client parts. (Thanks, rockfruit)
[smcmahon]
- Fix syntax error in restart_clients.sh script.
1.0b6 2014-12-17
- Update bootstrap.py to a version that allows pinning of setuptools; Pin it to 8.0.4.
1.0b5 2014-12-08
- Refactor to remove develop.cfg and base.cfg.
- Add ability to specify mr.developer sources.
- Added extra variables for zcml slugs, client extras and client1 extras.
- Refactored the client implementation in buildout to allow for separate handling
of client1 and the remaining clients. This should allow for single client options
like webdav and ftp.
1.0b4 2014-12-02
- First really practical release.