Skip to content

Commit

Permalink
0.176.0 (#3159)
Browse files Browse the repository at this point in the history
  • Loading branch information
denobot authored Feb 2, 2023
1 parent df0e69a commit 0170bc2
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 14 deletions.
7 changes: 7 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### 0.176.0 / 2023.02.02

- fix(node): disable worker_threads (#3151)
- fix(node): throw permisison error instead of unknown error (#3133)
- fix(node/util): stricter runtime type checking (#3122)
- fix: make encoding/front_matter work in a browser (#3154)

### 0.175.0 / 2023.01.28

- BREAKING(dotenv,fmt,io): remove deprecated APIs (#3134)
Expand Down
28 changes: 15 additions & 13 deletions encoding/csv/stream_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,16 +308,18 @@ export const MyTextDecoderStream = () => {
});
};

Deno.test({
name:
"[encoding/csv/stream] cancel CsvStream during iteration does not leak file",
permissions: { read: [testdataDir] },
fn: async () => {
const file = await Deno.open(join(testdataDir, "large.csv"));
const readable = file.readable.pipeThrough(MyTextDecoderStream())
.pipeThrough(new CsvStream());
for await (const _record of readable) {
break;
}
},
});
// This test is flaky. See https://github.com/denoland/deno_std/issues/3160
//
// Deno.test({
// name:
// "[encoding/csv/stream] cancel CsvStream during iteration does not leak file",
// permissions: { read: [testdataDir] },
// fn: async () => {
// const file = await Deno.open(join(testdataDir, "large.csv"));
// const readable = file.readable.pipeThrough(MyTextDecoderStream())
// .pipeThrough(new CsvStream());
// for await (const _record of readable) {
// break;
// }
// },
// });
2 changes: 1 addition & 1 deletion version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
* the cli's API is stable. In the future when std becomes stable, likely we
* will match versions with cli as we have in the past.
*/
export const VERSION = "0.175.0";
export const VERSION = "0.176.0";

0 comments on commit 0170bc2

Please sign in to comment.