-
Notifications
You must be signed in to change notification settings - Fork 90
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
Bump the patternfly group with 6 updates #1840
Conversation
64f664e
to
f596691
Compare
This feels like a PF regression -- there shouldn't be a reason for the minus buttons to be disabled? |
@dependabot recreate |
f596691
to
e381129
Compare
e381129
to
ba75764
Compare
ba75764
to
76415ba
Compare
It's not a regression, PF's numberinput has become stricter and no longer accepts a string as a valid input for numberinput. Our state was messed up anyway as clicking the plus icon made the state a number and manually entering a string. |
Bumps the patternfly group with 6 updates: | Package | From | To | | --- | --- | --- | | [@patternfly/patternfly](https://github.com/patternfly/patternfly) | `5.3.1` | `5.4.0` | | [@patternfly/react-core](https://github.com/patternfly/patternfly-react) | `5.3.4` | `5.4.0` | | [@patternfly/react-icons](https://github.com/patternfly/patternfly-react) | `5.3.2` | `5.4.0` | | @patternfly/react-styles | `5.3.1` | `5.4.0` | | [@patternfly/react-table](https://github.com/patternfly/patternfly-react) | `5.3.4` | `5.4.0` | | [@patternfly/react-tokens](https://github.com/patternfly/patternfly-react) | `5.3.1` | `5.4.0` | Updates `@patternfly/patternfly` from 5.3.1 to 5.4.0 - [Release notes](https://github.com/patternfly/patternfly/releases) - [Changelog](https://github.com/patternfly/patternfly/blob/main/release.config.js) - [Commits](patternfly/patternfly@patch-v5.3.1...v5.4.0) Updates `@patternfly/react-core` from 5.3.4 to 5.4.0 - [Release notes](https://github.com/patternfly/patternfly-react/releases) - [Commits](https://github.com/patternfly/patternfly-react/compare/@patternfly/[email protected]...@patternfly/[email protected]) Updates `@patternfly/react-icons` from 5.3.2 to 5.4.0 - [Release notes](https://github.com/patternfly/patternfly-react/releases) - [Commits](https://github.com/patternfly/patternfly-react/compare/@patternfly/[email protected]...@patternfly/[email protected]) Updates `@patternfly/react-styles` from 5.3.1 to 5.4.0 Updates `@patternfly/react-table` from 5.3.4 to 5.4.0 - [Release notes](https://github.com/patternfly/patternfly-react/releases) - [Commits](https://github.com/patternfly/patternfly-react/compare/@patternfly/[email protected]...@patternfly/[email protected]) Updates `@patternfly/react-tokens` from 5.3.1 to 5.4.0 - [Release notes](https://github.com/patternfly/patternfly-react/releases) - [Commits](https://github.com/patternfly/patternfly-react/compare/@patternfly/[email protected]...@patternfly/[email protected]) --- updated-dependencies: - dependency-name: "@patternfly/patternfly" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patternfly - dependency-name: "@patternfly/react-core" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patternfly - dependency-name: "@patternfly/react-icons" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patternfly - dependency-name: "@patternfly/react-styles" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patternfly - dependency-name: "@patternfly/react-table" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patternfly - dependency-name: "@patternfly/react-tokens" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patternfly ... PatternFly's NumberInput has become stricter with the value's it accepts, it now does not accept a string as a valid value. This was a bug in podman as we had an inconsistent state which was either a string or number. Signed-off-by: dependabot[bot] <[email protected]>
76415ba
to
d43d3fd
Compare
@@ -327,11 +327,20 @@ export class ImageRunModal extends React.Component { | |||
} | |||
|
|||
onPlusOne(key) { | |||
this.setState(state => ({ [key]: parseInt(state[key]) + 1 })); | |||
this.setState(state => ({ [key]: parseFloat(state[key]) + 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.
This added line is not executed by any test.
if (isNaN(value) || value < minimum) { | ||
value = minimum; |
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.
These 2 added lines are not executed by any test.
@@ -1125,7 +1134,7 @@ export class ImageRunModal extends React.Component { | |||
plusBtnAriaLabel={_("Increase retries")} | |||
onMinus={() => this.onMinusOne('healthcheck_retries')} | |||
onPlus={() => this.onPlusOne('healthcheck_retries')} | |||
onChange={ev => this.onValueChanged('healthcheck_retries', parseInt(ev.target.value) < 0 ? 0 : ev.target.value)} /> | |||
onChange={ev => this.onNumberValue('healthcheck_retries', ev.target.value)} /> |
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 added line is not executed by any test.
CentOS 10 has different failures and unrelated:
|
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.
Thanks for figuring out! In the future, please do these adjustments as separate commit, instead of hiding behind a node update.
(And yes, "meh" for C10S, that looks like a major regression again 😨 )
Bumps the patternfly group with 6 updates:
5.3.1
5.4.0
5.3.4
5.4.0
5.3.2
5.4.0
5.3.1
5.4.0
5.3.4
5.4.0
5.3.1
5.4.0
Updates
@patternfly/patternfly
from 5.3.1 to 5.4.0Release notes
Sourced from
@patternfly/patternfly
's releases.... (truncated)
Commits
f75001a
Update issue templatesa9e2a7a
Update issue templatesc0c2559
Update and rename PF6_alpha_bug_request.md to PF6_beta_bug_request.md (#6935)fec6266
chore(deps): update dependency@patternfly/documentation-framework
to v5.16.1...1550c08
chore(deps): update dependency@patternfly/documentation-framework
to v5.16.1...ca9b9e6
fix(InlineEdit): updated example to match React (#6877)d5ee3d9
chore(build): corepack use [email protected] (#6872)50182be
chore(deps): update dependency@patternfly/react-code-editor
to v5.3.4 (#6859)aad6f30
fix(form): support label addl info in horizontal form (#6853)baa5f63
chore(deps): update dependency@patternfly/react-table
to v5.3.4 (#6861)Updates
@patternfly/react-core
from 5.3.4 to 5.4.0Commits
3ef073a
chore(release): releasing packages [ci skip]7a25feb
chore: Update promote.sh to promote to npm.494143d
chore: Update promote.sh with dry run5836008
Revert "chore(release): Update promote.sh"5937183
chore(release): Update promote.sh701ccd9
Revert "chore(release): releasing packages [ci skip]"48c08cb
chore(release): releasing packages [ci skip]a76ba5e
chore(release): releasing packages [ci skip]279c54f
fix(Table): remove blank scope in empty deprecated table headers (#10875)7b64b05
Update issue templatesUpdates
@patternfly/react-icons
from 5.3.2 to 5.4.0Commits
3ef073a
chore(release): releasing packages [ci skip]7a25feb
chore: Update promote.sh to promote to npm.494143d
chore: Update promote.sh with dry run5836008
Revert "chore(release): Update promote.sh"5937183
chore(release): Update promote.sh701ccd9
Revert "chore(release): releasing packages [ci skip]"48c08cb
chore(release): releasing packages [ci skip]a76ba5e
chore(release): releasing packages [ci skip]279c54f
fix(Table): remove blank scope in empty deprecated table headers (#10875)7b64b05
Update issue templatesUpdates
@patternfly/react-styles
from 5.3.1 to 5.4.0Updates
@patternfly/react-table
from 5.3.4 to 5.4.0Commits
3ef073a
chore(release): releasing packages [ci skip]7a25feb
chore: Update promote.sh to promote to npm.494143d
chore: Update promote.sh with dry run5836008
Revert "chore(release): Update promote.sh"5937183
chore(release): Update promote.sh701ccd9
Revert "chore(release): releasing packages [ci skip]"48c08cb
chore(release): releasing packages [ci skip]a76ba5e
chore(release): releasing packages [ci skip]279c54f
fix(Table): remove blank scope in empty deprecated table headers (#10875)7b64b05
Update issue templatesUpdates
@patternfly/react-tokens
from 5.3.1 to 5.4.0Commits
3ef073a
chore(release): releasing packages [ci skip]7a25feb
chore: Update promote.sh to promote to npm.494143d
chore: Update promote.sh with dry run5836008
Revert "chore(release): Update promote.sh"5937183
chore(release): Update promote.sh701ccd9
Revert "chore(release): releasing packages [ci skip]"48c08cb
chore(release): releasing packages [ci skip]a76ba5e
chore(release): releasing packages [ci skip]279c54f
fix(Table): remove blank scope in empty deprecated table headers (#10875)7b64b05
Update issue templatesDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditions