Skip to content

Commit

Permalink
Mark 1.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dagguh committed Jan 23, 2024
1 parent 16dbb33 commit 5199b47
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,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-labs/aws-resources/compare/release-1.14.0...master
[Unreleased]: https://github.com/atlassian-labs/aws-resources/compare/release-1.15.0...master

## [1.15.0] - 2024-01-23
[1.15.0]: https://github.com/atlassian-labs/aws-resources/compare/release-1.14.0...release-1.15.0

### Added
- Add `Aws.Builder.housekeeping`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -398,10 +398,13 @@ class Aws private constructor(

/**
* @param [amiProvider] A way to choose the default AMI.
* @since v1.10.1
* @since 1.10.1
*/
fun amiProvider(amiProvider: AmiProvider): Builder = apply { this.amiProvider = amiProvider }

/**
* @since 1.15.0
*/
fun housekeeping(housekeeping: Housekeeping): Builder = apply { this.housekeeping = housekeeping }

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package com.atlassian.performance.tools.aws.api.ami
import com.atlassian.performance.tools.aws.api.Aws

/**
* @since v1.10.1
* @since 1.10.1
*/
interface AmiProvider {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import com.atlassian.performance.tools.aws.api.Aws
import com.atlassian.performance.tools.aws.api.CanonicalImageIdByNameResolver

/**
* @since v1.10.1
* @since 1.10.1
*/
class CanonicalAmiProvider private constructor(
private val imageName: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package com.atlassian.performance.tools.aws.api.ami
import com.atlassian.performance.tools.aws.api.Aws

/**
* @since v1.10.1
* @since 1.10.1
*/
class FixedAmiProvider(
private val imageId: String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import org.apache.logging.log4j.LogManager
import org.apache.logging.log4j.Logger

/**
* @since v1.10.1
* @since 1.10.1
*/
class NoAmiCache : SshAmiMod.AmiCache {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import java.time.Duration
import java.util.*

/**
* @since v1.10.1
* @since 1.10.1
*/
class SshAmiMod private constructor(
private val sshInstanceMod: SshInstanceMod,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import org.apache.logging.log4j.LogManager
import org.apache.logging.log4j.Logger

/**
* @since v1.10.1
* @since 1.10.1
*/
class TiebreakingAmiCache private constructor(
private val tiebreaker: AmiTiebreaker
Expand Down

0 comments on commit 5199b47

Please sign in to comment.