aglinxinyuan commented on PR #6713: URL: https://github.com/apache/texera/pull/6713#issuecomment-5040851174
The only failing check was the frontend binary-license drift check (`build / frontend` → *Check bundled npm packages against per-module LICENSE-binary files*). Dependabot bumped `@ngneat/until-destroy` to 10.0.0 in `package.json` / `yarn.lock` but left `frontend/LICENSE-binary` pinned at `@ngneat/[email protected]` — and since it's a direct production dep, that version drift fails the check even in PR mode (`--ignore-transitive-version`). Pushed a commit syncing the `LICENSE-binary` bullet to `10.0.0`. Nothing else was needed — the prod build had already passed, so the major 8→10 jump is fine on Angular 21 (v10's peer is just `@angular/core >=13`), both versions are MIT, and v10's only dependency change is a `tslib` range that still resolves to the 2.8.1 already listed. Re-run is green — `build / frontend` passes on ubuntu/macOS/Windows (prod build + unit + browser tests + license check). -- 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]
