Bump yauzl from 2.10.0 to 3.2.0 - #1
Open
dependabot[bot] wants to merge 1 commit into
Open
Conversation
Bumps [yauzl](https://github.com/thejoshwolfe/yauzl) from 2.10.0 to 3.2.0. - [Commits](thejoshwolfe/yauzl@2.10.0...3.2.0) --- updated-dependencies: - dependency-name: yauzl dependency-version: 3.2.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/yauzl-3.2.0
branch
from
September 30, 2025 06:42
f8dcaa4 to
acdcb85
Compare
DaanSelen
pushed a commit
that referenced
this pull request
Jul 9, 2026
…anst#7798) The cleanup pass on PostgreSQL is supposed to garbage-collect rows whose `extra` references a mesh ID that no longer exists in the current `meshlist` (matching the MongoDB branch a few lines down). As written: DELETE FROM Main WHERE ((extra != NULL) AND (extra LIKE ('mesh/%')) AND (extra != ANY ($1))) Two interlocking bugs: 1. `extra != NULL` is invalid SQL. In three-valued logic, `<expr> != NULL` evaluates to NULL, which the WHERE clause treats as falsy. The AND chain is therefore always NULL/falsy and zero rows are ever deleted. PostgreSQL's `transform_null_equals` setting only affects `=`, not `<>`/`!=`, and is off by default. Result today: cleanup silently no-ops on Postgres and orphan mesh-extra rows accumulate forever. 2. `<> ANY (array)` is *not* "not in the list" semantics. It returns TRUE when at least one array element is not equal to the value -- which is true for almost every input as soon as `meshlist` has 2+ distinct elements. Naively fixing only bug #1 (e.g., to `extra IS NOT NULL`) would mass-delete every row matching `extra LIKE 'mesh/%'`, including rows whose mesh is in the current list. The correct form is `<> ALL (array)`. This patch replaces both with the minimal correct query: DELETE FROM main WHERE extra LIKE 'mesh/%' AND extra <> ALL ($1) The redundant `extra != NULL` predicate is dropped because `extra LIKE 'mesh/%'` already filters out NULLs. The `<> ALL` form matches the intent of the parallel MongoDB query (`{ meshid: { $exists: true, $nin: meshlist } }`). `Main` -> `main` is cosmetic (PostgreSQL folds unquoted identifiers to lowercase), included only to match the actual `CREATE TABLE main` schema at db.js:1407 and other queries throughout the file. Note: the MariaDB/MySQL branch on the next line is also broken (mismatched parens; query throws on every call). That is a separate fix.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps yauzl from 2.10.0 to 3.2.0.
Commits
6eb8242version 3.2.0421c51fsupport reading extended timestamp information (#160)b15f865version 3.1.33a6fe06Fix crash when usingfromBuffer()to read corrupt zip files that specify ou...49840a2release notess. closes #1561d9ccb6fix buffer out of bounds crashing instead of emitting a clean error7318aa6test suite runs error tests through all open functions363a345link to hexdump-zip6fbfef9better issue number referencee0da075version 3.1.2You can trigger a rebase of this PR by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)