Skip to content

Commit 32bec26

Browse files
author
gdgate
authored
Merge pull request #1649 from phong-nguyen-duy/master-release
DC-1196: Bump version to 2.1.10 Reviewed-by: https://github.com/danh-ung
2 parents 6b20bed + 65d4885 commit 32bec26

File tree

301 files changed

+991305
-55623
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

301 files changed

+991305
-55623
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,9 @@ stages:
1515
git:
1616
depth: false # this is needed for pronto
1717

18-
matrix:
18+
jobs:
1919
allow_failures:
2020
- rvm: jruby-9.1.14
21-
22-
jobs:
2321
include:
2422
# BEFORE MERGE
2523
- name: pronto code review

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# GoodData Ruby SDK Changelog
2+
## 2.1.10
3+
- BUGFIX: TMA-1653 fix performance issue in functions project.users and domain.users
4+
- BUGFIX: TMA-1643 Don't convert null value to empty string
5+
- BUGFIX: TMA-1620 Users Brick, sometimes update users are conflicted
6+
- BUGFIX: TMA-1642 parse csv from input source with case insensitive
7+
- BUGFIX: TMA-1528: remove CollectSegments and CollectDataProduct for add and remove in users brick
8+
- FEATURE: TMA-1629 Add parameter "set_master_project" to support reset latest master project
9+
- FEATURE: TMA-1630 Support Snowflake, BigQuery as input source
210
## 2.1.9
311
- FEATURE: TMA-1076 support new version api 2
412
- BUGFIX: TMA-1637 handle input_source of dynamic params

SDK_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.9
1+
2.1.10

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.7.16
1+
3.7.17

lib/gooddata/models/domain.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ def users(domain, id = :all, opts = {})
235235
all_users << user if user
236236
end
237237
break if tmp['accountSettings']['items'].count < page_limit
238+
238239
offset += page_limit
239240
end
240241

lib/gooddata/models/project.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1557,12 +1557,13 @@ def users(opts = {})
15571557
if opts[:all]
15581558
all_users << user
15591559
elsif opts[:disabled]
1560-
all_users << user if user && user.disabled?
1560+
all_users << user if user&.disabled?
15611561
else
1562-
all_users << user if user && user.enabled?
1562+
all_users << user if user&.enabled?
15631563
end
15641564
end
15651565
break if tmp['users'].count < limit
1566+
15661567
offset += limit
15671568
end
15681569

spec/integration/models/project_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
require 'gooddata'
88

9-
describe GoodData::Project, :vcr, :vcr_all_cassette => 'model', :constraint => 'slow' do
9+
describe "GoodData Model Project", :vcr, :constraint => 'slow' do
1010
before(:all) do
1111
@client = ConnectionHelper.create_default_connection
1212
@project = ProjectHelper.get_default_project(:client => @client)

spec/integration/vcr_cassettes/E2E_the_whole_life-cycle/1_-_Initial_Release/behaves_like_a_release_brick/does_not_transfer_ADD_components.yml

Lines changed: 174 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spec/integration/vcr_cassettes/E2E_the_whole_life-cycle/1_-_Initial_Release/behaves_like_a_synchronization_brick/does_not_migrate_variables.yml

Lines changed: 117 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)