Skip to content
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

fix(charts): ensure that line charts are well displayed in projects having a groupdate dependency version 5.x #354

Merged
merged 3 commits into from
Apr 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Change Log

## [Unreleased]
### Fixed
- Charts - Ensure that line charts are well displayed in projects having a `groupdate` dependency version 5.X.

## RELEASE 5.1.0 - 2020-04-17
### Added
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ gem 'rails', '4.2.7.1'
gem 'jsonapi-serializers', '1.0.1'
gem 'rack-cors'
gem 'arel-helpers', '2.10.0'
gem 'groupdate'
gem 'groupdate', '2.5.2'
gem 'useragent'
gem 'jwt'
gem 'bcrypt'
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ PATH
arel-helpers
base32
bcrypt
groupdate
groupdate (= 2.5.2)
httparty
ipaddress
jsonapi-serializers (>= 0.14.0)
Expand Down Expand Up @@ -159,7 +159,7 @@ DEPENDENCIES
bcrypt
byebug
forest_liana!
groupdate
groupdate (= 2.5.2)
httparty (= 0.13.7)
ipaddress (= 0.8.3)
jsonapi-serializers (= 1.0.1)
Expand Down
2 changes: 1 addition & 1 deletion forest_liana.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency "jwt"
s.add_runtime_dependency "rack-cors"
s.add_runtime_dependency "arel-helpers"
s.add_runtime_dependency "groupdate"
s.add_runtime_dependency "groupdate", "2.5.2"
s.add_runtime_dependency "useragent"
s.add_runtime_dependency "bcrypt"
s.add_runtime_dependency "rotp"
Expand Down