-
Notifications
You must be signed in to change notification settings - Fork 19
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
Improvement/arsn 423 bump dependencies #2266
base: development/8.2
Are you sure you want to change the base?
Improvement/arsn 423 bump dependencies #2266
Conversation
Hello benzekrimaha,My role is to assist you with the merge of this Available options
Available commands
Status report is not available. |
ConflictThere is a conflict between your branch Please resolve the conflict on the feature branch ( git fetch && \
git checkout origin/improvement/ARSN-423-bump-dependencies && \
git merge origin/development/8.2 Resolve merge conflicts and commit git push origin HEAD:improvement/ARSN-423-bump-dependencies |
57632be
to
7cfe8b2
Compare
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## development/8.2 #2266 +/- ##
===================================================
+ Coverage 66.27% 66.42% +0.14%
===================================================
Files 215 215
Lines 17330 17345 +15
Branches 3553 3588 +35
===================================================
+ Hits 11486 11521 +35
+ Misses 5829 5818 -11
+ Partials 15 6 -9 ☔ View full report in Codecov by Sentry. |
75aab28
to
751140a
Compare
@@ -279,9 +277,9 @@ export function convertConditionOperator(operator: string): boolean { | |||
} else { | |||
return policyValRegex(key); | |||
} | |||
return true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should return undefined here, because if we reach this stage, it means the "key" was an array and a prefix that is unknown...
07d79a7
to
cb09de6
Compare
50b1389
to
c175969
Compare
b67e160
to
9cc8a28
Compare
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
|
/approve |
/wait |
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
The following options are set: approve |
19e6264
to
9eafa33
Compare
Issue: ARSN-423
In this commit the code has been updated to match the new uuid require based on the documentation here : https://www.npmjs.com/package/uuid timestamp format has been updated as well from new Timestamp(1, 1651144629) to new Timestamp({ t: 1651144629 , i: 1 }), the remaining changes are lint fixups ( please note that the indentation has been fixed as well automatically using lint --fix) Issue: ARSN-423
In this commit we fix the tests that were failing after the dependencies bumps. Issue: ARSN-423
Issue: ARSN-423
09dfc1b
to
15c5ef2
Compare
e4931a8
to
7e142a1
Compare
{ error: err }); | ||
return done(err); | ||
} | ||
useUnifiedTopology: true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This shouldn't be needed, I guess this one is deprecated and at least enabled by default, can we check?
`<Code>${error.message}</Code>`, | ||
`<Message>${error.description}</Message>`, | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this was changed already in 8.1, you can rebase your branch
@@ -415,7 +415,7 @@ class SIOStreamSocket { | |||
decodedObj = {}; | |||
// user objects are simple flat objects and we want to | |||
// copy all their properties | |||
// eslint-disable-next-line | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -341,7 +341,7 @@ class SIOStreamSocket { | |||
encodedObj = {}; | |||
// user objects are simple flat objects and we want to | |||
// copy all their properties | |||
// eslint-disable-next-line | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const ssoRC = new RequestContext(...ssoParams); | ||
assert.strictEqual(ssoRC.getResource(), 'arn:scality:sso:::general-resource/specific-resource'); | ||
}); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
}); | |
}); | |
Issue : ARSN-423