Changes for v2014.7.7..v2014.7.8
Extended changelog courtesy of Todd Stansell (https://github.com/tjstansell/salt-changelogs):
Generated at: 2016-03-11T21:18:48Z
Statistics:
- Total Merges: 7
- Total Issue references: 3
- Total PR references: 10
Changes:
PR #28839: (cachedout) Revert #28740
@ 2015-11-12T22:54:28Z
- PR #28740: (MasterNayru) Add missing S3 module import
| refs: #28777
- 4b8bdd0 Merge pull request #28839 from cachedout/revert_28740
- 215b26c Revert #28740
PR #28777: (rallytime) Back-port #28740 to 2014.7
@ 2015-11-11T18:00:00Z
- PR #28740: (MasterNayru) Add missing S3 module import
| refs: #28777
PR #28716: (rallytime) Back-port #28705 to 2014.7
@ 2015-11-10T16:15:03Z
- PR #28705: (cachedout) Account for new headers class in tornado 4.3
| refs: #28716
- 45c73eb Merge pull request #28716 from rallytime/bp-28705
- 32e7bd3 Account for new headers class in tornado 4.3
PR #28717: (cachedout) Add note about recommended umask
@ 2015-11-09T23:26:20Z
- ISSUE #28199: (felskrone) Non-standard umasks might break the master
| refs: #28717
- f4fe921 Merge pull request #28717 from cachedout/umask_note
- 1874300 Add note about recommended umask
PR #28461: (cachedout) Wrap all cache calls in state.sls in correct umask
@ 2015-11-02T17:11:02Z
- ISSUE #28455: (zmalone) highstate.cache is world readable, and contains secrets
| refs: #28461
- 4bf56ca Merge pull request #28461 from cachedout/issue_28455
- 097838e Wrap all cache calls in state.sls in correct umask
PR #28407: (DmitryKuzmenko) Don't request creds if auth with key.
@ 2015-10-29T16:12:30Z
- ISSUE #24910: (bocig) -T, --make-token flag does NOT work- LDAP Groups
| refs: #28407
- f3e61db Merge pull request #28407 from DSRCompany/issues/24910_token_auth_fix_2014
- b7b5bec Don't request creds if auth with key.
PR #27390: (JaseFace) Ensure we pass on the enable setting if present, or use the default of True if not in build_schedule_item()
@ 2015-10-05T18:09:33Z
- d284eb1 Merge pull request #27390 from JaseFace/schedule-missing-enabled
- 563db71 Ensure we pass on the enable setting if present, or use the default of True if not in build_schedule_item() Prior to this, when schedule.present compares the existing schedule to the one crafted by this function, enabled will actually be removed at each run. schedule.present sees a modification needs to be made, and invokes schedule.modify, which does so with enabled: True, creating and endless loop of an 'enabled' removal and addition.