cpl 2.2.1 → 2.2.2

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: 81caf0d255f4e34e0992abfe2f757f9bf8f248e4fedec251c2f9b42041a6f778
4
- data.tar.gz: b82433c165d83069894c7bd8b05d24a7b1d06dacd7065577a13c161778ff8833
3
+ metadata.gz: e940c7b8482b8a169eaffb14fcbc0f1b97755f13bfa747c681d0da832b10ed52
4
+ data.tar.gz: faabae35d4c0d7adfbdac9df66c5122f25cfad62120c6dcf9a808748423d1c2f
5
5
  SHA512:
6
- metadata.gz: a9975e154888a11ea748ebd384e6349727510179d8e90b8cec7ee569a4b9bf3ed43c3200405796994a55de97cd63f228ca37c7bfefaf40875d815dd185cdeac4
7
- data.tar.gz: '04910e7adbf92244805ccb535fbf3f8452df999b95b101a6f373eb8a004b251f3a1c16d63eab460542a03169e15b1f1e597737f194e59c1594c6700f132fb578'
6
+ metadata.gz: 202edacf78d176b299412660f47fcf4a5086780fd1a338f0aa15a443848e6da2a0a9dca0616e39a3ea192ee356714c4e69c4f215bd43fbca63430fd1aa8d5834
7
+ data.tar.gz: 1bd2369dc1df836d57a7e9ac18f7e006ff5843cc1298c9c3c7340d4681e762826a2fbb003a789fdb06aefd26fddd2d7d1e41f60ec16d695e51f35ec2c78b74f8
data/CHANGELOG.md CHANGED
@@ -14,6 +14,8 @@ Changes since the last non-beta release.
14
14
 
15
15
  _Please add entries here for your pull requests that have not yet been released._
16
16
 
17
+ ## [2.2.1] - 2024-06-17
18
+
17
19
  ### Fixed
18
20
 
19
21
  - Fixed issue where latest image may be incorrect. [PR 201](https://github.com/shakacode/control-plane-flow/pull/201) by [Rafael Gomes](https://github.com/rafaelgomesxyz).
@@ -237,7 +239,8 @@ _Please add entries here for your pull requests that have not yet been released.
237
239
 
238
240
  - Initial release
239
241
 
240
- [Unreleased]: https://github.com/shakacode/control-plane-flow/compare/v2.2.0...HEAD
242
+ [Unreleased]: https://github.com/shakacode/control-plane-flow/compare/v2.2.1...HEAD
243
+ [2.2.1]: https://github.com/shakacode/control-plane-flow/compare/v2.2.0...v2.2.1
241
244
  [2.2.0]: https://github.com/shakacode/control-plane-flow/compare/v2.1.0...v2.2.0
242
245
  [2.1.0]: https://github.com/shakacode/control-plane-flow/compare/v2.0.2...v2.1.0
243
246
  [2.0.2]: https://github.com/shakacode/control-plane-flow/compare/v2.0.1...v2.0.2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cpl (2.2.1)
4
+ cpl (2.2.2)
5
5
  debug (~> 1.7.1)
6
6
  dotenv (~> 2.8.1)
7
7
  jwt (~> 2.8.1)
@@ -29,11 +29,11 @@ GEM
29
29
  hashdiff (1.1.0)
30
30
  iniparse (1.5.0)
31
31
  io-console (0.7.2)
32
- irb (1.13.1)
32
+ irb (1.13.2)
33
33
  rdoc (>= 4.0.0)
34
34
  reline (>= 0.4.2)
35
35
  json (2.7.2)
36
- jwt (2.8.1)
36
+ jwt (2.8.2)
37
37
  base64
38
38
  overcommit (0.60.0)
39
39
  childprocess (>= 0.6.3, < 5)
data/cpl.gemspec CHANGED
@@ -38,4 +38,8 @@ Gem::Specification.new do |spec|
38
38
  spec.executables = ["cpl"]
39
39
 
40
40
  spec.metadata["rubygems_mfa_required"] = "true"
41
+
42
+ spec.post_install_message = "DEPRECATED: The `cpl` gem has been renamed to `cpflow` " \
43
+ "and will no longer be supported. " \
44
+ "Please switch to `shakaflow` as soon as possible."
41
45
  end
data/lib/cpl/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cpl
4
- VERSION = "2.2.1"
4
+ VERSION = "2.2.2"
5
5
  MIN_CPLN_VERSION = "2.0.1"
6
6
  end
data/lib/cpl.rb CHANGED
@@ -60,6 +60,7 @@ module Cpl
60
60
  def self.start(*args)
61
61
  ENV["CPLN_SKIP_UPDATE_CHECK"] = "true"
62
62
 
63
+ warn_deprecated_gem
63
64
  check_cpln_version
64
65
  check_cpl_version
65
66
  fix_help_option
@@ -67,6 +68,16 @@ module Cpl
67
68
  super(*args)
68
69
  end
69
70
 
71
+ def self.warn_deprecated_gem
72
+ return if @warned_deprecated_gem
73
+
74
+ @warned_deprecated_gem = true
75
+
76
+ ::Shell.warn_deprecated("This gem has been renamed to `cpflow` " \
77
+ "and will no longer be supported. " \
78
+ "Please switch to `cpflow` as soon as possible.")
79
+ end
80
+
70
81
  def self.check_cpln_version # rubocop:disable Metrics/MethodLength
71
82
  return if @checked_cpln_version
72
83
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cpl
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 2.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Gordon
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-06-14 00:00:00.000000000 Z
12
+ date: 2024-06-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: debug
@@ -319,7 +319,8 @@ licenses:
319
319
  - MIT
320
320
  metadata:
321
321
  rubygems_mfa_required: 'true'
322
- post_install_message:
322
+ post_install_message: 'DEPRECATED: The `cpl` gem has been renamed to `cpflow` and
323
+ will no longer be supported. Please switch to `shakaflow` as soon as possible.'
323
324
  rdoc_options: []
324
325
  require_paths:
325
326
  - lib
@@ -334,7 +335,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
334
335
  - !ruby/object:Gem::Version
335
336
  version: '0'
336
337
  requirements: []
337
- rubygems_version: 3.5.10
338
+ rubygems_version: 3.5.13
338
339
  signing_key:
339
340
  specification_version: 4
340
341
  summary: Heroku to Control Plane