hako 2.9.0 → 2.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8da04c31fe7625fb6d07dc567a54ecd07100fc84b434bd390137ab5801a41bdb
4
- data.tar.gz: aae515841f829f80332241e8187973a2f38fa79ae51ce217a92a2cac911970e2
3
+ metadata.gz: 240ddcf68144e3f2a8a9af6d1fe0dc74c3197d8391e644f1333a4f2c0a2759d3
4
+ data.tar.gz: a8fa120750581f506dd0b92267c52ad516f2c75c6e8fed04958e572c85c20709
5
5
  SHA512:
6
- metadata.gz: 9383d706cc18370a6878d3206ce526cd0c99ec93c636fbc0c15ab8bb34360537785f9e97a96a8298c85cdd595d18b7af351cf323c57b4a0371de30662f18bbea
7
- data.tar.gz: 12bb5b4c2ed31c2dfdf6453a2a188ab3f046833aa26f26072a273d17eac95b2aff72dfe92d130bffcc9d55396738d1c6defd7a024ea5ee23f3ea9ca0f87930f2
6
+ metadata.gz: 7204bf87254ca32add076044bfb4c62afcf2f338ebbde0d77e6af8be77873e9797b56e035715384a6d800c733bc181ab42fba7f54a70568ae523cbc989c65737
7
+ data.tar.gz: 6f565d183d0031febdaedca11a5aea11d63cae0fcae97f7ac8cd67e5e5a34e973f41c592c5233d1e0b9ad8860dd9a8f2cf12b9946fda11a428241ce6ede5233c
@@ -1,3 +1,7 @@
1
+ # 2.9.1 (2019-04-04)
2
+ - Skip creating load balancer on dry-run
3
+ - Regression in v2.9.0
4
+
1
5
  # 2.9.0 (2019-04-03)
2
6
  ## New features
3
7
  - Add `remove_starting` method to Hako::Script which is called when `hako remove` starts
@@ -103,7 +103,9 @@ module Hako
103
103
  validation_error!('desired_count must be set')
104
104
  end
105
105
  front_port = determine_front_port
106
- ecs_elb_client.find_or_create_load_balancer(front_port)
106
+ unless @dry_run
107
+ ecs_elb_client.find_or_create_load_balancer(front_port)
108
+ end
107
109
  @scripts.each { |script| script.deploy_started(containers, front_port) }
108
110
  definitions = create_definitions(containers)
109
111
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Hako
4
- VERSION = '2.9.0'
4
+ VERSION = '2.9.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hako
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.0
4
+ version: 2.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kohei Suzuki
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-04-03 00:00:00.000000000 Z
11
+ date: 2019-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-applicationautoscaling