Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-11-19 | build: fix linting problems (#8431) | Bartek Iwańczuk | |
2020-11-19 | feat(std/io): ReadableStream from AsyncIterator & WritableStream from Writer ↵ | crowlKats | |
(#8378) | |||
2020-11-14 | build: update dlint to v0.2.10 (#8284) | Yusuke Tanaka | |
Update prebuilt "dlint" binary to v0.2.10 and fix diagnostics for "require-await" rule. Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2020-11-06 | docs(std): add some missing JSDoc (#7765) | Fukuda Naoto | |
Refs #7487 | |||
2020-10-20 | fix(std/io): remove trivial internal util.ts module (#8032) | Casper Beyer | |
2020-10-18 | test(std/io): use a real tempdir (#8019) | Casper Beyer | |
This replaces a case of a temp file in the working tree with a tempfile in a real temporary directory avoiding pollution of the working directory. | |||
2020-10-04 | docs(std): version all imports in README (#7442) | tokiedokie | |
Use $STD_VERSION in std/ README files to automatically display proper version. | |||
2020-10-04 | docs: end sentences with a period in markdown (#7813) | Trivikram Kamat | |
2020-09-27 | feat(fmt): Sort named import and export specifiers (#7711) | David Sherret | |
2020-09-21 | chore: add copyright (#7593) | tokiedokie | |
2020-08-31 | test(std): ensure mod.ts modules have a test coverage (#7264) | Casper Beyer | |
2020-07-14 | Use dprint for internal formatting (#6682) | David Sherret | |
2020-07-14 | Remove unused property of StringReader (#6743) | syumai | |
2020-07-14 | docs(std/io): error in the documentation (#6709) | Max Nest | |
2020-07-08 | feat: add --no-check option (#6456) | Kitson Kelly | |
This commit adds a "--no-check" option to following subcommands: - "deno cache" - "deno info" - "deno run" - "deno test" The "--no-check" options allows to skip type checking step and instead directly transpiles TS sources to JS sources. This solution uses `ts.transpileModule()` API and is just an interim solution before implementing it fully in Rust. | |||
2020-06-27 | fix(std/io): export streams.ts & added docs (#6535) | Marcos Casagrande | |
2020-06-27 | feat(std/io): add fromStreamReader, fromStreamWriter (#5789) | Marcos Casagrande | |
2020-06-25 | fix(std/io): Make BufWriter/BufWriterSync.flush write all chunks (#6269) | Marcos Casagrande | |
2020-06-25 | refactor: shift copyBytes and tweak deps to reduce dependencies (#6469) | Chris Knight | |
2020-06-13 | fix(std/io): Use Deno.test in writers_test (#6273) | Marcos Casagrande | |
2020-06-12 | refactor: Don't destructure the Deno namespace (#6268) | Nayeem Rahman | |
2020-06-12 | fix(std/io): BufWriter/StringWriter bug (#6247) | Marcos Casagrande | |
2020-06-07 | refactor(std): remove testing dependencies from non-test code (#5838) | Chris Knight | |
2020-06-06 | fix(std/io): StringReader implementation (#6148) | Ryan Dahl | |
2020-06-05 | added documentation with sample for std/io mod (#6106) | Deepak Vishwakarma | |
2020-06-01 | feat(std/io): add LimitedReader (#6026) | hastri | |
2020-05-20 | fix: compilation error introduced by #4543 (#5673) | uki00a | |
2020-05-20 | fix(std/io): BufReader should not share the internal buffer across reads (#4543) | uki00a | |
2020-05-17 | Miscellaneous documentation and spelling improvements (#5527) | Bert Belder | |
* Extended/updated documentation on code editor setup and plugins. * Moved documentation to the right file. * Fixed spelling errors in documentation and code. * Updated broken links. Co-authored-by: 迷渡 <justjavac@gmail.com> Co-authored-by: AlfieriChou <alfierichou@gmail.com> Co-authored-by: Anil Seervi <anil13112000@gmail.com Co-authored-by: Bert Belder <bertbelder@gmail.com> Co-authored-by: Fernando Basso <fernandobasso.br@gmail.com> Co-authored-by: József Sallai <jozsef@sallai.me> Co-authored-by: S4ltyGo4t <mario.weidner@gmx.de> Co-authored-by: Tommy May <tommymay37@gmail.com> Co-authored-by: Turbinya <wownucleos@gmail.com> Co-authored-by: ᴜɴвʏтᴇ <i@shangyes.net> | |||
2020-05-09 | BREAKING(std): reorganization (#5087) | Nayeem Rahman | |
* Prepend underscores to private modules * Remove collectUint8Arrays() It would be a misuse of Deno.iter()'s result. * Move std/_util/async.ts to std/async * Move std/util/sha*.ts to std/hash | |||
2020-04-30 | BREAKING: reorder std/io/utils copyBytes arguments (#5022) | Marcos Casagrande | |
2020-04-29 | BREAKING: remove custom implementation of Deno.Buffer.toString() (#4992) | Bartek Iwańczuk | |
Keep in mind Buffer.toString() still exists, but returns [object Object]. Reason for removal of Buffer.toString() was that it implicitly used TextDecoder with fixed "utf-8" encoding and no way to customize the encoding. | |||
2020-04-29 | fix: Make std/io copyN write the whole read buffer (#4978) | Marcos Casagrande | |
2020-04-28 | BREAKING: Remove Deno.EOF, use null instead (#4953) | Nayeem Rahman | |
2020-04-28 | refactor: rename sync io interfaces (#4945) | Bartek Iwańczuk | |
This commit renames sync io interfaces: * SyncReader -> ReaderSync * SyncWriter -> WriterSync * SyncSeeker -> SeekerSync | |||
2020-04-28 | BREAKING: remove overload of Deno.test() (#4951) | Bartek Iwańczuk | |
This commit removes overload of Deno.test() that accepted named function. | |||
2020-04-26 | Increase copyN buffer size to match go implementation (#4904) | Marcos Casagrande | |
2020-04-26 | reorder copyN arguments to match Deno.copy (#4900) | Akshat Agarwal | |
2020-04-25 | BREAKING CHANGE: remove Deno.OpenMode (#4884) | Bartek Iwańczuk | |
This commit removes Deno.OpenMode along with overloaded variants of Deno.open() and Deno.openSync() that used OpenMode. | |||
2020-04-25 | BREAKING CHANGE: change order of args in Deno.copy() (#4885) | Bartek Iwańczuk | |
2020-04-17 | feature: synchronous buffered writer (#4693) | Chris Knight | |
2020-04-01 | Move encode, decode helpers to /std/encoding/utf8.ts, delete /std/strings/ ↵ | Ryan Dahl | |
(#4565) also removes std/encoding/mod.ts and std/archive/mod.ts which are useless. | |||
2020-03-28 | Update to Prettier 2 and use ES Private Fields (#4498) | Kitson Kelly | |
2020-03-20 | Add require-await lint rule (#4401) | Samrith Shankar | |
2020-03-18 | feat: Deno.test() sanitizes ops and resources (#4399) | Bartek Iwańczuk | |
This PR brings assertOps and assertResources sanitizers to Deno.test() API. assertOps checks that test doesn't leak async ops, ie. there are no unresolved promises originating from Deno APIs. Enabled by default, can be disabled using Deno.TestDefinition.disableOpSanitizer. assertResources checks that test doesn't leak resources, ie. all resources used in test are closed. For example; if a file is opened during a test case it must be explicitly closed before test case finishes. It's most useful for asynchronous generators. Enabled by default, can be disabled using Deno.TestDefinition.disableResourceSanitizer. We've used those sanitizers in internal runtime tests and it proved very useful in surfacing incorrect tests which resulted in interference between the tests. All tests have been sanitized. Closes #4208 | |||
2020-03-13 | fix(std): Use Deno.errors where possible. (#4356) | Oliver Lenehan | |
2020-02-27 | reduce unnecessary output on tests (#4148) | Yusuke Sakurai | |
2020-02-23 | fix: [ws] sock shouldn't throw eof error when failed to read frame (#4083) | Yusuke Sakurai | |
2020-02-19 | Enable TS strict mode by default (#3899) | Maximilien Mellen | |
Fixes #3324 Co-authored-by: Kitson Kelly <me@kitsonkelly.com> | |||
2020-02-17 | feat(std/io): Export readDelim(), readStringDelim() and readLines() from ↵ | Nayeem Rahman | |
bufio.ts (#4019) Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> |