dependabot-core 0.90.0 → 0.90.1

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: 16f8747542b4fc3313c1000f962e502ef631ed367803b8230df2f2398d06d443
4
- data.tar.gz: 4b2813423eb666b5bf3a2f42671514b88e8035baaa6b8d7ef1025e58b2b380a3
3
+ metadata.gz: 2b2d8e1bccc46cc8076887cd61cdb1e677554f01b5e445f9f2bf7dba401a62fe
4
+ data.tar.gz: 9603dd20e7ca794b4e5435d31efab5ca8d337ceef1409137c897cc25ba3b2be8
5
5
  SHA512:
6
- metadata.gz: 4bf9f62b5f78ac6781a2d9cd5533eed4ac01921d42a4a7e27c35d47763f38505af0d58ef33644ab90609528d56a035635f8fa8e7cfb30adf5c0b1843291f60c4
7
- data.tar.gz: 7ff0f2b12276cf321c23f9a83417ae4d53bd37266ae291d44c3889737ac0fb673f28b75a189bb16a168789e5708011a0bb039b92cb6b9289b80dddaed268cfcc
6
+ metadata.gz: d211c0292374b3f8acdde0ba67c5ad8cfeeb62da982ce03866ac8c518f43c49ec6562a26d4dd0670ca5d58831acb182a7742490bca6536066292a41dd206f3d2
7
+ data.tar.gz: 680cd9ee658223736e324dbd6a8d3b09de26e46f3b3f1378571fc21c235151b3f6390fbc64025ce5701dfb717cbe4e2ed2ee8dcb82152205d560f7b654fb9a58
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## v0.90.1, 14 January 2019
2
+
3
+ - NPM: Handle package name with invalid characters
4
+
1
5
  ## v0.90.0, 14 January 2019
2
6
 
3
7
  - Python: Bump poetry from 0.12.10 to 0.12.11 in /python/helpers
@@ -184,8 +184,10 @@ module Dependabot
184
184
  raise Dependabot::InconsistentRegistryResponse, error.message
185
185
  end
186
186
 
187
- # When the package.json doesn't include a name or version
188
- if error.message.match?(INVALID_PACKAGE)
187
+ # When the package.json doesn't include a name or version, or name
188
+ # has non url-friendly characters
189
+ if error.message.match?(INVALID_PACKAGE) ||
190
+ error.message.start_with?("Invalid package name")
189
191
  raise_resolvability_error(error, lockfile)
190
192
  end
191
193
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dependabot
4
- VERSION = "0.90.0"
4
+ VERSION = "0.90.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dependabot-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.90.0
4
+ version: 0.90.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dependabot