Skip to content

Commit

Permalink
Mark 3.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dagguh committed Oct 25, 2023
1 parent 1c0b4ad commit e2ff9de
Show file tree
Hide file tree
Showing 3 changed files with 7 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.23.1...master
[Unreleased]: https://github.com/atlassian/jira-actions/compare/release-3.24.0...master

## [3.24.0] - 2023-10-24
[3.24.0]: https://github.com/atlassian/jira-actions/compare/release-3.23.1...release-3.24.0

### Added
- Add `PerformanceServerTiming`. Aid with [JPERF-1408].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class PerformanceResourceTiming internal constructor(
*
* @return Null if blocked, e.g. by same-origin policy.
* Empty if not blocked, but server didn't send any `Server-Timing` headers.
* @since 3.24.0
*/
val serverTiming: List<PerformanceServerTiming>?
)
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import java.time.Duration

/**
* Represents the [PerformanceServerTiming](https://www.w3.org/TR/2023/WD-server-timing-20230411/#the-performanceservertiming-interface).
*
* @since 3.24.0
*/
class PerformanceServerTiming internal constructor(
val name: String,
Expand Down

0 comments on commit e2ff9de

Please sign in to comment.