ops_manager_cli 0.5.0 → 0.5.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
  SHA1:
3
- metadata.gz: e8af7fdbbb2293c2f7f6a1e609776f7bc0f66ec9
4
- data.tar.gz: dd774257ac657f9602d02583d657896fe483cf29
3
+ metadata.gz: 56b6e170417bdbc8f71979da3dad7752b41886ef
4
+ data.tar.gz: 2448eaaadf82cede4803c522dd8c730e359723b3
5
5
  SHA512:
6
- metadata.gz: 1c598d8b6023fb4d2d6d8b95fc1c7d246be7d4c5bdd5f738c9664ce6f0d39184b8d72851c26e6f16b5e02b9669a36b7194d76b39135cdefe6151e1c8ce1a6faa
7
- data.tar.gz: e1e533f82c2ac7e7b7dc0fc9114b5d0ef79ed7ff8f6131610d79230a4653526d941a7d50cf24ca6d7e163ce23d8cc90b61fadcc1811890ebab4d22a014f6cb7e
6
+ metadata.gz: 407651033ac5e16685ad22f7b8a19ca616516965757c316a6dc344b7648f37cbe7383003cba0937517cbd8e6e7641664731af044256ad60d80c0876abaf5b8aa
7
+ data.tar.gz: d5070005307c4a93dcf91d8e65c06cd80c37c8c47670eb60d633658aed31b72f6825f8b0f1d5a5b06d7842ebf1e222846044d56d40274615c8120ad7b123f7f3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Change Log
2
2
 
3
+ ## [v0.5.0](https://github.com/compozed/ops_manager_cli/tree/v0.5.0) (2017-01-24)
4
+ [Full Changelog](https://github.com/compozed/ops_manager_cli/compare/v0.4.1...v0.5.0)
5
+
6
+ **Implemented enhancements:**
7
+
8
+ - Support DELETE on curl [\#19](https://github.com/compozed/ops_manager_cli/pull/19) ([glyn](https://github.com/glyn))
9
+
10
+ **Closed issues:**
11
+
12
+ - Upgrade does not merge product installation settings [\#22](https://github.com/compozed/ops_manager_cli/issues/22)
13
+ - ops\_manager curl -x PUT not working [\#17](https://github.com/compozed/ops_manager_cli/issues/17)
14
+ - When uploading stemcell it does not show the correct output [\#15](https://github.com/compozed/ops_manager_cli/issues/15)
15
+
3
16
  ## [v0.4.1](https://github.com/compozed/ops_manager_cli/tree/v0.4.1) (2016-10-21)
4
17
  [Full Changelog](https://github.com/compozed/ops_manager_cli/compare/v0.4.0...v0.4.1)
5
18
 
@@ -45,4 +58,4 @@
45
58
  ## [v0.1.1](https://github.com/compozed/ops_manager_cli/tree/v0.1.1) (2016-05-06)
46
59
 
47
60
 
48
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
61
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
data/Dockerfile CHANGED
@@ -1,7 +1,7 @@
1
1
  FROM ruby:2.3.0
2
2
 
3
3
  ENV GEM_NAME ops_manager_cli
4
- ENV GEM_VERSION 0.5.0
4
+ ENV GEM_VERSION 0.5.1
5
5
  ENV OVFTOOL_VERSION 4.1.0-2459827
6
6
  ENV OVFTOOL_INSTALLER VMware-ovftool-${OVFTOOL_VERSION}-lin.x86_64.bundle
7
7
  ARG DOWNLOAD_URL
@@ -27,4 +27,3 @@ COPY pkg/${GEM_NAME}-${GEM_VERSION}.gem /tmp/
27
27
 
28
28
  RUN gem install /tmp/${GEM_NAME}-${GEM_VERSION}.gem
29
29
 
30
-
@@ -95,7 +95,7 @@ class OpsManager
95
95
 
96
96
  def upgrade_product_installation(guid, product_version)
97
97
  print_green "====> Bumping product installation #{guid} product_version to #{product_version} ..."
98
- opts = { to_version: product_version }
98
+ opts = { :body => { 'to_version' => product_version }.to_json }
99
99
  res = authenticated_put("/api/v0/staged/products/#{guid}", opts)
100
100
  raise OpsManager::UpgradeError.new(res.body) unless res.code == '200'
101
101
  say_green 'done'
@@ -1,3 +1,3 @@
1
1
  class OpsManager
2
- VERSION = "0.5.0"
2
+ VERSION = "0.5.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ops_manager_cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - CompoZed
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-01-24 00:00:00.000000000 Z
11
+ date: 2017-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler