-
Notifications
You must be signed in to change notification settings - Fork 417
ruby3.2-activemodel/7.2.2 package update #32532
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
octo-sts
bot
commented
Oct 31, 2024
Signed-off-by: wolfi-bot <[email protected]>
Package ruby3.2-activemodel: Click to expand/collapsePackage ruby3.2-activemodel:
(
"""
# Generated by melange
pkgname = ruby3.2-activemodel
- pkgver = 7.2.1.2-r1
+ pkgver = 7.2.2-r0
arch = x86_64
- size = 387883
+ size = 388634
origin = ruby3.2-activemodel
pkgdesc = A toolkit for building modeling frameworks like Active Record. Rich support for attributes, callbacks, validations, serialization, internationalization, and testing.
url =
- commit = 0bd7a88bf4b1970385c3f25cd0df60385ba29c2c
- builddate = 1729889163
+ commit = 98a9cf805d0e26affc258e54203a50e61fdbc5d2
+ builddate = 1730343047
license = MIT
depend = ruby-3.2
depend = ruby3.2-activesupport
- datahash = 15ad8b1fe500d4b9abb9a7a7bc6a11f05c0d485cdabb7ac053d068ce01460cb8
+ datahash = 0330bce68c42df7acf208e8844f3e7eedfcd90e27272b152693aa2bb32a11b7f
"""
)
Added: /usr/lib/ruby/gems/3.2.0/gems/activemodel-7.2.2/CHANGELOG.md |
Signed-off-by: Joshua Powers <[email protected]>
|
Gen AI suggestions to solve the build error: Based on the error logs, it looks like there's a version mismatch between activemodel and its dependency activesupport. Here's how to fix it:
The key is to maintain version consistency between related Ruby gems. Since this is a Ruby on Rails component, keeping versions aligned is crucial for proper functionality. Update the package versions accordingly in your melange YAML file and rebuild the package. |
|
This is dependent on a new version of active support here: #32537
|
|
Gen AI suggestions to solve the build error: Based on the error output, it looks like there's a version mismatch between activemodel and its dependency activesupport. The key error is: To fix this, you need to:
The quickest fix would be to modify your melange YAML to use version 7.2.1.2 for activemodel: version: 7.2.1.2 # Change this from 7.2.2 to 7.2.1.2Alternatively, if you need version 7.2.2, you'll need to:
The error occurs because Ruby gems enforce strict version matching for dependencies, and activemodel 7.2.2 specifically requires activesupport 7.2.2. |
|
superseded by #33615 |