summaryrefslogtreecommitdiff
path: root/std
AgeCommit message (Collapse)Author
2020-09-18v1.4.1Bert Belder
2020-09-18fix(cli/console): always quote and escape inspected strings (#7546)Casper Beyer
2020-09-18refactor: deno_fetch op crate (#7524)Bartek Iwańczuk
2020-09-17feat(std/node) stub out process.stdin, stdout, stderr (#7184)Jarrett Helton
2020-09-17refactor: make fetch use op_fetch_read instead of op_read (#7529)Ryan Dahl
2020-09-16test(std/wasi): add sched_yield test (#7511)Casper Beyer
2020-09-16fix(std/testing): assertion diff color (#7499)Pig Fang
2020-09-15fix(std/datetime): timezone bug (#7466)Tim Reichen
2020-09-15refactor(cli/tests): change std_path to root_path in std_tests() (#7438)tokiedokie
2020-09-15remove stub implementation of v3 in std/uuid (#7488)Casper Beyer
2020-09-14fix typo miliseconds -> milliseconds (#7469)tasshi / Masaharu TASHIRO
2020-09-14feat(std/node): Add AssertionError class (#7210)Schwarzkopf Balázs
2020-09-14test(std/http): make tests runnable from any directory (#7441)Casper Beyer
This makes std/http tests runnable from any directory by spawning test processes in the module directory resolved from import.meta.url and resolving test data relative to the same module directory.
2020-09-13v1.4.0Bartek Iwańczuk
2020-09-13upgrade: deno_doc, deno_lint, dprint, swc (#7434)Bartek Iwańczuk
upgrades: - swc_ecmascript 0.7.7 - dprint-plugin-typescript 0.31.3 - deno_lint 0.2.0 - deno_doc 0.1.9 Split std_lint test into std_lint and unit_test_lint. Added lint ignores to CommonJS files in std/node.
2020-09-11feat(unstable): enable importsNotUsedAsValues by default (#7413)Luca Casonato
2020-09-09chore(std): remove std/ws connect method (#7403)Luca Casonato
2020-09-09test(std/examples): make tests runnable from any directory (#7399)Casper Beyer
2020-09-09test(std/mime): make tests runnable from any directory (#7398)Casper Beyer
2020-09-08test(std/node): make tests runnable from any directory (#7397)Casper Beyer
This makes std/node tests runnable from any directory by resolving the testdata directory and files relative to the module directory resolved from import.meta.url.
2020-09-08test(std/fs): make tests runnable from any directory (#7388)Casper Beyer
2020-09-07BREAKING(std/fs): remove writeJson and writeJsonSync (#7256)Casper Beyer
2020-09-07BREAKING(std/fs): remove readJson and readJsonSync (#7255)Casper Beyer
2020-09-07test(std/hash): make tests runnable from any directory (#7376)Casper Beyer
2020-09-06test(std/archive): make tests runnable from any directory (#7366)Casper Beyer
2020-09-06test(std/encoding): make tests runnable from any directory (#7368)Casper Beyer
2020-09-04v1.3.3Bartek Iwańczuk
2020-09-04test(std/wasi): explicitly list modules for deterministic test runs (#7245)Casper Beyer
This explicitly lists std/wasi test modules in a pre-sorted array for deterministic test runs. As a side effect it makes it a bit more visible when a test has been added or removed aside from having to look at the submodule update.
2020-09-04chore(std/wasi): enable and fix lint errors in tests (#7324)Casper Beyer
2020-09-01docs(std/uuid): remove mention of v3 which is not supported (#7318)Casper Beyer
2020-09-01fix: use millisecond precision for Deno.futime and Deno.utime (#7299)Casper Beyer
2020-08-31test(std): ensure mod.ts modules have a test coverage (#7264)Casper Beyer
2020-08-31fix no-inner-declaration lint rule (#7287)Yusuke Tanaka
2020-08-31chore(std/wasi): fix no-inner-declarations lints (#7286)Casper Beyer
2020-08-31fix(cli): use upstream type definitions for WebAssembly (#7216)Casper Beyer
2020-08-31chore: remove unreachable code to pass linter (#7270)Yusuke Tanaka
2020-08-30refactor(std/uuid): remove dependency on isString from std/node (#7273)Casper Beyer
2020-08-30test(std/uuid): reorganize to use one test module per public module (#7272)Casper Beyer
2020-08-29docs(std/fs): remove stale references to readFileStr and writeFileStr (#7254)Casper Beyer
2020-08-29v1.3.2Bartek Iwańczuk
2020-08-29feat(std/fmt): add bright color variations (#7241)Casper Beyer
2020-08-28fix(std/testing): invalid dates assertion equality (#7230)Christian Petersen
2020-08-28fix(std/encoding/toml): Comment after arrays causing incorrect output (#7224)Jakob Strobl
2020-08-27chore(std/encoding): disable `no-control-regex` (#7219)Yusuke Tanaka
2020-08-27fix(std/wasi): invalid number to bigint conversion in fd_tell (#7215)Casper Beyer
2020-08-27test(std/wasi): seperate test runner into a module (#7191)Casper Beyer
2020-08-27fix(std/wasi): ignore lint errors (#7197)Yusuke Tanaka
2020-08-27test(std/datetime): port golang dayOfYear tests (#7105)Tim Reichen
2020-08-27docs(std/log): update example (#7157)Matthew Adams
2020-08-27feat(std/testing): add assertNotMatch (#6775)xcatliu