dependabot-core 0.86.20 → 0.86.21

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: 016bb8198276c8f6e2c38add7d6354b0ad56bcf9d19ec6831176a85bbc5c860c
4
- data.tar.gz: bfae98443d8067bc797446b47a668e03b51632893111aaa21b56ff8eb67d28e9
3
+ metadata.gz: cea416ce8cb5cc9cb308379159330aeb1ec89a8474713424d2981a60a392fe2d
4
+ data.tar.gz: 7af9dbfc05253c74ba47b1ebf8b04ab1d0b87355840a6d59180d3823884e7518
5
5
  SHA512:
6
- metadata.gz: b9b75b2e238e76122e00262df80d3b9132dc39a612592970fd7ded948cdb81c5819c25d94cda0a44993e2dc5a70c1e02e8cbc6fad86a9574dce82c4f9bbdfc04
7
- data.tar.gz: 173359802fa99c744b9730ca68c3dcaaa45aa8b180dfc8a6fae0aa831a2a170a859f622628480ebcc43b5c5c90b57875c3f0f8a0b6da47bf347c829b68f42175
6
+ metadata.gz: b8217b5a3661ede9aa3b1087f6985d4794db906269b5be5c8e4f5d16227cfd3ad67cdc6e27bb6289194257331cd11a08cd2364b6687cac76b6ffc08aff32c1d9
7
+ data.tar.gz: f75a686db32a71b251362057fa86f9da0dd23cc5c76b28a2100c5b0424f727593fd406cd6ba7e011833c73ed8d39994f7eaa7aa97fe60215fee845da368baefc
@@ -1,3 +1,8 @@
1
+ ## v0.86.21, 1 January 2019
2
+
3
+ - Ruby: Less strict requirement comparison
4
+ - Add TODO to Python pip_compile file updater
5
+
1
6
  ## v0.86.20, 31 December 2018
2
7
 
3
8
  - Update GitLab submodules
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dependabot
4
- VERSION = "0.86.20"
4
+ VERSION = "0.86.21"
5
5
  end
@@ -15,9 +15,9 @@ module Gem
15
15
  # An == check is sufficient unless any requirements use ~>
16
16
  return true unless _tilde_requirements.any?
17
17
 
18
- # If any requirements use ~> we use the stricter `#eql?` that also checks
19
- # that version precision is the same
20
- _tilde_requirements.eql?(other._tilde_requirements)
18
+ # If any requirements use ~> we check that the strings are equal so that
19
+ # version precision is considered
20
+ _tilde_requirements.map(&:to_s) == other._tilde_requirements.map(&:to_s)
21
21
  end
22
22
  # rubocop:enable Style/CaseEquality
23
23
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dependabot-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.86.20
4
+ version: 0.86.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dependabot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-12-31 00:00:00.000000000 Z
11
+ date: 2019-01-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-ecr