Skip to content

Commit 2907b19

Browse files
DC-1196: Bump sdk version to 2.1.10 and bricks version to 3.7.17
1 parent 6b20bed commit 2907b19

5 files changed

Lines changed: 14 additions & 4 deletions

File tree

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

0 commit comments

Comments
 (0)