summaryrefslogtreecommitdiff
path: root/test_util/std
AgeCommit message (Collapse)Author
2023-03-03chore: update deno_std submodule to 0.178.0 (#18003)Bartek Iwańczuk
2023-02-06chore: update std submodule to 0.176.0 (#17668)Bartek Iwańczuk
2023-01-15chore: update std submodule and its imports (#17408)Asher Gomez
2022-12-02chore: update std submodule to 0.167.0 (#16894)Bartek Iwańczuk
2022-11-10feat: don't require --unstable flag for npm programs (#16520)Bartek Iwańczuk
This PR adds copies of several unstable APIs that are available in "Deno[Deno.internal].nodeUnstable" namespace. These copies do not perform unstable check (ie. don't require "--unstable" flag to be present). Otherwise they work exactly the same, including permission checks. These APIs are not meant to be used by users directly and can change at any time. Copies of following APIs are available in that namespace: - Deno.spawnChild - Deno.spawn - Deno.spawnSync - Deno.serve - Deno.upgradeHttpRaw - Deno.listenDatagram
2022-11-06chore: upgrade deno_std submodule (#16546)Bartek Iwańczuk
2022-10-26chore(unstable): rename Deno.getUid() and Deno.getGid() (#16432)Colin Ihrig
This commit renames `Deno.getUid()` to `Deno.uid()` and renames `Deno.getGid()` to `Deno.gid()`.
2022-10-26feat: Stabilize Deno.consoleSize() API (#15933)Bartek Iwańczuk
This commit stabilizes "Deno.consoleSize()" API. There is one change compared to previous unstable API, in that the API doesn't accept any arguments. Console size is established by querying syscalls for stdio streams at fd 0, 1 and 2.
2022-10-17chore: upgrade internal deno_std to 0.160 (#16333)David Sherret
2022-08-29chore: update test_util/std/ submodule (#15657)Bartek Iwańczuk
2022-07-18BREAKING(unstable): Improve Deno.spawn() stdio API (#14919)Nayeem Rahman
- "SpawnOutput" extends "ChildStatus" instead of composing it - "SpawnOutput::stdout", "SpawnOutput::stderr", "Child::stdin", "Child::stdout" and "Child::stderr" are no longer optional, instead made them getters that throw at runtime if that stream wasn't set to "piped". - Remove the complicated "<T extends SpawnOptions = SpawnOptions>" which we currently need to give proper type hints for the availability of these fields. Their typings for these would get increasingly complex if it became dependent on more options (e.g. "SpawnOptions::pty" which if set should make the stdio streams unavailable)
2022-06-16update std submodulecrowlkats
2022-06-01feat: update to TypeScript 4.7 (#14242)Kitson Kelly
2022-05-25chore: upgrade test_util/std/ submodule (#14722)Bartek Iwańczuk
2022-05-13chore: update test_util/std/ submodule (#14595)Bartek Iwańczuk
2022-02-25chore: update deno_std submodule (#13771)Bartek Iwańczuk
2022-01-02chore: update std submodule to efa94f2 (#13260)Bartek Iwańczuk
2021-11-24chore: merge v1.16.3 into main (#12892)Bert Belder
2021-11-24chore: update std submodule to 0.115.1 (#12883)Bartek Iwańczuk
2021-09-05chore(std/http): server module name migration (#11890)Craig Morten
2021-07-12chore(runtime): deprecate `Deno.copy` (#11369)Luca Casonato
2021-04-08chore: update deno_file to use deno_webidl (#10042)Luca Casonato
This changes the custom input converters in deno_file to use deno_webidl converters.
2021-04-05chore: update std submodule (#10017)Luca Casonato
2021-02-02chore: remove std directory (#9361)Casper Beyer
This removes the std folder from the tree. Various parts of the tests are pretty tightly dependent on std (47 direct imports and 75 indirect imports, not counting the cli tests that use them as fixtures) so I've added std as a submodule for now.