dependabot-common 0.95.15 → 0.95.16

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: f260e3b76766baee9da9fa7972223b6f76acb195694963c30d3aec68364bb8bc
4
- data.tar.gz: 44fe0540bb6502951b659a6c6179a008c148171ff2517c99a3a92cdbe5656e43
3
+ metadata.gz: 6537d839bdc5d971dcbe4095c10b2a989cd768d1fe5b3df98ededf0ec16d3bb5
4
+ data.tar.gz: a414ff83bad1d3979e673f7114464dfb3bdcbe06378275f6490d32fa86fe4691
5
5
  SHA512:
6
- metadata.gz: 6a12978456fac8d27d68e79e23bd459b27bf35b7b4617740018e7af8dfe4d32ace2e98466a9c6456aaa71ec1e5f704258c27988b68b1979ec5ead17c8d5baf88
7
- data.tar.gz: 2197585794309ca32fa6351291ce207c9015361485e78e6261a656cef3a817929dc110a32d2d09bbcdec2b50a8e7cf78f60c8dafdce02bd52c10ddfd1fa96ea4
6
+ metadata.gz: a7ae74c774746510b066445b6951668d7604ef8fde8db237a1d8dc0fadfcd4e7375f63051b5542fe4b9aec2438f06fac866e203d2ff16fa267e17260f41bd6c7
7
+ data.tar.gz: 719541b6d33dcc9ecdd499330629b94d151b23c2e4a262c598d3921a05f62e998f89fda6624b2a89635215f53f48c8ec58280a14d8112e9a365ebc652c053289
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "shellwords"
4
+
5
+ # Valid commands are: `get`, `store`, `erase`. We only want to let `get`
6
+ # through, as the others mutate the credential store.
7
+ if ARGV.include?("get")
8
+ args = ARGV.map { |arg| Shellwords.escape(arg) }.join(" ")
9
+ exec "git credential-store #{args}"
10
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dependabot
4
- VERSION = "0.95.15"
4
+ VERSION = "0.95.16"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dependabot-common
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.95.15
4
+ version: 0.95.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dependabot
@@ -295,6 +295,7 @@ executables: []
295
295
  extensions: []
296
296
  extra_rdoc_files: []
297
297
  files:
298
+ - bin/git-credential-store-immutable
298
299
  - lib/dependabot.rb
299
300
  - lib/dependabot/clients/bitbucket.rb
300
301
  - lib/dependabot/clients/github_with_retries.rb