Skip to content

Commit

Permalink
Mark 3.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dagguh committed Jun 18, 2024
1 parent 5e69deb commit b2e60ef
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ Adding a requirement of a major version of a dependency is breaking a contract.
Dropping a requirement of a major version of a dependency is a new contract.

## [Unreleased]
[Unreleased]: https://github.com/atlassian/jira-actions/compare/release-3.27.0...master
[Unreleased]: https://github.com/atlassian/jira-actions/compare/release-3.28.0...master

## [3.28.0] - 2024-06-17
[3.28.0]: https://github.com/atlassian/jira-actions/compare/release-3.27.0...release-3.28.0

### Added
- Split `SetUpAction` into `DisableRichTextEditor` and `HideHealthNotifications`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import com.atlassian.performance.tools.jiraactions.api.DISABLE_RICH_TEXT_EDITOR
import com.atlassian.performance.tools.jiraactions.api.WebJira
import com.atlassian.performance.tools.jiraactions.api.measure.ActionMeter

/**
* @since 3.28.0
*/
class DisableRichTextEditor(
private val jira: WebJira,
private val meter: ActionMeter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import com.atlassian.performance.tools.jiraactions.api.HIDE_HEALTH_NOTIFICATIONS
import com.atlassian.performance.tools.jiraactions.api.WebJira
import com.atlassian.performance.tools.jiraactions.api.measure.ActionMeter

/**
* @since 3.28.0
*/
class HideHealthNotifications(
private val jira: WebJira,
private val meter: ActionMeter
Expand Down

0 comments on commit b2e60ef

Please sign in to comment.