-
Notifications
You must be signed in to change notification settings - Fork 11
fix: default update thread for actions is EDT (#218) #219
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
Conversation
Signed-off-by: Andre Dietisheim <[email protected]>
|
@@ -14,7 +14,7 @@ jobs: | |||
runs-on: ubuntu-latest | |||
strategy: | |||
matrix: | |||
IJ: [IC-2021.1, IC-2021.2, IC-2021.3, IC-2022.1, IC-2022.2, IC-2022.3, IC-2023.1, IC-2023.2] | |||
IJ: [IC-2022.3, IC-2023.1, IC-2023.2, IC-2024.1] |
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.
means all dependent extensions using next version need to validate this range version too ?
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'd think so, yes. Agree?
There's not much choice: if the override is in commons, it needs to build against 2022.3+.
Alternatively we need to change all actions (or the super-classes they may have) in all plugins.
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.
here are the min. supported versions that we have currently:
- intellij-kubernetes is at
IC-2022.1
(https://github.com/redhat-developer/intellij-kubernetes/blob/1f4637041eb0a0b36fb86a6589f1370f9406d702/.github/workflows/IJ.yml#L17) - intellij-openshift-connector is at
IC-2022.1
(https://github.com/redhat-developer/intellij-openshift-connector/blob/30e4bc351d8df6a8058cf0d443706ab48cd2fed5/.github/workflows/validate_IJ_versions.yml#L12) - intellij-tekton is at
IC-2022.2
(https://github.com/redhat-developer/intellij-tekton/blob/84f3d264c06b98290bcf88626d86fa8f5a085dd7/.github/workflows/IJ.yml#L17) - intellij-knative is at
IC-2022.1
(https://github.com/redhat-developer/intellij-knative/blob/2e3c49bd684f27383a049c740e96f5e28a4f8ea4/.github/workflows/IJ.yml#L17)
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.
agree to move up to at least 22.3 for all downstream extensions. not a big step.
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.
LGTM
fixes #218