Skip to content
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# GoodData Ruby SDK Changelog
## 2.1.12
- FEATURE: MSF-17621 Apply patched version for activesupport to fix vulnerable issue
- CONFIG: SETI-4379 Add gdc-fossa configuration for gooddata-ruby
- CONFIG: MSF-17345 Set umask 0002 for lcm brick
- BUGFIX: TMA-1015 check case sensitivity for group name
- BUGFIX: MSF-17219 Fixed incorrect client used in domain.users
- BUGFIX: TMA-1022 Add more logs for case roll out without LDM change in master
- FEATURE: TMA-1640 Add alert for CPU limit hit

## 2.1.11
- FEATURE: TMA-1647 Set VCR version to 5.0.0 due to incompatible license of the latest version

Expand Down
2 changes: 1 addition & 1 deletion SDK_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.11
2.1.12
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.7.19
3.7.20
4 changes: 2 additions & 2 deletions gooddata.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ Gem::Specification.new do |s|
s.add_development_dependency 'sqlite3' if RUBY_PLATFORM != 'java'

if RUBY_VERSION >= '2.5'
s.add_dependency 'activesupport', '> 4.2.9', '< 6.1'
s.add_dependency 'activesupport', '>= 6.0.3.1', '< 6.1'
else
s.add_dependency 'activesupport', '> 4.2.9', '< 6.0'
s.add_dependency 'activesupport', '>= 5.2.4.3', '< 6.0'
end

s.add_dependency 'aws-sdk-s3', '~> 1.16'
Expand Down