beaker-docker 1.2.0 → 1.3.0

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: 0ce1f4aae26967ce3b8f4d3d24db2a23c2a09b19a749d40bdd7c731d64201f3b
4
- data.tar.gz: 711d8f36b0f39494206dbf6c06ffc602f213ad8681ba423529d413240c3d9c9c
3
+ metadata.gz: 60d4e4b389614a36d04d058e43e4ff3dccbd4b0902d1848f7131d2185a41f6db
4
+ data.tar.gz: 476e807dc221163733a9bb2524c2d5f371d32a884379f16b252825cd5ec44237
5
5
  SHA512:
6
- metadata.gz: b7c52174a22413d6aa3a99cd0c9e98e8c3cef1c4f973edf9c3a0bd5c4c5e1c854c87c5147310e93ea387bb08ea1a11e6cd71d4dd44dd291db73619f2663f29bc
7
- data.tar.gz: 13bf5b863f187e020040ac56504bae971bc0f27ae07ccd4e598325762782a269d56297cacd00b732a0fdd25e89d746aa7d7193aa8234f225c94c20d304a28ace
6
+ metadata.gz: 0d2b58be378b0837b800cf93fbacdc4ed1ebfb97451c3f0217ef3b9189eda1cdf3938e18706c3d1ccad831b9af2f089d517a77d20e09a91025bf4d07a52f5435
7
+ data.tar.gz: '080373c40a10808cd658bf585e2ab34768de2a3efc85e7a90180d694685c92e340c9746eae02674454e6a32b20dd314d66aa705b57e53984f521ee0e9db2470c'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.3.0](https://github.com/voxpupuli/beaker-docker/tree/1.3.0) (2022-12-18)
4
+
5
+ [Full Changelog](https://github.com/voxpupuli/beaker-docker/compare/1.2.0...1.3.0)
6
+
7
+ **Implemented enhancements:**
8
+
9
+ - Generate a ssh port from 1025..9999 range [\#68](https://github.com/voxpupuli/beaker-docker/pull/68) ([jay7x](https://github.com/jay7x))
10
+
3
11
  ## [1.2.0](https://github.com/voxpupuli/beaker-docker/tree/1.2.0) (2022-08-11)
4
12
 
5
13
  [Full Changelog](https://github.com/voxpupuli/beaker-docker/compare/1.1.1...1.2.0)
@@ -78,7 +78,7 @@ module Beaker
78
78
  'Hostname' => host.name,
79
79
  'HostConfig' => {
80
80
  'PortBindings' => {
81
- '22/tcp' => [{ 'HostPort' => rand.to_s[2..5], 'HostIp' => '0.0.0.0'}]
81
+ '22/tcp' => [{ 'HostPort' => rand(1025..9999).to_s, 'HostIp' => '0.0.0.0'}]
82
82
  },
83
83
  'PublishAllPorts' => true,
84
84
  'RestartPolicy' => {
@@ -1,3 +1,3 @@
1
1
  module BeakerDocker
2
- VERSION = '1.2.0'
2
+ VERSION = '1.3.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker-docker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vox Pupuli
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2022-08-11 00:00:00.000000000 Z
14
+ date: 2022-12-18 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rspec