forked from tivrobo/ansible-win_git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
35 lines (24 loc) · 1.38 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
20240919:
- Minor changes to module parameter descriptions (GrantShotwell DGTL)
- Add missing documentation for "clone" parameter (GrantShotwell DGTL)
- Rename functions to comply better with standard PowerShell naming conventions (GrantShotwell DGTL)
- Make most functions take arguments for readability (GrantShotwell DGTL)
- Organizational improvements for readability (GrantShotwell DGTL)
- Re-organize the module results object (GrantShotwell DGTL)
- Use "$X = & cmd /c git.exe" instead of "& cmd /c git.exe | Tee-Object -Variable X | Out-Null" which solved some errors (GrantShotwell DGTL)
- Checks if repository actually needs updates, setting "changed" result properly (GrantShotwell DGTL)
20190305:
- Added "recursive" option for clone (tivrobo)
20180328:
- Changed variables to match non windows git mudule names (project.hay)
- Updated functions to be atomic and decoupled (project.hay)
- Added more handling of the Changed result var (project.hay)
20170925:
- fixes to manage correctly the branch desired (pablodav)
- put changed status in correct place (changed status not handled correctly yet) (pablodav)
20170814:
- added function get_version (pablodav)
20170811:
- fixes to use Fail-Json to be compatible with ansible 2.3.2 (pablodav)
- added options "update" and "branch" (pablodav)
- fixes error when using git repo with http/https (pablodav)