Skip to content

Commit

Permalink
Merge pull request #1252 from uport-project/next
Browse files Browse the repository at this point in the history
chore: new patch release
  • Loading branch information
mirceanis authored Sep 21, 2023
2 parents 4164dfb + fcd2699 commit eb82bdc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
shard: [1, 2, 3, 4, 5]
services:
postgres:
image: postgres:15.4
image: postgres:16.0
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: test123
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-test-publish-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
shard: [1, 2, 3, 4, 5]
services:
postgres:
image: postgres:15.4
image: postgres:16.0
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: test123
Expand Down
4 changes: 2 additions & 2 deletions packages/data-store/src/data-store-orm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -411,8 +411,8 @@ function decorateQB(
tableName: string,
input: FindArgs<any>,
): SelectQueryBuilder<any> {
if (input?.skip) qb = qb.skip(input.skip)
if (input?.take) qb = qb.take(input.take)
if (input?.skip) qb = qb.offset(input.skip)
if (input?.take) qb = qb.limit(input.take)

if (input?.order) {
for (const item of input.order) {
Expand Down

0 comments on commit eb82bdc

Please sign in to comment.