summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
Commit message (Collapse)AuthorAgeFilesLines
* Forgot to add the release date to the CHANGELOGJames Cammarata2017-01-161-1/+1
|
* Updating CHANGELOGJames Cammarata2017-01-161-0/+7
|
* Add mount module fixes to changelogToshio Kuratomi2016-11-231-0/+2
| | | | Add Py3 fixes to changelog
* Updating CHANGELOG for 2.2.1 releaseJames Cammarata2016-11-181-4/+11
|
* async fix changelog updateMatt Davis2016-11-181-0/+1
|
* Add changelog entry for `make deb` changes.Matt Clay2016-11-111-0/+1
|
* Add include_vars fix to changelogToshio Kuratomi2016-11-031-0/+3
|
* Add dnf fixes to changelogToshio Kuratomi2016-11-021-0/+2
|
* Update for pip fixToshio Kuratomi2016-11-011-0/+6
|
* Updating CHANGELOG for CVEs fixed in 2.2.0James Cammarata2016-10-311-4/+3
|
* Fix some errors in CHANGELOG.md (#18149)Michael Scherer2016-10-231-3/+3
| | | | (cherry picked from commit a1032bc44bb97c4b1991aeb92ffc69765193999e)
* Add changelog for apt_keyToshio Kuratomi2016-10-221-0/+3
|
* Add changelog entries for ansible_managed and yum fixToshio Kuratomi2016-10-181-0/+3
|
* Note subversion no_log fixToshio Kuratomi2016-10-171-0/+2
|
* Update extras submodule ref to pull in password hiding fix for ↵Toshio Kuratomi2016-10-171-0/+2
| | | | postgresql_lang and postgresql_ext
* Remove archive from the 2.2 will be working to get it updated for 2.3Toshio Kuratomi2016-10-061-1/+0
|
* asa_template wasn't ever officially releasedJohn R Barker2016-10-041-1/+0
| | | asa_template was added during 2.2 development, and removed before 2.2 hit RC1 so no need to give notice of deprecation.
* Updating CHANGELOG and release versions for 2.1.2James Cammarata2016-10-031-0/+62
|
* New modules (#17870)John R Barker2016-10-031-2/+31
| | | Full review of new modules
* added network updates to CHANGELOGPeter Sprygada2016-10-031-0/+4
|
* added forman callback plugin to changelogBrian Coca2016-10-031-0/+2
|
* Remove the dellosX_template module (#17836)Senthil Kumar Ganesan2016-10-011-3/+0
|
* Update changelog for scp_when_ssh=smart (#17819)jctanner2016-09-291-0/+1
|
* ansible_play_batch (#17779)Brian Coca2016-09-281-0/+2
| | | | | | * ansible_play_batch * added version added
* Notice of Networking *_template deprecations (#17668)John R Barker2016-09-281-1/+11
| | | | | | | | | | * Notice of Networking *_facts deprecations * Just use the term "Deprecations" * Update CHANGELOG.md * Improve layout
* added ansible_play_hosts to changelogBrian Coca2016-09-231-0/+1
|
* Added docker_network to 2.2 change logChris Houseknecht2016-09-211-0/+2
|
* Officially naming the 2.2 release "The Battle of Evermore"James Cammarata2016-09-201-1/+1
|
* Fixed formattingJohn R Barker2016-09-201-0/+1
| | | Need a blank line before headings
* Add pip bugfix to minor changesToshio Kuratomi2016-09-201-1/+1
|
* New networking modules in 2.2John R Barker2016-09-191-0/+77
|
* Added support template module for Dell Networking OS6 devicesSenthil Kumar Ganesan2016-09-171-0/+1
|
* Update Changelog for the dellos6_facts module support (#17621)Senthil Kumar Ganesan2016-09-171-0/+1
|
* Renamed the Modules from dnos* -> dellos*, updated copyright, removed… ↵Senthil Kumar Ganesan2016-09-161-14/+13
| | | | | | | | (#17617) * Renamed the Modules from dnos* -> dellos*, updated copyright, removed dnos6_template * Addressed @gundalow comments
* remove bare variable support from loops (#17519)Brian Coca2016-09-161-0/+5
| | | | | | | | * remove bare variable support from loops * Added new 'removed deprecated' section to changelg also added removed items from this PR and others
* Fixed typo in changelog (#17597)Mike Rostermund2016-09-161-1/+1
|
* Merge pull request #17603 from skg-net/dnos10_factsPeter Sprygada2016-09-161-0/+1
|\ | | | | Added support for facts module for Dell Networking OS10 device.
| * Support for dnos10_facts moduleSenthil Kumar Ganesan2016-09-151-0/+1
| |
* | Merge pull request #17590 from abadger/vault-fixesToshio Kuratomi2016-09-151-0/+16
|\ \ | |/ |/| Vault fixes
| * Many Cleanups to vaultToshio Kuratomi2016-09-151-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Make is_encrypted_file handle both files opened in text and binary mode On python3, by default files are opened in text mode. Since we know the encoding of vault files (and especially the header which is the first set of bytes) we can decide whether the file is an encrypted vault file in either case. * Fix is_encrypted_file not resetting the file position * Update is_encrypted_file to check that all the data in the file is ascii * For is_encrypted_file(), add start_pos and count parameters This allows callers to specify reading vaulttext from the middle of a file if necessary. * Combine VaultLib.encrypt() and VaultLib.encrypt_bytestring() * Change vault's is_encrypted() to take either text or byte strings and to return False if any part of the data is non-ascii. * Remove unnecessary use of six.b * Vault Cipher: mark a few methods as private. * VaultAES256._is_equal throws a TypeError if given non byte strings * Make VaultAES256 methods that don't need self staticmethods and classmethods * Mark VaultAES and is_encrypted as deprecated * Get rid of VaultFile (unused and feature implemented in a different way) * Normalize variable and parameter names on plaintext, ciphertext, vaulttext * Normalize variable and parameter names on "b_" prefix when dealing with bytes * Test changes: * Remove redundant tests( both checking the same byte string) * Fix use of format string without format operator * Enable vault editor tests on python3 * Initialize the vault_cipher for VaultAES256 testing in setUp() * Make assertTrue and assertFalse take the actual method calls for better error messages. * Test that non-ascii byte strings compare correctly. * Test that unicode strings and ints raise TypeError * Test-specific: * Removed test_methods_exist(). We only have one VaultLib so the implementation is the assurance that the methods exist. (Can use an abc for this if it changes). * Add tests for both byte string and text string input where the API takes either. * Convert "assert" to unittest assert functions or add a custom message where that will make failures easier to debug. * Move instantiating the VaultLib into setUp().
* | Added support OS9 facts (#17591)Senthil Kumar Ganesan2016-09-151-0/+1
|/
* added win_command/win_shell to changelogBrian Coca2016-09-151-1/+4
|
* Add action plugin for dnos6_config module (#17553)Senthil Kumar Ganesan2016-09-141-0/+1
|
* Add action pluging for dnos9_template module (#17549)Senthil Kumar Ganesan2016-09-141-0/+1
|
* Add action plugin for dnos6_template module (#17554)Senthil Kumar Ganesan2016-09-141-0/+1
|
* Added support for dnos9_config moduleSenthil Kumar Ganesan2016-09-131-4/+5
|
* Addded support for dnos9_command moduleSenthil Kumar Ganesan2016-09-121-0/+2
|
* Addressed @gundalow review commentsSenthil Kumar Ganesan2016-09-121-1/+0
|
* Added support for dnos6_command moduleSenthil Kumar Ganesan2016-09-121-0/+3
|
* Python3 changelog entryToshio Kuratomi2016-09-121-0/+4
|