|
2 | 2 |
|
3 | 3 | ## NEXT |
4 | 4 |
|
| 5 | +## 2020.11.21 |
| 6 | + |
5 | 7 | - `Get-RemoteFiles` now considers `$Latest.Options.Headers` |
6 | 8 | - TLS settings updated ([#216](https://github.com/majkinetor/au/pull/216)) |
7 | | -- Set the AU version to the last commit date ([#217](https://github.com/majkinetor/au/pull/217)) |
8 | 9 | - Support ChocolateyPackageFolder environment variable ([#255](https://github.com/majkinetor/au/pull/255)) |
9 | | -- Plugins: |
10 | | - - New plugin: Gitlab ([#195](https://github.com/majkinetor/au/pull/195)) |
11 | | - - Gist: option for secret gist and Enterprise API |
12 | 10 | - Improved Powershell 7 compatibility ([#208](https://github.com/majkinetor/au/issues/208)) |
13 | | -- Added a `Branch` parameter to GitReleases ([#227](https://github.com/majkinetor/au/issues/227)) |
| 11 | +- Set the AU version to the last commit date ([#217](https://github.com/majkinetor/au/pull/217)) |
| 12 | + |
| 13 | +### Plugins: |
| 14 | + |
| 15 | +- **GitLab**: new plugin ([#195](https://github.com/majkinetor/au/pull/195)) |
| 16 | +- **Gist**: option for secret gist and Enterprise API |
| 17 | +- **GitReleases**: Added a `Branch` parameter ([#227](https://github.com/majkinetor/au/issues/227)) |
14 | 18 |
|
15 | 19 | ## 2019.5.22 |
16 | 20 |
|
|
20 | 24 | - New plugin: Snippet |
21 | 25 |
|
22 | 26 | ### Bugfixes |
23 | | - |
| 27 | + |
24 | 28 | - Fixed header handling during request ([#164](https://github.com/majkinetor/au/issues/164)) |
25 | 29 | - Push errors are not repeated or ignored on ([#175](https://github.com/majkinetor/au/issues/175)) |
26 | 30 | - Few small changes and fixes |
27 | 31 |
|
28 | 32 | ## 2018.5.18 |
29 | 33 |
|
30 | | -- `Update-Package`: |
| 34 | +- `Update-Package`: |
31 | 35 | - Now you can pass HTTP/HTTPS headers to `$Latest.Options.Headers` to avoid `Unauthorized` errors while checking URLs. |
32 | 36 | - Package Gallery URL is no longer hard-coded but taken from the `$au_GalleryUrl` if it exists ([#95](https://github.com/majkinetor/au/issues/95)) |
33 | 37 | - `Update-AUPackages`: Added `NoCheckChocoVersion` option. |
|
53 | 57 |
|
54 | 58 | ## 2017.8.30 |
55 | 59 |
|
56 | | -- `Update-AUPackages` |
| 60 | +- `Update-AUPackages` |
57 | 61 | - New options to handle update.ps1 errors: `IgnoreOn`, `RepeatOn`,`RepeatCount`,`RepeatSleep`. See [documentation](https://github.com/majkinetor/au#handling-update-errors). ([#76](https://github.com/majkinetor/au/issues/76)). |
58 | 62 | - New option `WhatIf` option that will trigger WhatIf on all packages. |
59 | 63 | - New AUPackage properties: `Ignored` (boolean) and `IgnoreMessage`. |
|
70 | 74 |
|
71 | 75 | - `Get-RemoteFiles` |
72 | 76 | - `NoSuffix` switch to not add `_x32` and/or `_x64` suffix at the end of the file names. |
73 | | - - Now also sets `ChecksumTypeXX` and `FileNameXX` and accepts `Algorithm` parameter. |
74 | | - |
| 77 | + - Now also sets `ChecksumTypeXX` and `FileNameXX` and accepts `Algorithm` parameter. |
| 78 | + |
75 | 79 | ### Bugfixes |
76 | 80 |
|
77 | | -- Fix ps1 files encoded in UTF8 without BOM being treated as ANSI. |
| 81 | +- Fix ps1 files encoded in UTF8 without BOM being treated as ANSI. |
78 | 82 | - Fix chocolatey.org package check using wrong package name when overridden in update.ps1. |
79 | 83 |
|
80 | 84 | ## 2017.1.14 |
@@ -124,7 +128,7 @@ Changes in [au-packages-template](https://github.com/majkinetor/au-packages-temp |
124 | 128 | ## 2016.11.5 |
125 | 129 |
|
126 | 130 | - `Update-Package` |
127 | | - - It now automatically adds `$Latest.Filetype` based on the extension of the first URL it finds. |
| 131 | + - It now automatically adds `$Latest.Filetype` based on the extension of the first URL it finds. |
128 | 132 |
|
129 | 133 | ### CD |
130 | 134 |
|
@@ -183,19 +187,19 @@ is now of the type ordered HashTable ( `[ordered]@{...}` ). This is the only re |
183 | 187 | to continue working and behave the same as before, however, other things are required in order to fully use AU features: |
184 | 188 |
|
185 | 189 | - Remove the user scripts `Save-XXX.ps1` as improved versions now come with AU (plugins). |
186 | | -- Take a look at the [update_all.ps1](https://github.com/majkinetor/au-packages-template/blob/master/update_all.ps1) |
187 | | - to see how plugins are used and setup. Migrate current custom options to the new style. |
188 | | - See [plugins section](https://github.com/majkinetor/au#plugins) for details. |
| 190 | +- Take a look at the [update_all.ps1](https://github.com/majkinetor/au-packages-template/blob/master/update_all.ps1) |
| 191 | + to see how plugins are used and setup. Migrate current custom options to the new style. |
| 192 | + See [plugins section](https://github.com/majkinetor/au#plugins) for details. |
189 | 193 |
|
190 | 194 | Take a look at the [working example](https://github.com/majkinetor/au-packages/blob/master/update_all.ps1) and [plugin wiki page](https://github.com/majkinetor/au/wiki/Plugins). |
191 | 195 |
|
192 | 196 | ### Changes |
193 | 197 |
|
194 | 198 | - `Update-Package` |
195 | 199 | - Support for Semantic Versioning [#21](https://github.com/majkinetor/au/issues/21). |
196 | | -- `Test-Package` |
| 200 | +- `Test-Package` |
197 | 201 | - Optional parameter Nu to test package from the .nupkg, .nuspec or directory. |
198 | | - - Test chocolatey uninstaller. |
| 202 | + - Test chocolatey uninstaller. |
199 | 203 | - Refactoring. |
200 | 204 | - Installer improvements. |
201 | 205 | - `Update-AUPackages` |
@@ -239,7 +243,7 @@ Take a look at the [working example](https://github.com/majkinetor/au-packages/b |
239 | 243 | - `NuspecVersion` added to the `$Latest` HashTable. |
240 | 244 | - Pester tests. |
241 | 245 | - run standalone, `update` in the package directory calls `./update.ps1`. |
242 | | -- `README.md` made available via `man about_au`. |
| 246 | +- `README.md` made available via `man about_au`. |
243 | 247 | - Consider global variable `$au_root` when looking for AU packages. |
244 | 248 | - Optimization and refactoring. |
245 | 249 | - Bugfixes |
|
0 commit comments