[release-4.12] OCPBUGS-88371 OCPBUGS-88403 OCPBUGS-88443 OCPBUGS-88416 OCPBUGS-88406 OCPBUGS-88398: CVE-2026-44495#16623
Conversation
|
@rhdmalone: This pull request references Jira Issue OCPBUGS-88371, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Repository: openshift/coderabbit/.coderabbit.yaml Review profile: CHILL Plan: Enterprise Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: rhdmalone The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
@rhdmalone: The following tests failed, say
Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
|
/retitle "[release-4.12] OCPBUGS-88371 OCPBUGS-88403 OCPBUGS-88443 OCPBUGS-88416: CVE-2026-44495" |
|
@rhdmalone: This pull request references Jira Issue OCPBUGS-88371, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. This pull request references Jira Issue OCPBUGS-88403, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. This pull request references Jira Issue OCPBUGS-88443, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. This pull request references Jira Issue OCPBUGS-88416, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
/retitle [release-4.12] OCPBUGS-88371 OCPBUGS-88403 OCPBUGS-88443 OCPBUGS-88416 OCPBUGS-88406 OCPBUGS-88398: CVE-2026-44495 |
|
@rhdmalone: This pull request references Jira Issue OCPBUGS-88371, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. This pull request references Jira Issue OCPBUGS-88403, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. This pull request references Jira Issue OCPBUGS-88443, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. This pull request references Jira Issue OCPBUGS-88416, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. This pull request references Jira Issue OCPBUGS-88406, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. This pull request references Jira Issue OCPBUGS-88398, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
axios 0.31.1 ships .d.ts that require TypeScript 4.1+, which breaks the release-4.12 webpack build (TS 3.8.3).
|
@rhdmalone: This pull request references Jira Issue OCPBUGS-88371, which is invalid:
Comment This pull request references Jira Issue OCPBUGS-88403, which is invalid:
Comment This pull request references Jira Issue OCPBUGS-88443, which is invalid:
Comment This pull request references Jira Issue OCPBUGS-88416, which is invalid:
Comment This pull request references Jira Issue OCPBUGS-88406, which is invalid:
Comment This pull request references Jira Issue OCPBUGS-88398, which is invalid:
Comment DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
[release-4.12] OCPBUGS-88371: CVE-2026-44495
https://redhat.atlassian.net/browse/OCPBUGS-88371
typescript patch required as axios version has been updated - without this patch, CI test fail:
yarn patch axios@npm:0.31.1
get the directory that is listed e.g./private/var/folders/xh/64_dr2_j14s6q3vdq008bj9r0000gn/T/xfs-8bb6f632/user
in that folder, edit the file index.d.ts
replace
type MethodsHeaders = {
[Key in Method as Lowercase]: AxiosHeaders;
};
with
type LowercaseMethod =
| 'get' | 'delete' | 'head' | 'options' | 'post'
| 'put' | 'patch' | 'purge' | 'link' | 'unlink';
type MethodsHeaders = {
[Key in LowercaseMethod]?: AxiosHeaders;
};
then:
yarn patch-commit -s /private/var/folders/xh/64_dr2_j14s6q3vdq008bj9r0000gn/T/xfs-8bb6f632/user
yarn install
yarn build
git add .yarn/patches/axios-npm-0.31.1-0574a0de7d.patch
git add package.json
git add yarn.lock
git commit -m "OCPBUGS-88371: Patch axios 0.31.1 types for TS 3.8\naxios 0.31.1 ships .d.ts that require TypeScript 4.1+, which\nbreaks the release-4.12 webpack build (TS 3.8.3)."
git push