Conversation
10a8a9f to
19007bd
Compare
Coverage report
Test suite run success3774 tests passing in 1448 suites. Report generated by 🧪jest coverage report action from 19007bd |
| } | ||
|
|
||
| form.append('file', new Blob([fileContents], {type: 'text/jsonl'}), filename) | ||
| form.append('file', new Blob([new Uint8Array(fileContents)], {type: 'text/jsonl'}), filename) |
There was a problem hiding this comment.
TypeScript 5.9 no longer accepts Buffer as a valid BlobPart. Wrapping in new Uint8Array() satisfies the stricter type check with no runtime cost, since Buffer extends Uint8Array.
|
We detected some changes at Caution DO NOT create changesets for features which you do not wish to be included in the public changelog of the next CLI release. |
|
🤖 Code Review · #projects-dev-ai for questions ✅ Complete - No issues 📋 History✅ No issues |
WHY are these changes introduced?
Dependabot was not able to properly upgrade TS in #6887
WHAT is this pull request doing?
Upgrade TypeScript and fix some issues
How to test your changes?
CI
Measuring impact
How do we know this change was effective? Please choose one:
Checklist