Skip to content

chore(deps-dev): bump htmlunit from 2.36.0 to 2.37.0 in /stackgres-k8s/src/api-web#3

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/maven/stackgres-k8s/src/api-web/net.sourceforge.htmlunit-htmlunit-2.37.0
Open

chore(deps-dev): bump htmlunit from 2.36.0 to 2.37.0 in /stackgres-k8s/src/api-web#3
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/maven/stackgres-k8s/src/api-web/net.sourceforge.htmlunit-htmlunit-2.37.0

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Feb 7, 2023

Bumps htmlunit from 2.36.0 to 2.37.0.

Release notes

Sourced from htmlunit's releases.

HtmlUnit-2.37.0

  • Bugfixes
  • many js improvements done in Rhino
  • CHROME 79
  • FF52 removed
  • FF68 added
Commits
  • cb28621 prepare release 2.37.0
  • 2d6ec1c move some methods up
  • bc1f58d Security: prevent Rhinos access to Java resources; e.g. call java methods
  • 4237700 checkstyle update
  • 814de74 support activeX object mocker
  • 16aca54 pmd update
  • 934390f disable java access to avoid execution of arbitrary (java) code
  • 0ffc3f7 use initSafeStandardObjects() instead of initStandardObjects() to avoid execu...
  • dfa6ffc fix object-classid processing if the js engine is disabled
  • fbc628c pgpverify-maven-plugin update
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot 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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [htmlunit](https://github.com/HtmlUnit/htmlunit) from 2.36.0 to 2.37.0.
- [Release notes](https://github.com/HtmlUnit/htmlunit/releases)
- [Commits](HtmlUnit/htmlunit@2.36.0...2.37.0)

---
updated-dependencies:
- dependency-name: net.sourceforge.htmlunit:htmlunit
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Feb 7, 2023
J-ongres pushed a commit that referenced this pull request Jun 8, 2026
Switch the recommended BlockIO class glob from `/dev/dm-[0-9]*` to the
underlying physical disks (`/dev/sd[a-z]*`, `/dev/nvme[0-9]n[0-9]*`).
The kernel's blkcg propagates through device-mapper clone/split, so a
throttle on the physical disk caps I/O that the workload submits via
its LV.

The previous revision's placeholder-seeding mitigation for the dm-glob
case turned out to be broken in practice: when seeded dm minors are
released, their `(major:minor)` entries remain in the runtime's
BlockIO class. The kernel rejects writes to non-existent devices with
ENODEV, and crun fails container creation with `write 'rbps': No such
device`. The pod gets stuck in Init:CreateContainerError. Physical-disk
globs avoid this entirely because physical devices are stable from
boot and don't come or go in normal operation.

Specific changes:

- #3 example `Devices:` glob updated to physical disks. Added a callout
  explaining why this approach is preferred and citing the empirical
  validation numbers. Removed the now-obsolete "one-shot glob
  expansion" warning that argued for placeholder seeding.

- #6 storage-class callout reworded: explains that the cap targets the
  physical disk and that the kernel propagates the cgroup tag through
  the dm layer. Links to the Limitations subsection for the underlying
  reasoning.

- #6.1 expected-output discussion clarified: the matched major:minor is
  the physical disk (8:* or 259:*), not the LV's 252:* / 253:* dm-N.
  Major-numbers table annotated accordingly.

- Limitations section restructured. The previous "One-shot device glob
  expansion" subsection is now "Why target physical disks and not dm
  devices" -- it explains both failure modes for the dm-glob case
  (cold-start blind spot and stale-entry ENODEV) and why physical-disk
  globs avoid both. The placeholder-seeding mitigation is removed
  entirely (it was incorrect). The nodeSelector-vs-nodeName footgun
  callout is also removed -- no longer applicable.

- Static provisioning subsection demoted from "robust alternative" to
  "an alternative for unusual cases" (e.g. dm-multipath where the
  workload device is the multipath dm and underlying paths shouldn't
  be throttled individually). For the common LVM-CSI case, the
  physical-disk approach from #3 is now the recommended default.

- Troubleshooting: "Annotation silently ignored" entry updated to point
  at the new Limitations heading. New entry for
  `Init:CreateContainerError` with `write 'rbps': No such device`
  documents the ENODEV failure mode explicitly.
J-ongres pushed a commit that referenced this pull request Jun 8, 2026
Switch the recommended BlockIO class glob from `/dev/dm-[0-9]*` to the
underlying physical disks (`/dev/sd[a-z]*`, `/dev/nvme[0-9]n[0-9]*`).
The kernel's blkcg propagates through device-mapper clone/split, so a
throttle on the physical disk caps I/O that the workload submits via
its LV.

The previous revision's placeholder-seeding mitigation for the dm-glob
case turned out to be broken in practice: when seeded dm minors are
released, their `(major:minor)` entries remain in the runtime's
BlockIO class. The kernel rejects writes to non-existent devices with
ENODEV, and crun fails container creation with `write 'rbps': No such
device`. The pod gets stuck in Init:CreateContainerError. Physical-disk
globs avoid this entirely because physical devices are stable from
boot and don't come or go in normal operation.

Specific changes:

- #3 example `Devices:` glob updated to physical disks. Added a callout
  explaining why this approach is preferred and citing the empirical
  validation numbers. Removed the now-obsolete "one-shot glob
  expansion" warning that argued for placeholder seeding.

- #6 storage-class callout reworded: explains that the cap targets the
  physical disk and that the kernel propagates the cgroup tag through
  the dm layer. Links to the Limitations subsection for the underlying
  reasoning.

- #6.1 expected-output discussion clarified: the matched major:minor is
  the physical disk (8:* or 259:*), not the LV's 252:* / 253:* dm-N.
  Major-numbers table annotated accordingly.

- Limitations section restructured. The previous "One-shot device glob
  expansion" subsection is now "Why target physical disks and not dm
  devices" -- it explains both failure modes for the dm-glob case
  (cold-start blind spot and stale-entry ENODEV) and why physical-disk
  globs avoid both. The placeholder-seeding mitigation is removed
  entirely (it was incorrect). The nodeSelector-vs-nodeName footgun
  callout is also removed -- no longer applicable.

- Static provisioning subsection demoted from "robust alternative" to
  "an alternative for unusual cases" (e.g. dm-multipath where the
  workload device is the multipath dm and underlying paths shouldn't
  be throttled individually). For the common LVM-CSI case, the
  physical-disk approach from #3 is now the recommended default.

- Troubleshooting: "Annotation silently ignored" entry updated to point
  at the new Limitations heading. New entry for
  `Init:CreateContainerError` with `write 'rbps': No such device`
  documents the ENODEV failure mode explicitly.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants