-
Notifications
You must be signed in to change notification settings - Fork 242
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/cldsrv 553 bump deps #5711
base: development/9.0
Are you sure you want to change the base?
Conversation
Hello benzekrimaha,My role is to assist you with the merge of this Available options
Available commands
Status report is not available. |
Incorrect fix versionThe
Considering where you are trying to merge, I ignored possible hotfix versions and I expected to find:
Please check the |
dcc7c34
to
0eadb81
Compare
Incorrect fix versionThe
Considering where you are trying to merge, I ignored possible hotfix versions and I expected to find:
Please check the |
Dockerfile
Outdated
@@ -1,4 +1,4 @@ | |||
ARG NODE_VERSION=16.20.2-bookworm-slim | |||
ARG NODE_VERSION=22-bookworm-slim |
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.
should stick to a specific node version, to ensure reproductible & repeatable builds
RUN npm install -g node-gyp | ||
COPY package.json yarn.lock /usr/src/app/ | ||
RUN npm install [email protected] -g |
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.
best to install all "global" packages in a single step,
before package.json copy (to avoid invalidatoin),
and specifying the node-gyp version (just like we do for typescript)
RUN npm install -g node-gyp | |
COPY package.json yarn.lock /usr/src/app/ | |
RUN npm install [email protected] -g | |
RUN npm install -g \ | |
[email protected] \ | |
[email protected] | |
COPY package.json yarn.lock /usr/src/app/ |
@@ -154,13 +154,6 @@ function prepareRequestContexts(apiMethod, request, sourceBucket, | |||
generateRequestContext('objectPutTaggingVersion'); | |||
requestContexts.push(putObjectVersionRequestContext); | |||
} |
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.
why are we changing permissions?
if it was (already) a bug, it shoudl be fixed on 8.8 as well instead here...
15b93ac
to
57325de
Compare
57325de
to
2639bf6
Compare
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
|
8bb9b0a
to
b5e6e01
Compare
@@ -342,39 +342,6 @@ jobs: | |||
source: /tmp/artifacts | |||
if: always() | |||
|
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.
should be skipped instead of removed:
utapi-v2-tests: | |
if: false |
please rebase, there are conflicts. |
@@ -1,4 +0,0 @@ | |||
#!/usr/bin/env node |
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.
should keep this file, and just add early return (if needed) in listMetrics()
#!/usr/bin/env node | ||
'use strict'; // eslint-disable-line strict | ||
|
||
require('../lib/utapi/utilities.js').listMetrics('buckets'); |
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.
should keep this file, and just add early return (if needed) in listMetrics()
699b1d4
to
bc7b54f
Compare
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
|
Codecov ReportAttention: Patch coverage is
✅ All tests successful. No failed tests found.
Additional details and impacted files
... and 1 file with indirect coverage changes @@ Coverage Diff @@
## development/9.0 #5711 +/- ##
===================================================
- Coverage 60.56% 60.30% -0.26%
===================================================
Files 185 183 -2
Lines 11619 11602 -17
===================================================
- Hits 7037 6997 -40
- Misses 4582 4605 +23
Flags with carried forward coverage won't be shown. Click here to find out more. |
Issue: CLDSRV-553