-
Notifications
You must be signed in to change notification settings - Fork 2
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
Chartkick 5.1.0 #13
base: main
Are you sure you want to change the base?
Chartkick 5.1.0 #13
Conversation
elalemanyo
commented
Oct 8, 2024
•
edited
Loading
edited
- Update Chartkick
- Change branch to main
- Change ruby versions
- Replace webpack with esbuild
…d chartkick dependencies
…xpand Ruby version matrix
…oved performance and security
…-specific ffi entries
…est body and reduce Ruby version matrix
…ove CI skip condition
Thanks for taking care 👏 |
lib/iruby/chartkick/version.rb
Outdated
@@ -1,6 +1,6 @@ | |||
# frozen_string_literal: true | |||
module IRuby | |||
module Chartkick | |||
VERSION = "0.3.1" | |||
VERSION = "0.5.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason to skip v0.4.0
? Would be more logical to jump to this, wouldn't it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The idea was to leave it similar to the chartkick version 😅
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for pointing out 👍 I somehow disagree here, because I think keeping a coherent own version history makes more sense to avoid confusion - but - don't worry - I can live with that decision 😉 🫶
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for taking care! Looks good to me 👍
lib/iruby/chartkick/version.rb
Outdated
@@ -1,6 +1,6 @@ | |||
# frozen_string_literal: true | |||
module IRuby | |||
module Chartkick | |||
VERSION = "0.3.1" | |||
VERSION = "0.5.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for pointing out 👍 I somehow disagree here, because I think keeping a coherent own version history makes more sense to avoid confusion - but - don't worry - I can live with that decision 😉 🫶
@@ -1,14 +1,13 @@ | |||
{ | |||
"name": "iruby-chartkick", | |||
"scripts": { | |||
"build": "webpack ./vendor/assets/javascripts/main.js --output-path='./vendor/assets/javascripts/' --output-filename=bundle.js --mode=production" | |||
"build": "esbuild ./vendor/assets/javascripts/main.js --bundle --outfile=./vendor/assets/javascripts/bundle.js --minify" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍