Skip to content

Latest commit

 

History

History
250 lines (147 loc) · 14 KB

CHANGELOG.md

File metadata and controls

250 lines (147 loc) · 14 KB

Changelog

0.16.0 (2021-08-05)

Features

Bug Fixes

  • change module exports and upgrade vercel to latest release (#1005) (f8f8981)
  • reduce permission required for session manager (#1018) (09476eb)

0.15.1 (2021-07-13)

Bug Fixes

  • apply patch for broken scale up lambda #980 (b957e26)

0.15.0 (2021-07-07)

Features

  • Added support for white listing of repositories (#915) (b1f451a)

0.14.0 (2021-06-17)

Features

Bug Fixes

0.13.1 (2021-06-01)

Bug Fixes

  • .gitignore for 'secrets.auto.tfvars' (38d7df0)
  • Add some essential dependecies on ubuntu example (0079d16)
  • fail to download wrong tag of lambda (#840) (1112ca8)
  • increase runner sync lambda memory setting and upgrade npm dependencies (#844) (b9e36e9)
  • revert dependency updates on runner module (#784) (76cdbe3)
  • ubuntu example runner_log_files variable (5b3fc5b)
  • ubuntu example to log syslog instead of messages (#785) (fb3e5d2)
  • Update ubuntu example with assume_role comment (2478daf)
  • upgrade runner module to support upgrade octokit auth-app (#786) (e110318)
  • docs: fix variable name create_service_linked_role_spot in readme (#750) (42b0427), closes #736

0.13.0 (2021-03-28)

Features

  • Allow setting the market_options runners module to disable spot instances (#657) (7487643)

0.12.0 (2021-03-09)

Features

  • syncer: account access control for distribution cache bucket (#585) (05c1c11)

Bug Fixes

  • Pass runner_group_name to runner module (#603) (54070b3)

0.11.0 - 2021-03-01

Added

  • feat: Tag Volume Resources (#570)
  • feat: Retrieve installation id automatically if not present (triggered by ordinary webhook) (#515)

Fixed

  • fix(bucket): Adds bucket policy #536
  • fix: Upgrade vpc to 2.2.0 and pre-commit terraform hooks (#538)
  • fix(lint): Clean up lint (#534)

0.10.0 - 2021-01-27

Added

  • Support runner groups (#496)

0.9.1 - 2021-01-22

Fixed

  • fix(ghes): Corrects preview option #482 @mcaulifn @samuelb

0.9.0 - 2021-01-21

Added

  • Add support for GitHub Enterprise Server (GHES) #412, #481, #467 @mcaulifn @jonico
  • Allow configuring additional security groups #392 @surminus

Changed

  • Log groups per type of logging #476
  • Copy directory after installing zip #444 @masterful
  • Update ubuntu example with rootless docker and non privileged user #433
  • Changed strategy in scaling. Previous the module scaled by checking for any queued workflow for the repo initiation the check_run event. Now the module scales only if the correlated check_run is still in queued state. #423

Fixed

  • Fix missing permissions for CloudWatch Agent #445 @bennettp123
  • Swap scale up/scale down timeout description #468 @jonico
  • Fix for invalid configuration #466 @jonico
  • Add ssm:GetParameter to runner-ssm-parameters #446 @bennettp123
  • Replace crypto #429
  • Scale up lambda deprecated attribute #410

Migrations

Changes related to logging groups introduced via #476 will destroy existing logging group in AWS cloudwatch for runners log. In case you would like to keep the logging ensure you remove the log group from the state before running an apply

export RESOURCE=$(terraform state list | grep "aws_cloudwatch_log_group.runner")
terraform state rm $RESOURCE

0.8.1 - 2020-12-08

Changed

  • Policy is missing for streaming logs to cloudwatch #388

0.8.0 - 2020-12-08

Changed

  • Examples upgraded to Terraform 13 (#372)

Added

  • Streaming runner logs to cloudwatch #375

0.7.0 - 2020-12-04

Changed

  • Small clarifications in the README #368 @lrytz

Added

  • Allow operator to pass in a list of managed IAM policy ARNs for the runner role #361 @jpalomaki
  • expand options for sourcing lambda to include S3 #292 @eky5006

0.6.0 - 2020-10-10

Added

  • Only allow tagging and termination of runner instances #201 @jpalomaki

Fixed

  • Fix pagination with listing self-hosted runners #202 @HenryNguyen5

0.5.0 - 2020-08-25

Added

  • feat: Manage log groups via module. When upgrading you have to import the log groups by AWS into your state. See below the example commands for the default example.
terraform import module.runners.module.runner_binaries.aws_cloudwatch_log_group.syncer "/aws/lambda/default-syncer"
terraform import module.runners.module.runners.aws_cloudwatch_log_group.scale_up "/aws/lambda/default-scale-up"
terraform import module.runners.module.runners.aws_cloudwatch_log_group.scale_down "/aws/lambda/default-scale-down"
terraform import module.runners.module.webhook.aws_cloudwatch_log_group.webhook "/aws/lambda/default-webhook"
  • feat: Expose ami-filters and user-data template file location to users to allow use of custom AMIs

  • feat: Added option to binaries syncer to upgrade to pre-releases, preventing any auto-updating on startup. Option runner_allow_prerelease_binaries is disabled by default. (#141, #165) @sjagoe

  • feat: SSM policies are by default disabled, set enable_ssm_on_runners to true to enable access to the runner instances via SSM. (#143) @HenryNguyen5

  • feat: Log full sqs event (#147) @HenryNguyen5

0.4.0 - 2020-08-10

Added

  • feat: idle runners #113

0.3.0 - 2020-08-06

Added

  • feat: Add support for ARM64 runners #102 @bdruth
  • feat: added variables in the root module to allow passing in pre and and post install #45 @jaydenrasmussen

Updated

  • fix: Build script not entering all the module directories (#103) @alonsohki
  • fix: Remove Orphan AWS runners (#79)
  • fix: documentation for downloading lambdas (#78) @@bendavies
  • fix: Rename variable and fix variables descriptions (#75) @bendavies @leoblanc

0.2.0 - 2020-06-15

Added

  • #34 encrypt secrets via KMS (#37)

0.1.0 - 2020-05-25

Added

  • #30 - Add parameter to terraform to set max number of runners (#31)

Updated

  • #17 - adding tests for syncer (#33)
  • #20 #21 - Improve docs, add readme, add hook generate terraform docs

0.0.1 - 2020-05-19

Added

  • First release.