-
Notifications
You must be signed in to change notification settings - Fork 20
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
Bucket quota should be treated and stored as BigInts #2279
Conversation
Hello williamlardier,My role is to assist you with the merge of this Available options
Available commands
Status report is not available. |
c625e7d
to
9cd6ef0
Compare
The previous objects will be handled because we always convert incoming data (inDeSerialize and fromObj) to BigInts, which is working well if the value is a string, a number, or any mongodb- specific value. Issue: ARSN-457
Libcrypto was removed, plus other changes, not yet supported by Arsenal. Issue: ARSN-457
9cd6ef0
to
73e728b
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## development/8.1 #2279 +/- ##
===================================================
+ Coverage 66.28% 66.41% +0.12%
===================================================
Files 215 216 +1
Lines 17329 17434 +105
Branches 3528 3556 +28
===================================================
+ Hits 11487 11578 +91
- Misses 5827 5840 +13
- Partials 15 16 +1 ☔ View full report in Codecov by Sentry. |
73e728b
to
4938862
Compare
4938862
to
5185217
Compare
- Long in MongoDB - String when retrieved / serialized - BigInt locally Issue: ARSN-457
c3c3c10
to
a3ccbef
Compare
af69908
to
c89d942
Compare
c89d942
to
3d72875
Compare
3d72875
to
c3d5d2f
Compare
- We were passing a test on serialize() thank to the global toJSON defined in the test, yet during execution time, we would not be able to serialize. We cannot use toJSON globally in this repo, because it would affect all projects importing it, and eventually lead to unexpected side effects. - The manual conversion to string must be carefully done: in nodejs, converting to json a bigint as a subfield of an object would change the base object in the class, and eventually we end up with "strings" instead of bigint, without typescript knowing about it. Issue: ARSN-457
766ddff
to
5382857
Compare
Request integration branchesWaiting for integration branch creation to be requested by the user. To request integration branches, please comment on this pull request with the following command:
Alternatively, the |
/create_integration_branches |
ConflictA conflict has been raised during the creation of I have not created the integration branch. Here are the steps to resolve this conflict: $ git fetch
$ git checkout -B w/8.2/bugfix/ARSN-457 origin/development/8.2
$ git merge origin/bugfix/ARSN-457
$ # <intense conflict resolution>
$ git commit
$ git push -u origin w/8.2/bugfix/ARSN-457 The following options are set: create_integration_branches |
5382857
to
9088efb
Compare
/reset |
Reset completeI have successfully deleted this pull request's integration branches. The following options are set: create_integration_branches |
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
The following options are set: create_integration_branches |
9088efb
to
14b341d
Compare
History mismatchMerge commit #9088efbb6a913d554023582a50c982e6ea835e94 on the integration branch It is likely due to a rebase of the branch Please use the The following options are set: create_integration_branches |
/reset |
Reset completeI have successfully deleted this pull request's integration branches. The following options are set: create_integration_branches |
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
The following options are set: create_integration_branches |
/approve |
In the queueThe changeset has received all authorizations and has been added to the The changeset will be merged in:
The following branches will NOT be impacted:
There is no action required on your side. You will be notified here once IMPORTANT Please do not attempt to modify this pull request.
If you need this pull request to be removed from the queue, please contact a The following options are set: approve, create_integration_branches |
I have successfully merged the changeset of this pull request
The following branches have NOT changed:
Please check the status of the associated issue ARSN-457. Goodbye williamlardier. |
Stored and treated as BigInt in the class. Accepted as string/number/Long (from a serialized object, or from an object), and outputted as a string for storage on the DB