Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-07-04 | feat: Stabilize Deno.serve() API (#19141) | Bartek Iwańczuk | |
This commit stabilizes "Deno.serve()", which becomes the preferred way to create HTTP servers in Deno. Documentation was adjusted for each overload of "Deno.serve()" API and the API always binds to "127.0.0.1:8000" by default. | |||
2023-07-03 | fix: Update typings for Deno.errors namespace (#19688) | Bartek Iwańczuk | |
Follow up to https://github.com/denoland/deno/pull/19514, where I forgot to update type declarations. | |||
2023-06-16 | chore: fix typos in HrtimePermissionDescriptor and performance.now docs (#19469) | andy | |
2023-06-05 | feat: add more options to Deno.inspect (#19337) | Leo Kettmeir | |
For https://github.com/denoland/deno_std/issues/3404 --------- Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com> | |||
2023-05-24 | feat(ext/fs): add isBlockDevice, isCharDevice, isFifo, isSocket to FileInfo ↵ | Hirotaka Tagawa / wafuwafu13 | |
(#19008) `isFile`, `isDirectory`, `isSymlink` are defined in `Deno.FileInfo`, but `isBlockDevice`, `isCharacterDevice`, `isFIFO`, `isSocket` are not defined. --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2023-05-10 | fix(dts): align `seekSync` `position` arg with `seek` (#19077) | David Sherret | |
Closes #19060 | |||
2023-05-04 | docs: update Deno.Writer docstring (#18987) | Bartek Iwańczuk | |
Closes https://github.com/denoland/deno/issues/18985#issuecomment-1534493623 | |||
2023-05-03 | fix(docs): replace "e.g." with "i.e." in `seek()`/`seekSync()` comment (#18964) | kang | |
Clarify calculation of number "9" in `seek()`/`seekSync()` comment of lib.deno.ns.d.ts by replacing "e.g." with "i.e." | |||
2023-05-02 | docs(lib): document `Deno.Command` requires the `allow-run` permission (#18958) | Yarden Shoham | |
2023-05-01 | docs: correct example of piping the output of a subprocess to a file (#18933) | Michael Lazarev | |
Fixes #18909 | |||
2023-04-27 | feat: Deprecate Deno.run API in favor of Deno.Command (#17630) (#18866) | Bartek Iwańczuk | |
This commit adds `@deprecated` comments to `Deno.run` API declarations. Since stabilization of `Deno.Command` API in [Deno v1.31](https://deno.com/blog/v1.31#api-stabilizations), `Deno.Command` is the preferred (more reliable) API to interact with subprocesses. This is the preparation for the removal of `Deno.run` API in Deno 2.0. | |||
2023-03-30 | docs: clarify `Deno.consoleSize` returns the window size (#18508) | David Sherret | |
Closes #18477 | |||
2023-03-21 | chore: update formatting configuration (#18331) | Bartek Iwańczuk | |
2023-03-21 | docs: fix broken `Deno.FsFile#readable` example code (#18277) | ayame113 | |
2023-03-17 | BREAKING(ext/fs): FileInfo.dev is defined on Windows (#18237) | Bartek Iwańczuk | |
Addresses feedback from https://github.com/denoland/deno/pull/18073#issuecomment-1471480385. Reverts changes to `FileInfo` fields that are not available on Windows making them `null`. Only `FileInfo.dev` is non-null. | |||
2023-03-16 | feat(fs): support FileInfo.dev on Windows (#18073) | Bartek Iwańczuk | |
This commit adds support for retrieving `dev` information when stating files on Windows. Additionally `Deno.FileInfo` interfaces was changed to always return 0 for fields that we don't retrieve information for on Windows. Closes https://github.com/denoland/deno/issues/18053 --------- Co-authored-by: David Sherret <dsherret@gmail.com> | |||
2023-03-07 | chore(docs): Fixed manual link (#18060) | ayame113 | |
2023-03-05 | fix(check): include dts files in tsc roots (#18026) | Nayeem Rahman | |
2023-03-04 | chore(docs): add note about loadavg returning 0 on windows (#18006) | Geert-Jan Zwiers | |
2023-02-22 | Revert "feat: Deprecate Deno.run API in favor of Deno.Command (#17630)" (#17875) | Ryan Dahl | |
Deno.Command needs to be stabilized first and allow people to upgrade to it before we can deprecate Deno.run. Otherwise lint will suddenly fail with deprecated errors without giving people a chance to update. | |||
2023-02-16 | feat: Deprecate Deno.run API in favor of Deno.Command (#17630) | Bartek Iwańczuk | |
2023-02-14 | feat: stabilize Deno.osUptime() (#17554) | Bartek Iwańczuk | |
This commit stabilizes "Deno.osUptime()" API. The "--unstable" flag is no longer required to use this API. | |||
2023-02-13 | feat: Stabilize Deno.Command API (#17628) | Bartek Iwańczuk | |
This commit stabilizes "Deno.Command" API with all its related APIs. "--unstable" flag is no longer required to use this API. | |||
2023-02-12 | fix: add WouldBlock error (#17339) | Leo Kettmeir | |
2023-02-11 | feat: add signal option to Deno.resolveDns (#17384) | Leo Kettmeir | |
Closes #14406 | |||
2023-02-11 | feat: add more variants to Deno.build.os (#17340) | Leo Kettmeir | |
Closes #14799 | |||
2023-01-28 | docs: fix typos in `WriteFileOptions`'s JSDoc (#17507) | RA80533 | |
2023-01-25 | feat: Add sync APIs for "Deno.permissions" (#17019) | Asher Gomez | |
This commit adds sync versions of async APIs to "Deno.permissions" namespace. Following APIs were added: - "Deno.permissions.querySync" - "Deno.permissions.requestSync" - "Deno.permissions.revokeSync" | |||
2023-01-24 | feat: allow first arg in test step to be a function (#17096) | Leo Kettmeir | |
2023-01-19 | feat(runtime): add bigint to seek typings (#17314) | Leo Kettmeir | |
2023-01-15 | chore: update std submodule and its imports (#17408) | Asher Gomez | |
2023-01-12 | feat: allow passing a ReadableStream to Deno.writeFile/Deno.writeTextFile ↵ | Leo Kettmeir | |
(#17329) Closes #13229 | |||
2023-01-09 | feat(runtime/os): add `Deno.env.has()` (#17315) | Leo Kettmeir | |
2023-01-03 | fix(declaration): change `Deno.open` example to not use `Deno.close(rid)` ↵ | David Sherret | |
(#17218) | |||
2023-01-02 | chore: update copyright year to 2023 (#17247) | David Sherret | |
Yearly tradition of creating extra noise in git. | |||
2022-12-27 | feat(unstable): Add "Deno.osUptime()" API (#17179) | Kamil Ogórek | |
This PR adds support for `Deno.osUptime` which reports number of seconds since os was booted. It will allow us to be compatible with Node's `os.uptime` - https://nodejs.org/api/os.html#osuptime Partially based on https://docs.rs/uptime_lib/latest/src/uptime_lib/lib.rs.html | |||
2022-12-13 | docs: use example & default tags (#17032) | Leo Kettmeir | |
2022-12-13 | feat: support `createNew` in `Deno.writeFile` (#17023) | Leo Kettmeir | |
2022-11-25 | refactor: move dts files, diagnostics.rs, and tsc.rs to tsc folder (#16820) | David Sherret | |