chore: update dependencies and prep release#122
Merged
AaronFeledy merged 6 commits intomainfrom Feb 19, 2026
Merged
Conversation
✅ Deploy Preview for lando-wordpress ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
This comment has been minimized.
This comment has been minimized.
Member
Author
d1530ed to
98147e9
Compare
package-lock.json
Outdated
| "integrity": "sha512-+sSO7wR2OBF80sjN+tfuS7EHnoy0LNMmP/rLYAZcREHcTuGec5LP3eUQZCo91Qh6Vi31BVVKIOherYlR0zLg3Q==", | ||
| "version": "1.7.0", | ||
| "resolved": "https://registry.npmjs.org/@lando/mariadb/-/mariadb-1.7.0.tgz", | ||
| "integrity": "sha512-2R/c9VDkWP9DJFgb8KldgI5uSWF0Y35ZGTA+oSOI9kpKA6JKOVueIag5LJNGrhemsXlpytfiMgOPIwFyMKr7Pw==", |
There was a problem hiding this comment.
Lockfile downgrades dependencies to older resolved versions
Medium Severity
The package-lock.json downgrades @lando/mariadb from 1.8.0 to 1.7.0 and @lando/postgres from 1.6.0 to 1.5.0, even though package.json ranges (^1.7.0 and ^1.5.0) allow the higher versions that were previously locked. The prior release (v1.9.0) was tested and shipped with these higher versions. Anyone running npm ci after this change will get older dependency versions, potentially losing bug fixes or features from the newer releases.
Additional Locations (1)
|
Bugbot Autofix prepared fixes for 1 of the 1 bugs found in the latest run.
Or push these changes by commenting: Preview (d38ba5fc42)diff --git a/package-lock.json b/package-lock.json
--- a/package-lock.json
+++ b/package-lock.json
@@ -1413,9 +1413,9 @@
}
},
"node_modules/@lando/mariadb": {
- "version": "1.7.0",
- "resolved": "https://registry.npmjs.org/@lando/mariadb/-/mariadb-1.7.0.tgz",
- "integrity": "sha512-2R/c9VDkWP9DJFgb8KldgI5uSWF0Y35ZGTA+oSOI9kpKA6JKOVueIag5LJNGrhemsXlpytfiMgOPIwFyMKr7Pw==",
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/@lando/mariadb/-/mariadb-1.8.0.tgz",
+ "integrity": "sha512-+sSO7wR2OBF80sjN+tfuS7EHnoy0LNMmP/rLYAZcREHcTuGec5LP3eUQZCo91Qh6Vi31BVVKIOherYlR0zLg3Q==",
"bundleDependencies": [
"lodash"
],
@@ -1547,9 +1547,9 @@
}
},
"node_modules/@lando/postgres": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/@lando/postgres/-/postgres-1.5.0.tgz",
- "integrity": "sha512-HAa/vundcz66uss87CCDmTbGO49MAg83k2HFLTDmWeuR+oeibwfwNwmbxPfcKxsZbAwvTMPcsovCCVF9WroYtA==",
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/@lando/postgres/-/postgres-1.6.0.tgz",
+ "integrity": "sha512-t/nPo+LcdL8eE6TJSot2qxmtH1ONLmk3yyA0pIxSl46VYOl9lnHwNdsXhukwLdBHWSg3YPj8bbFaExE5GSJ8OQ==",
"bundleDependencies": [
"lodash"
], |
Member
Author
Restore @lando/mariadb from 1.7.0 to 1.8.0 and @lando/postgres from 1.5.0 to 1.6.0 in package-lock.json. These higher versions are compatible with the package.json ranges (^1.7.0 and ^1.5.0) and were previously locked before an inadvertent downgrade. Applied via @cursor push command
This was referenced Feb 19, 2026
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.




Updates @lando/php to ^1.10.0, fixes release workflow trigger, updates CI actions and README.
Note
Low Risk
Mostly dependency/version bumps plus CI/workflow and documentation updates; main risk is behavioral changes from the
@lando/phpupgrade and release automation trigger change.Overview
Updates the plugin’s PHP integration dependency to
@lando/php@^1.10.0(reflected inpackage.json/package-lock.json) and records the pendingv1.10.0notes inCHANGELOG.md.Fixes the NPM publish GitHub Action to run on
release.published(instead ofcreated) and bumps workflow action versions (egactions/checkout@v6,actions/setup-node@v6).Minor repo hygiene/docs updates: ignore Syncthing conflict files via
.gitignoreand updateREADME.mdto mention PHP8.5+support and add a maintainer.Written by Cursor Bugbot for commit 3c02085. This will update automatically on new commits. Configure here.