Skip to content

Commit

Permalink
2.0.5.3.beta.1 (#1294)
Browse files Browse the repository at this point in the history
* build: bump net-http dependency in gemspec

* build: move logger dpendency to gemspec

* build: use logger 1.6.2 in gemspec

* build: bump dpl version

* build: remove logger dependency from gemfile
  • Loading branch information
DominikAlberski authored Dec 5, 2024
1 parent c904164 commit 6e80c12
Show file tree
Hide file tree
Showing 13 changed files with 3 additions and 14 deletions.
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ gemspec name: 'dpl'
# gem 'json_pure', '~> 2.6'

# gem 'regstry', path: '../../registry'
gem 'logger', '1.6.0'

gems = Dpl::Support::Gems.new('lib/dpl/providers/**/*.rb')
gems.each do |name, version, opts|
Expand Down
3 changes: 2 additions & 1 deletion dpl.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ Gem::Specification.new do |s|
s.executables = ['dpl']
s.files = Dir['{config/**/*,lib/**/*,[A-Z]*}'].reject { _1.match(/dpl.+\.gem/) }

s.add_runtime_dependency 'net-http', '~> 0.5.0'
s.add_runtime_dependency 'logger', '~> 1.6.2'
s.add_runtime_dependency 'net-http', '~> 0.6.0'
s.add_runtime_dependency 'travis-cl'
s.add_runtime_dependency 'travis-packagecloud-ruby'
s.add_runtime_dependency 'uri', '~> 1.0.2'
Expand Down
1 change: 0 additions & 1 deletion lib/dpl/providers/chef_supermarket.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class ChefSupermarket < Provider
tbd
STR

gem 'logger', '1.6.0'
gem 'date', '~> 3.3.4'
gem 'time', '0.3.0'
gem 'timeout', '0.4.1'
Expand Down
2 changes: 0 additions & 2 deletions lib/dpl/providers/cloud66.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ class Cloud66 < Provider
tbd
STR

gem 'logger', '1.6.0'

env :cloud66

opt '--redeployment_hook URL', 'The redeployment hook URL', required: true, secret: true
Expand Down
1 change: 0 additions & 1 deletion lib/dpl/providers/cloudfiles.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ class Cloudfiles < Provider
tbd
STR

gem 'logger', '1.6.0'
gem 'nokogiri', '~> 1.15'
gem 'fog-core', '~> 2.3', require: 'fog/core'
gem 'fog-rackspace', '~> 0.1.6', git: 'https://github.com/travis-oss/fog-rackspace', require: 'fog/rackspace'
Expand Down
1 change: 0 additions & 1 deletion lib/dpl/providers/engineyard.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ class Engineyard < Provider
tbd
STR

gem 'logger', '1.6.0'
gem 'ey-core', '~> 3.6'

required :api_key, %i[email password]
Expand Down
1 change: 0 additions & 1 deletion lib/dpl/providers/git_push.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class GitPush < Provider
changes produced by the build, and optionally opening a pull request.
STR

gem 'logger', '1.6.0'
gem 'octokit', '~> 7'
gem 'public_suffix', '~> 5'

Expand Down
1 change: 0 additions & 1 deletion lib/dpl/providers/gleis.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ class Gleis < Provider
tbd
STR

gem 'logger', '1.6.0'
gem 'gleis', '~> 0.8.0'

env :gleis
Expand Down
1 change: 0 additions & 1 deletion lib/dpl/providers/pages/api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ class Api < Pages
open_timeout: 180
}.freeze

gem 'logger', '1.6.0'
gem 'octokit', '~> 7'
gem 'timeout', '0.4.1'

Expand Down
1 change: 0 additions & 1 deletion lib/dpl/providers/pages/git.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class Git < Pages
tbd
STR

gem 'logger', '1.6.0'
gem 'octokit', '~> 7'
gem 'public_suffix', '~> 5'

Expand Down
1 change: 0 additions & 1 deletion lib/dpl/providers/puppetforge.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ class Puppetforge < Provider
tbd
STR

gem 'logger', '1.6.0'
gem 'racc', '~> 1.7'
gem 'puppet', '~> 7.25', require: 'puppet/face'
gem 'puppet-blacksmith', '~> 7', require: 'puppet_blacksmith'
Expand Down
1 change: 0 additions & 1 deletion lib/dpl/providers/releases.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ class Releases < Provider
tbd
STR

gem 'logger', '1.6.0'
gem 'octokit', '~> 7'
gem 'mime-types', '~> 3.4.1'
gem 'public_suffix', '~> 5'
Expand Down
2 changes: 1 addition & 1 deletion lib/dpl/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Dpl
VERSION = '2.0.5.2'
VERSION = '2.0.5.3.beta.1'
end

0 comments on commit 6e80c12

Please sign in to comment.