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

Mark 1.15.0 #22

Merged
merged 1 commit into from
Jan 23, 2024
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
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
Loading