Quantcast
Channel: Active questions tagged ruby - Stack Overflow
Viewing all articles
Browse latest Browse all 4616

Strange bundle update issue: disappearing net-pop (0.1.2) dependency

$
0
0

I have a strange bundle update issue with the dependency of net-pop.

I manually updated all gems via bundle update GEM. Everything works so far. My CI builds and tests jobs are green.

But:
When I now run bundle update, my Gemfile.lock will be changed and the dependency ‘net-protocol’ of ‘net-pop’ gets deleted. Nothing else get changed.

Gemfile.lock

Of course, my CI build job will fail with the error message:

47.64 Downloading net-pop-0.1.2 revealed dependencies not in the API or the lockfile47.64 (net-protocol (>= 0)).47.64 Running `bundle update net-pop` should fix the problem.

Running bundle update net-pop does not help.

The gemspec file of net-pop is correct https://github.com/ruby/net-pop/blob/master/net-pop.gemspec#L31

Currently, the only solution is to manually modify the Gemfile.lock and to re-add the missing line.

I do not understand what’s going on.

Gemfile

Versions:

  • ruby: 3.3.3
  • rails 7.0.8.4
  • bundler 2.5.11
  • rvm 1.29.12-next
  • OS Ubuntu 20.04

edit

not so 'minimal' Gemfile

# frozen_string_literal: truesource 'https://rubygems.org'# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'gem 'rails', '~> 7.0.4'# used server -> use it for all environmentsgem 'bcrypt-ruby'gem 'jbuilder'# Gems used only for assets and not required# in production environments by default.gem 'net-imap', require: falsegem 'net-pop', require: falsegem 'net-smtp', require: falsegem 'sprockets', '~> 4.0'gem 'sprockets-rails'gem 'rexml'gem 'webrick', '~> 1.7'gem 'csv'gem 'mutex_m'gem 'mail'gem 'parallel'

bundle install produces:

GEM  remote: https://rubygems.org/  specs:    actioncable (7.0.8.4)      actionpack (= 7.0.8.4)      activesupport (= 7.0.8.4)      nio4r (~> 2.0)      websocket-driver (>= 0.6.1)    actionmailbox (7.0.8.4)      actionpack (= 7.0.8.4)      activejob (= 7.0.8.4)      activerecord (= 7.0.8.4)      activestorage (= 7.0.8.4)      activesupport (= 7.0.8.4)      mail (>= 2.7.1)      net-imap      net-pop      net-smtp    actionmailer (7.0.8.4)      actionpack (= 7.0.8.4)      actionview (= 7.0.8.4)      activejob (= 7.0.8.4)      activesupport (= 7.0.8.4)      mail (~> 2.5, >= 2.5.4)      net-imap      net-pop      net-smtp      rails-dom-testing (~> 2.0)    actionpack (7.0.8.4)      actionview (= 7.0.8.4)      activesupport (= 7.0.8.4)      rack (~> 2.0, >= 2.2.4)      rack-test (>= 0.6.3)      rails-dom-testing (~> 2.0)      rails-html-sanitizer (~> 1.0, >= 1.2.0)    actiontext (7.0.8.4)      actionpack (= 7.0.8.4)      activerecord (= 7.0.8.4)      activestorage (= 7.0.8.4)      activesupport (= 7.0.8.4)      globalid (>= 0.6.0)      nokogiri (>= 1.8.5)    actionview (7.0.8.4)      activesupport (= 7.0.8.4)      builder (~> 3.1)      erubi (~> 1.4)      rails-dom-testing (~> 2.0)      rails-html-sanitizer (~> 1.1, >= 1.2.0)    activejob (7.0.8.4)      activesupport (= 7.0.8.4)      globalid (>= 0.3.6)    activemodel (7.0.8.4)      activesupport (= 7.0.8.4)    activerecord (7.0.8.4)      activemodel (= 7.0.8.4)      activesupport (= 7.0.8.4)    activestorage (7.0.8.4)      actionpack (= 7.0.8.4)      activejob (= 7.0.8.4)      activerecord (= 7.0.8.4)      activesupport (= 7.0.8.4)      marcel (~> 1.0)      mini_mime (>= 1.1.0)    activesupport (7.0.8.4)      concurrent-ruby (~> 1.0, >= 1.0.2)      i18n (>= 1.6, < 2)      minitest (>= 5.1)      tzinfo (~> 2.0)    bcrypt (3.1.20)    bcrypt-ruby (3.1.5)      bcrypt (>= 3.1.3)    builder (3.3.0)    concurrent-ruby (1.3.3)    crass (1.0.6)    csv (3.3.0)    date (3.3.4)    erubi (1.12.0)    globalid (1.2.1)      activesupport (>= 6.1)    i18n (1.14.5)      concurrent-ruby (~> 1.0)    jbuilder (2.12.0)      actionview (>= 5.0.0)      activesupport (>= 5.0.0)    loofah (2.22.0)      crass (~> 1.0.2)      nokogiri (>= 1.12.0)    mail (2.8.1)      mini_mime (>= 0.1.1)      net-imap      net-pop      net-smtp    marcel (1.0.4)    method_source (1.1.0)    mini_mime (1.1.5)    mini_portile2 (2.8.7)    minitest (5.23.1)    mutex_m (0.2.0)    net-imap (0.4.12)      date      net-protocol    net-pop (0.1.2)      net-protocol    net-protocol (0.2.2)      timeout    net-smtp (0.5.0)      net-protocol    nio4r (2.7.3)    nokogiri (1.16.5)      mini_portile2 (~> 2.8.2)      racc (~> 1.4)    parallel (1.25.1)    racc (1.8.0)    rack (2.2.9)    rack-test (2.1.0)      rack (>= 1.3)    rails (7.0.8.4)      actioncable (= 7.0.8.4)      actionmailbox (= 7.0.8.4)      actionmailer (= 7.0.8.4)      actionpack (= 7.0.8.4)      actiontext (= 7.0.8.4)      actionview (= 7.0.8.4)      activejob (= 7.0.8.4)      activemodel (= 7.0.8.4)      activerecord (= 7.0.8.4)      activestorage (= 7.0.8.4)      activesupport (= 7.0.8.4)      bundler (>= 1.15.0)      railties (= 7.0.8.4)    rails-dom-testing (2.2.0)      activesupport (>= 5.0.0)      minitest      nokogiri (>= 1.6)    rails-html-sanitizer (1.6.0)      loofah (~> 2.21)      nokogiri (~> 1.14)    railties (7.0.8.4)      actionpack (= 7.0.8.4)      activesupport (= 7.0.8.4)      method_source      rake (>= 12.2)      thor (~> 1.0)      zeitwerk (~> 2.5)    rake (13.2.1)    rexml (3.3.0)      strscan    sprockets (4.2.1)      concurrent-ruby (~> 1.0)      rack (>= 2.2.4, < 4)    sprockets-rails (3.5.1)      actionpack (>= 6.1)      activesupport (>= 6.1)      sprockets (>= 3.0.0)    strscan (3.1.0)    thor (1.3.1)    timeout (0.4.1)    tzinfo (2.0.6)      concurrent-ruby (~> 1.0)    webrick (1.8.1)    websocket-driver (0.7.6)      websocket-extensions (>= 0.1.0)    websocket-extensions (0.1.5)    zeitwerk (2.6.15)PLATFORMS  rubyDEPENDENCIES  bcrypt-ruby  csv  jbuilder  mail  mutex_m  net-imap  net-pop  net-smtp  parallel  rails (~> 7.0.4)  rexml  sprockets (~> 4.0)  sprockets-rails  webrick (~> 1.7)BUNDLED WITH   2.5.11

and bundle update afterwards deletes the net-protocol line.


Viewing all articles
Browse latest Browse all 4616

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>