dosubot[bot] commented on issue #33881: URL: https://github.com/apache/superset/issues/33881#issuecomment-3000690407
<!-- Answer --> You're right—[email protected] was released months ago, so the timing of the npm ci breakage isn't due to a new luxon release or any change in the Superset repo. This kind of error can appear suddenly because npm ci enforces that package.json and package-lock.json are perfectly in sync. If the lockfile was generated with [email protected] but the allowed range is ^3.5.0, npm will expect the latest matching version (3.6.1) to be resolved, depending on how the npm registry responds or if npm itself changes its integrity checks. Sometimes, registry metadata or npm client updates can trigger stricter enforcement, causing builds that previously worked to start failing even if nothing changed in your repo or in the luxon package itself. The best way to avoid this is to regularly update and commit package-lock.json whenever a new compatible dependency version is published and matches your semver range. There’s no evidence of other dependencies or repo changes causing this—it's just standard npm/lockfile behavior when using semver ranges and not updating the lockfile promptly. If you notice any other symptoms or dependencies involved, let me know! <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/2a29a6a7-000e-494f-aeb9-1e3b3a8d3c0e?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/2a29a6a7-000e-494f-aeb9-1e3b3a8d3c0e?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/2a29a6a7-000e-494f-aeb9-1e3b3a8d3c0e?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/2a29a6a7-000e-494f-aeb9-1e3b3a8d3c0e?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/2a29a6a7-000e-494f-aeb9-1e3b3a8d3c0e?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/2a29a6a7-000e-494f-aeb9-1e3b3a8d3c0e?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/2a29a6a7-000e-494f-aeb9-1e3b3a8d3c0e?feedback_type=other)</sup> [](https://go.dosu.dev/discord-bot) [! [Share on X](https://img.shields.io/badge/X-share-black)](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/issues/33881) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
