Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-09-23 | chore: add code generation for @types/deno (#25545) | David Sherret | |
2024-09-02 | BREAKING(ext/web): remove remaining web types for compatibility (#25334) | Kenta Moriuchi | |
2024-08-06 | docs: improve TextDecoder and TextEncoder jsdoc (#24890) | Ryan Dahl | |
2024-07-28 | fix(types): fix streams types (#24770) | Kenta Moriuchi | |
2024-07-22 | fix(types): Conform lib.deno_web.d.ts to lib.dom.d.ts and lib.webworker.d.ts ↵ | Kenta Moriuchi | |
(#24599) Fix #24578 Fix #21981 | |||
2024-07-02 | feat(ext/web): add `Blob.prototype.bytes()` (#24148) | Kenta Moriuchi | |
2024-05-05 | docs: update categories to match new planned sitemap (#23677) | Jo Franchetti | |
Updating categories for new sitemap as documented here: https://lucid.app/lucidspark/744b0498-a133-494d-981c-76059dd18885/edit?view_items=jpvBwFdYlNdB&invitationId=inv_50c83415-2aa5-423f-b438-ea156695c08b | |||
2024-03-25 | fix(ext/web): Fix structuredClone Web API type declaration (any -> generic) ↵ | Viktor Marinho | |
(#22968) Closes #22958 Used the same type as in: https://github.com/microsoft/TypeScript/blob/main/src/lib/dom.generated.d.ts#L26114 --------- Signed-off-by: Viktor Marinho <56888067+viktormarinho@users.noreply.github.com> | |||
2024-02-07 | refactor: move ImageData to web extension (#22295) | Leo Kettmeir | |
Signed-off-by: Leo Kettmeir <crowlkats@toaxl.com> | |||
2024-01-22 | feat(web): ImageBitmap (#21898) | Leo Kettmeir | |
2024-01-01 | chore: update copyright to 2024 (#21753) | David Sherret | |
2023-12-06 | feat(ext/web): add ImageData Web API (#21183) | Jamie | |
Fixes #19288 Adds the `ImageData` Web API. This would be beneficial to projects using `ImageData` as a convenient transport layer for pixel data. This is common in Web Assembly projects that manipulate images. Having this global available in Deno would improve compatibility of existing JS libraries. **References** - [MDN ImageData Web API](https://developer.mozilla.org/en-US/docs/Web/API/ImageData) - [whatwg HTML Standard Canvas Spec](https://html.spec.whatwg.org/multipage/canvas.html#pixel-manipulation) | |||
2023-11-24 | feat(streams): ReadableStream.read min option (#20849) | Leo Kettmeir | |
2023-11-13 | feat(ext/web): add `AbortSignal.any()` (#21087) | Kenta Moriuchi | |
Fixes #18944 | |||
2023-10-23 | docs(event): fixlets to code comments (#20944) | Jérôme Benoit | |
2023-10-10 | feat(ext/web): cancel support for TransformStream (#20815) | Luca Casonato | |
2023-07-03 | fix(dts): make globals available on globalThis (#19438) | ud2 | |
This PR changes Web IDL interfaces to be declared with `var` instead of `class`, so that accessing them via `globalThis` does not raise type errors. Closes #13390. | |||
2023-01-02 | chore: update copyright year to 2023 (#17247) | David Sherret | |
Yearly tradition of creating extra noise in git. | |||
2022-11-30 | fix(ext/web): fix typings for readable stream readers (#16191) | ud2 | |
* Introduces `ReadableStreamDefaultReadResult` and modifies `ReadableStreamDefaultReader.read` to return this type (closes #15269). * Adds the missing `ReadableStreamBYOBReader` constructor. * Removes the nonexistent `ReadableStreamReader` class. | |||
2022-10-26 | chore: improve built-in API documentation (#16158) | Kitson Kelly | |
Co-authored-by: crowlkats <crowlkats@toaxl.com> Co-authored-by: Colin Ihrig <cjihrig@gmail.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2022-10-12 | chore(ext/web): fix typo (#16248) | Xiao Xiao | |
implictly -> implicitly assiging -> assigning | |||
2022-08-30 | fix(docs): add missing categories (#15684) | Leo Kettmeir | |
2022-08-17 | docs: add category tag for built-in APIs (#15480) | Kitson Kelly | |
2022-06-17 | fix(ext/web): add EventTarget brand checking (#14637) | Colin Ihrig | |
This commit adds brand checking to EventTarget. It also fixes a bug where deno would crash if an abort signal was aborted on the global addEventListener(). | |||
2022-06-07 | refactor(core): Move Deno.core bindings to ops (#14793) | Nayeem Rahman | |
2022-06-01 | feat: update to TypeScript 4.7 (#14242) | Kitson Kelly | |
2022-04-21 | feat(runtime): two-tier subprocess API (#11618) | Leo Kettmeir | |
2022-04-19 | feat(ext/web): add globalThis.reportError() (#13799) | Nayeem Rahman | |
2022-03-14 | feat(ext/web): Add `AbortSignal.timeout()` (#13687) | Andreu Botella | |
2022-02-22 | docs: code example to `structuredClone`, `CompressionStream`, ↵ | Geert-Jan Zwiers | |
`DecompressionStream` (#13719) Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2022-01-24 | feat(ext/web): add CompressionStream API (#11728) | Leo Kettmeir | |
Co-authored-by: Luca Casonato <hello@lcas.dev> Co-authored-by: Ryan Dahl <ry@tinyclouds.org> | |||
2022-01-20 | chore: update copyright year (#13434) | Yoshiya Hinosawa | |
2021-12-10 | feat(ext/web): implement `AbortSignal.prototype.throwIfAborted()` (#13044) | Andreu Botella | |
See whatwg/dom#1034. | |||
2021-12-10 | feat(cli): update to TypeScript 4.5 (#12410) | Kitson Kelly | |
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2021-11-11 | fix: add typings for AbortSignal.reason (#12730) | Luca Casonato | |
2021-11-08 | feat(ext/web): WritableStreamDefaultController.signal (#12654) | Leo Kettmeir | |
2021-11-05 | BREAKING chore(ext/web): remove `ReadableStream.getIterator` (#12652) | Leo Kettmeir | |
2021-11-05 | fix: typings for BYOB stream readers (#12651) | Leo Kettmeir | |
2021-11-03 | feat(ext/web): BYOB support for ReadableStream (#12616) | Leo Kettmeir | |
This commit introduces support for BYOB readers in the WHATWG Streams API implementation. | |||
2021-10-21 | fix: declare web types as global (#12497) | Bartek Iwańczuk | |
Co-authored-by: Feng Yu <F3n67u@outlook.com> | |||
2021-09-02 | feat(fmt): add basic JS doc formatting (#11902) | David Sherret | |
2021-08-11 | Rename extensions/ directory to ext/ (#11643) | Ryan Dahl | |