pact_broker-client 1.48.0 → 1.49.0

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
  SHA256:
3
- metadata.gz: b31de7cb8fa97a019e49a5ff8fc37683ed0116980a40cdddb37eb1cd0a52a606
4
- data.tar.gz: 32278f6e5d47e0ead01215df9d59fc7a63843c106739b249e68b026ea5a0f31b
3
+ metadata.gz: a5c2b5906de55da5afb0461b51468d56834ab580efe7e3329c5b3b17b4c57ae4
4
+ data.tar.gz: f452f6412fd031c4e4114c60516e058d1e6fe7b5211200c1543ab2f0e2e67c32
5
5
  SHA512:
6
- metadata.gz: a9fb4c7691da7685d7d913678213a1a0576bc09f6eb118e54fec6da3fdf07bbd7c25e7d5d9f0156a700faed0a7ba16610f5f456320025fcbe991b512448d6c90
7
- data.tar.gz: 11c9f1500fe89aebef11f79ee79fa2e3f65af16cd92c8616d90d7adc625d000269a010ea9658d0579db7c0afbc1d164a3abffab4139fc6ff628a0ca6464f2f00
6
+ metadata.gz: 0a344ebc2e27870f7b053608df5dae99bb38b81c8555baa51bf08b0d9be6d85d4e7a5755fa1615d7463363fd1d77890ffbdb374d8395115e9a50cc18b4607e50
7
+ data.tar.gz: 68828a17238b5c0d4e2f98c17f75b8bcba175191eea226ffe77e63a3bf1a972b5c09b6d52d23040cd9b2b325d77216c7fff879f18d6976a5361463f52203ddef
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ <a name="v1.49.0"></a>
2
+ ### v1.49.0 (2021-08-05)
3
+
4
+ #### Features
5
+
6
+ * **can-i-deploy**
7
+ * actually remove feature toggle for --ignore option ([1c686f2](/../../commit/1c686f2))
8
+
1
9
  <a name="v1.48.0"></a>
2
10
  ### v1.48.0 (2021-08-04)
3
11
 
@@ -31,9 +31,7 @@ module PactBroker
31
31
  method_option :tag, aliases: "-t", type: :array, banner: "TAG", desc: "Tag name for consumer version. Can be specified multiple times."
32
32
  method_option :tag_with_git_branch, aliases: "-g", type: :boolean, default: false, required: false, desc: "Tag consumer version with the name of the current git branch. Default: false"
33
33
  method_option :build_url, desc: "The build URL that created the pact"
34
- method_option :on_conflict, desc: "If a pact already exists for this consumer version and provider with different content, specify what action should be taken. Options are "
35
34
  method_option :merge, type: :boolean, default: false, require: false, desc: "If a pact already exists for this consumer version and provider, merge the contents. Useful when running Pact tests concurrently on different build nodes."
36
-
37
35
  output_option_json_or_text
38
36
  shared_authentication_options
39
37
 
@@ -28,11 +28,7 @@ module PactBroker
28
28
 
29
29
  validate_credentials
30
30
  selectors = VersionSelectorOptionsParser.call(ARGV).select { |s| !s[:ignore] }
31
- ignore_selectors = if ENV.fetch("PACT_BROKER_FEATURES", "").include?("ignore")
32
- VersionSelectorOptionsParser.call(ARGV).select { |s| s[:ignore] }
33
- else
34
- []
35
- end
31
+ ignore_selectors = VersionSelectorOptionsParser.call(ARGV).select { |s| s[:ignore] }
36
32
  validate_can_i_deploy_selectors(selectors)
37
33
  dry_run = options.dry_run || ENV["PACT_BROKER_CAN_I_DEPLOY_DRY_RUN"] == "true"
38
34
  can_i_deploy_options = { output: options.output, retry_while_unknown: options.retry_while_unknown, retry_interval: options.retry_interval, dry_run: dry_run, verbose: options.verbose }
@@ -1,5 +1,5 @@
1
1
  module PactBroker
2
2
  module Client
3
- VERSION = '1.48.0'
3
+ VERSION = '1.49.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pact_broker-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.48.0
4
+ version: 1.49.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Beth Skurrie
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-04 00:00:00.000000000 Z
11
+ date: 2021-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty