broadside 3.3.0 → 3.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 899d3a593ec0af2a6d0bf8ac1d57c70effc37ca5
4
- data.tar.gz: 51a9d9276948eaf1beef32e2392bb66b0d4bd372
3
+ metadata.gz: 62e9e8ccc7a8d1b6b2f7252991f30d1503284207
4
+ data.tar.gz: 54bb325ab94802106994f597df69e6cb9812418d
5
5
  SHA512:
6
- metadata.gz: 6c828f7cf4ae5c293265af3e8a40955695fd3cd6b346a5628eb716a253fb55216dfb57ca55c34fccc3c98d7b965d44810ade651ed513486b9b8b217cefcaadf7
7
- data.tar.gz: fcd3efac4301a37d48dab29b91df591a349b2cdd953dbb015d69008c7bd4bd3cbaa7d660448c63f49c8a55b6558c0814c3161deec48bcdafda5fb598999f8ae6
6
+ metadata.gz: decb7a9aa12076fc84c48a63360705033a41d6ad6c7fbb8e484a0bf69ee1c8b4e026a8a15d7898c8a096a2a973ddb0044704f33b6bed5927b5bd5f2c8977b2c7
7
+ data.tar.gz: b53705e78def5a59f54206090b1de20ad9217517929ed3fceca2f2d92ffc201399979f6d7a960fe3b74bf673d410bbc49eb17acfa11ee80b94749ae1e2f18328
@@ -1,33 +1,36 @@
1
+ # 3.3.1
2
+ - Use new modularized aws-sdk gems: aws-sdk-ec2 & aws-sdk-ecs
3
+
1
4
  # 3.3.0
2
- -- Add `execute` command to execute arbitrary bash inside a running container
3
- -- Add `--all` flag to `execute` to run a command on all containers
4
- -- Always turn on TTY interaction when running remote commands.
5
- -- Fix bug with command being an array instead of string
5
+ - Add `execute` command to execute arbitrary bash inside a running container
6
+ - Add `--all` flag to `execute` to run a command on all containers
7
+ - Always turn on TTY interaction when running remote commands.
8
+ - Fix bug with command being an array instead of string
6
9
 
7
10
  # 3.2.0
8
- -- Add ability to execute a bash command on a container
9
- -- Output actual bash command being run when log level is debug.
11
+ - Add ability to execute a bash command on a container
12
+ - Output actual bash command being run when log level is debug.
10
13
 
11
14
  # 3.1.3
12
- -- Better error messaging when trying to bash/ssh/etc to an instance_index that doesn't exist
15
+ - Better error messaging when trying to bash/ssh/etc to an instance_index that doesn't exist
13
16
 
14
17
  # 3.1.2
15
- -- Don't instantiate AWS Credentials until necessary
18
+ - Don't instantiate AWS Credentials until necessary
16
19
 
17
20
  # 3.1.1
18
- -- Handle Fixnum deprecation warning
21
+ - Handle Fixnum deprecation warning
19
22
 
20
23
  # 3.1.0
21
- -- Simplified syntax for AWS credentials
24
+ - Simplified syntax for AWS credentials
22
25
 
23
26
  # 3.0.10
24
- -- Fix log output when using `scale` command
27
+ - Fix log output when using `scale` command
25
28
 
26
29
  # 3.0.9
27
- -- Fixing `--tag` handling on `bootstrap` to correctly pass assertion
30
+ - Fixing `--tag` handling on `bootstrap` to correctly pass assertion
28
31
 
29
32
  # 3.0.8
30
- -- Sort the output of `broadside targets` alphabetically
33
+ - Sort the output of `broadside targets` alphabetically
31
34
 
32
35
  # 3.0.7
33
36
  - `--tag` option for `bootstrap` also was named `--optional` (whoops)
@@ -19,7 +19,8 @@ Gem::Specification.new do |spec|
19
19
 
20
20
  spec.add_dependency 'activesupport', '>= 3', '< 6'
21
21
  spec.add_dependency 'activemodel', '>= 3', '< 6'
22
- spec.add_dependency 'aws-sdk', '~> 2.3'
22
+ spec.add_dependency 'aws-sdk-ecs', '~> 1.0'
23
+ spec.add_dependency 'aws-sdk-ec2', '~> 1.0'
23
24
  spec.add_dependency 'dotenv', '>= 0.9.0', '< 3.0'
24
25
  spec.add_dependency 'gli', '~> 2.13'
25
26
  spec.add_dependency 'tty', '~> 0.5'
@@ -1,6 +1,7 @@
1
1
  require 'active_model'
2
2
  require 'active_support/core_ext'
3
- require 'aws-sdk'
3
+ require 'aws-sdk-ec2'
4
+ require 'aws-sdk-ecs'
4
5
 
5
6
  require 'broadside/error'
6
7
  require 'broadside/logging_utils'
@@ -1,3 +1,3 @@
1
1
  module Broadside
2
- VERSION = '3.3.0'.freeze
2
+ VERSION = '3.3.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: broadside
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.0
4
+ version: 3.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Leung
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-08-15 00:00:00.000000000 Z
12
+ date: 2017-12-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -52,19 +52,33 @@ dependencies:
52
52
  - !ruby/object:Gem::Version
53
53
  version: '6'
54
54
  - !ruby/object:Gem::Dependency
55
- name: aws-sdk
55
+ name: aws-sdk-ecs
56
56
  requirement: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '2.3'
60
+ version: '1.0'
61
61
  type: :runtime
62
62
  prerelease: false
63
63
  version_requirements: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
- version: '2.3'
67
+ version: '1.0'
68
+ - !ruby/object:Gem::Dependency
69
+ name: aws-sdk-ec2
70
+ requirement: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '1.0'
75
+ type: :runtime
76
+ prerelease: false
77
+ version_requirements: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: '1.0'
68
82
  - !ruby/object:Gem::Dependency
69
83
  name: dotenv
70
84
  requirement: !ruby/object:Gem::Requirement
@@ -196,7 +210,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
196
210
  version: '0'
197
211
  requirements: []
198
212
  rubyforge_project:
199
- rubygems_version: 2.6.11
213
+ rubygems_version: 2.6.13
200
214
  signing_key:
201
215
  specification_version: 4
202
216
  summary: A command-line tool for EC2 Container Service deployment.