Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

automated publishing of posts #268

Merged
merged 2 commits into from
May 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ root = true
[*]
indent_style = space
indent_size = 4
end_of_line = lf
end_of_line = crlf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
Expand Down
21 changes: 9 additions & 12 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,20 @@
CHANGELOG.md merge=union

# Set default behaviour, in case users don't have core.autocrlf set.
* text=auto
* text=auto eol=crlf

# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
*.md text
*.gitattributes text

# Declare files that will always have LF line endings on checkout.
*.ps1 text eol=lf
*.psm1 text eol=lf
*.psd1 text eol=lf
*.psc1 text eol=lf
*.ps1xml text eol=lf
*.clixml text eol=lf
*.xml text eol=lf
*.txt text eol=lf
*.md text eol=lf
*.ps1 text
*.psm1 text
*.psd1 text
*.psc1 text
*.ps1xml text
*.clixml text
*.xml text
*.txt text

# Denote all files that are truly binary and should not be mergeable.
*.dll binary
Expand Down
25 changes: 25 additions & 0 deletions _posts/2017-06-24-JiraPS-v2.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
layout: article
permalink: /article/:categories/:title
title: JiraPS v2.0.0
date: 2017-06-24 13:00:00
categories: Announcement
thumbnail:
author: lipkau
tags:
- JiraPS
- Release
---

We have just uploaded a new version of the **JiraPS** module to the [Gallery](https://www.powershellgallery.com/packages/JiraPS/2.0.0.2) and to [GitHub](https://github.com/AtlassianPS/JiraPS/releases/tag/v2.0.0).
<!--more-->

# Description
This is the first release of **JiraPS** under the _AtlassianPS_ organization.
This release **contains breaking changes** – so please be aware and careful when updating the module.

# CHANGELOG
## Changes to the code module
* Move module to organization _AtlassianPS_
* Rename of the module to `JiraPS` **[breaking change]**
* Rename of module’s custom objects to `JiraPS.*` **[breaking change]**
68 changes: 68 additions & 0 deletions _posts/2017-06-25-JiraPS-v2.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
---
layout: article
permalink: /article/:categories/:title
title: JiraPS v2.1.0
date: 2017-06-25 12:00:00
categories: Announcement
thumbnail:
author: lipkau
tags:
- JiraPS
- Release
---

We have just uploaded a new version of the **JiraPS** module to the [Gallery](https://www.powershellgallery.com/packages/JiraPS/2.1.0.10) and to [GitHub](https://github.com/AtlassianPS/JiraPS/releases/tag/v2.1.0).
<!--more-->

# Description
This release brings a lot of new functionality, improvements and bug fixes that has been submitted by our contributors. Including:
* Managing RemoteLinks
* Managing IssueLinks
* Managing Watchers
* Adding Worklogs
* and much more (listed below)

**We highly recommend updating, as this release contains really great stuff.**

# CHANGELOG
## FEATURES:
- `Get-JiraIssueEditMetadata`: Returns metadata required to create an issue in JIRA (#65, [@lipkau][])
- `Get-JiraRemoteLink`: Returns a remote link from a JIRA issue (#80, [@lipkau][])
- `Remove-JiraRemoteLink`: Removes a remote link from a JIRA issue (#80, [@lipkau][])
- `Get-JiraComponent`: Returns a Component from JIRA (#68, [@axxelG][])
- `Add-JiraIssueWorklog`: Add worklog items to an issue (#83, [@jkknorr][])
- Added support for getting and managing Issue Watchers (`Add-JiraIssueWatcher`, `Get-JiraIssueWatcher`, `Remove-JiraIssueWatcher`) (#73, [@ebekker][])
- Added IssueLink functionality (`Add-JiraIssueLink`, `Get-JiraIssueLink`, `Get-JiraIssueLinkType`, `Remove-JiraIssueLink`) (#131, [@lipkau][])

## IMPROVEMENTS:
- `New-JiraIssue`: _Description_ and _Priority_ are no longer mandatory (#53, [@brianbunke][])
- Added property `Components` to `PSjira.Project` (#68, [@axxelG][])
- `Invoke-JiraIssueTransition`: add support for parameters _Fields_, _Comment_ and _Assignee_ (#38, [@padgers][])
- `New-JiraIssue`: support parameter _FixVersion_ (#103, [@Dejulia489][])
- `Set-JiraIssue`: support parameter _FixVersion_ (#103, [@Dejulia489][])
- Respect the global `$PSDefaultParameterValues` inside the module (#110, [@lipkau][])
- `New-JiraSession`: Display warning when login needs CAPTCHA (#111, [@lipkau][])
- Switched to _Basic Authentication_ when generating the session (#116, [@lipkau][])
- Added more tests for the CI (#142, [@lipkau][])

## BUG FIXES:
- `Invoke-JiraMethod`: Error when Invoke-WebRequest returns '204 No content' (#42, [@colhal][])
- `Invoke-JiraIssueTransition`: Error when Invoke-WebRequest returns '204 No content' (#43, [@colhal][])
- `Set-JiraIssueLabel`: Forced label property to be an array (#88, [@kittholland][])
- `Invoke-JiraMethod`: Send ContentType as Parameter instead of in the Header (#121, [@lukhase][])



[@alexsuslin]: https://github.com/alexsuslin
[@axxelG]: https://github.com/axxelG
[@brianbunke]: https://github.com/brianbunke
[@colhal]: https://github.com/colhal
[@Dejulia489]: https://github.com/Dejulia489
[@ebekker]: https://github.com/ebekker
[@jkknorr]: https://github.com/jkknorr
[@kittholland]: https://github.com/kittholland
[@LiamLeane]: https://github.com/LiamLeane
[@lipkau]: https://github.com/lipkau
[@lukhase]: https://github.com/lukhase
[@padgers]: https://github.com/padgers
[@ThePSAdmin]: https://github.com/ThePSAdmin
44 changes: 44 additions & 0 deletions _posts/2017-08-05-JiraPS-v2.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
layout: article
permalink: /article/:categories/:title
title: JiraPS v2.2.0
date: 2017-08-05 12:00:00
categories: Announcement
thumbnail:
author: lipkau
tags:
- JiraPS
- Release
---

We have just uploaded a new version of the **JiraPS** module to the [Gallery](https://www.powershellgallery.com/packages/JiraPS/2.2.0.141) and to [GitHub](https://github.com/AtlassianPS/JiraPS/releases/tag/v2.2.0.141).
<!--more-->

# Description
This release brings new functionality, improvements and bug fixes that has been submitted by our contributors. Including:
* Functions to manage Versions in Jira

_Details are listed below_

# CHANGELOG
## FEATURES:
- `New-JiraVerion`: Create a new Version in a project (#158, [@Dejulia489][])
- `Get-JiraVerion`: Create a new Version in a project (#158, [@Dejulia489][])
- `Set-JiraVerion`: Create a new Version in a project (#158, [@Dejulia489][])
- `Remove-JiraVerion`: Create a new Version in a project (#158, [@Dejulia489][])
- New custom object for Versions (#158, [@Dejulia489][])


[@alexsuslin]: https://github.com/alexsuslin
[@axxelG]: https://github.com/axxelG
[@brianbunke]: https://github.com/brianbunke
[@colhal]: https://github.com/colhal
[@Dejulia489]: https://github.com/Dejulia489
[@ebekker]: https://github.com/ebekker
[@jkknorr]: https://github.com/jkknorr
[@kittholland]: https://github.com/kittholland
[@LiamLeane]: https://github.com/LiamLeane
[@lipkau]: https://github.com/lipkau
[@lukhase]: https://github.com/lukhase
[@padgers]: https://github.com/padgers
[@ThePSAdmin]: https://github.com/ThePSAdmin
45 changes: 45 additions & 0 deletions _posts/2017-10-07-JiraPS-v2.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
layout: article
permalink: /article/:categories/:title
title: JiraPS v2.3
date: 2017-10-07 13:50:00
categories: Announcement
thumbnail:
author: lipkau
tags:
- JiraPS
- Release
---

We have just uploaded a new version of the **JiraPS** module to the [Gallery](https://www.powershellgallery.com/packages/JiraPS/2.3.160) and to [GitHub](https://github.com/AtlassianPS/JiraPS/releases/tag/v2.3.160).
<!--more-->

# Description
This release brings new functionality, improvements and bug fixes that has been submitted by our contributors.

_Details are listed below_

# CHANGELOG
## FEATURES
- `Get-JiraServerInformation`: Fetches the information about the server (#187, [@lipkau][])

## IMPROVEMENTS
- Added `-AddComment` to `Set-JiraIssue`. Allowing the user to write a comment for the changes to the issue (#167, [@Clijsters][])
- Changed the default visibility of comments (#172, [@lipkau][])
- Added more properties to `JiraPS.User` objects (#152, [@lipkau][])


[@alexsuslin]: https://github.com/alexsuslin
[@axxelG]: https://github.com/axxelG
[@brianbunke]: https://github.com/brianbunke
[@Clijsters]: https://github.com/Clijsters
[@colhal]: https://github.com/colhal
[@Dejulia489]: https://github.com/Dejulia489
[@ebekker]: https://github.com/ebekker
[@jkknorr]: https://github.com/jkknorr
[@kittholland]: https://github.com/kittholland
[@LiamLeane]: https://github.com/LiamLeane
[@lipkau]: https://github.com/lipkau
[@lukhase]: https://github.com/lukhase
[@padgers]: https://github.com/padgers
[@ThePSAdmin]: https://github.com/ThePSAdmin
46 changes: 46 additions & 0 deletions _posts/2017-12-05-JiraPS-v2.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
layout: article
permalink: /article/:categories/:title
title: JiraPS v2.4
date: 2017-12-05 23:51:07
categories: Announcement
thumbnail:
author: lipkau
tags:
- JiraPS
- Release
---

We have just uploaded a new version of the **JiraPS** module to the [Gallery](https://www.powershellgallery.com/packages/JiraPS/2.4.0) and to [GitHub](https://github.com/AtlassianPS/JiraPS/releases/tag/v2.4.0).
<!--more-->

# Description
This release brings new functionality, improvements and bug fixes that has been submitted by our contributors.

_Details are listed below_

# CHANGELOG
## FEATURES
- `Add-JiraIssueAttachment`: Add an attachment to an issue (#137, [@beaudryj][])
- `Get-JiraIssueAttachment`: Get attachments from issues (#137, [@beaudryj][])
- `Remove-JiraIssueAttachment`: Remove attachments from issues (#137, [@beaudryj][])

IMPROVEMENTS:
- `JiraPS.Issue` now has a property for Attachments `JiraPS.Attachment` (#137, [@beaudryj][])


[@alexsuslin]: https://github.com/alexsuslin
[@axxelG]: https://github.com/axxelG
[@beaudryj]: https://github.com/beaudryj
[@brianbunke]: https://github.com/brianbunke
[@Clijsters]: https://github.com/Clijsters
[@colhal]: https://github.com/colhal
[@Dejulia489]: https://github.com/Dejulia489
[@ebekker]: https://github.com/ebekker
[@jkknorr]: https://github.com/jkknorr
[@kittholland]: https://github.com/kittholland
[@LiamLeane]: https://github.com/LiamLeane
[@lipkau]: https://github.com/lipkau
[@lukhase]: https://github.com/lukhase
[@padgers]: https://github.com/padgers
[@ThePSAdmin]: https://github.com/ThePSAdmin
67 changes: 67 additions & 0 deletions _posts/2018-03-22-JiraPS-v2.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
---
layout: article
permalink: /article/:categories/:title
title: JiraPS v2.5
date: 2018-03-22 20:10:00
categories: Announcement
thumbnail:
author: lipkau
tags:
- JiraPS
- Release
---

We have just uploaded a new version of the **JiraPS** module to the [Gallery](https://www.powershellgallery.com/packages/JiraPS/2.5.0) and to [GitHub](https://github.com/AtlassianPS/JiraPS/tree/v2.5.0).
<!--more-->

# Description

This release does not contain new features, but is an important step towards harmonizing the code across all the functions and with other AtlassianPS modules.

The full list of bugs and under the hood improvements is listed in the [changelog](#changelog).

One change that will make debugging a lot easier are the changes to `-debug` and `-verbose` across all of the functions.
Here you can see some how they changed:

| |v2.4|v2.5|
|:-:|:------:|:------:|
|`-verbose`|[![Old Verbose Messages](/assets/img/2018-03-22-JiraPS-v2.5-JiraPS2.4-verbose_thumbnail.png)](/assets/img/2018-03-22-JiraPS-v2.5-JiraPS2.4-verbose.png)|[![New Verbose Messages](/assets/img/2018-03-22-JiraPS-v2.5-JiraPS2.5-verbose_thumbnail.png)](/assets/img/2018-03-22-JiraPS-v2.5-JiraPS2.5-verbose.png)|
|`-debug`|[![Old Debug Messages](/assets/img/2018-03-22-JiraPS-v2.5-JiraPS2.4-debug_thumbnail.png)](/assets/img/2018-03-22-JiraPS-v2.5-JiraPS2.4-debug.png)|[![New Debug Messages](/assets/img/2018-03-22-JiraPS-v2.5-JiraPS2.5-debug_thumbnail.png)](/assets/img/2018-03-22-JiraPS-v2.5-JiraPS2.5-debug.png)|

# CHANGELOG

## IMPROVEMENTS

- Harmonized code style (#162, [@lipkau][])
- Harmonized verbose messages (#162, [@lipkau][])
- Harmonized debug messages (#162, [@lipkau][])
- Improved debug behavior (#162, [@lipkau][])
- Update of VS code config to reflect code styling (#162, [@lipkau][])
- Few improvements in test cases (#162, [@lipkau][])
- Added parameter validation (#162, [@lipkau][])
- Updated manifest (#162, [@lipkau][])
- Minor preparations for pwsh support (#162, [@lipkau][])
- Execute Tests against `./Release` (#162, [@lipkau][])
- Removed unused `$ConfigFile` variable (#219, [@lipkau][])
- `Invoke-JiraMethod` now sets the TLS to 1.2 before every call (#84, [@lipkau][])
- Fixed _date_ and _timespan_ representation in _Body_ of `Add-JiraIssueWorklog` (#214, [@lipkau][])
- Improved output of `Get-JiraProject` (#216, [@lipkau][])

_Full list of issues can be found in [Milestone v2.5](https://github.com/AtlassianPS/JiraPS/milestone/8)._

<!-- reference-style links -->
[@alexsuslin]: https://github.com/alexsuslin
[@axxelG]: https://github.com/axxelG
[@beaudryj]: https://github.com/beaudryj
[@brianbunke]: https://github.com/brianbunke
[@Clijsters]: https://github.com/Clijsters
[@colhal]: https://github.com/colhal
[@Dejulia489]: https://github.com/Dejulia489
[@ebekker]: https://github.com/ebekker
[@jkknorr]: https://github.com/jkknorr
[@kittholland]: https://github.com/kittholland
[@LiamLeane]: https://github.com/LiamLeane
[@lipkau]: https://github.com/lipkau
[@lukhase]: https://github.com/lukhase
[@padgers]: https://github.com/padgers
[@ThePSAdmin]: https://github.com/ThePSAdmin
Loading