summaryrefslogtreecommitdiff
path: root/std
AgeCommit message (Collapse)Author
2020-11-25docs(std): add some missing JSDoc ws/mod.ts (#8428)ThenMorning
2020-11-24feat(std/node): Port most of node errors (#7934)Steven Guerrero
2020-11-24feat(cli): update to TypeScript 4.1 (#7573)Kitson Kelly
2020-11-23v1.5.4Bartek Iwańczuk
2020-11-22feat(std/http): Validate cookie path value (#8457)Yasser A.Idrissi
2020-11-21feat(std/node): Add Readable Stream / Writable Stream / errors support (#7569)Steven Guerrero
2020-11-21docs(std/path): add missing JSDoc (#8282)Mo
2020-11-21refactor(std/http): Rename validateCookieName param name & JSDoc (#8451)Yasser A.Idrissi
2020-11-20test(std): make test output less noisy (#8445)Bartek Iwańczuk
This commit makes output of std/ tests less noisy by passing "--quiet" flag to Deno subprocesses run as part of test suite.
2020-11-19docs(std): add missing jsdoc comments to exported functions (#8442)William Perron
includes: - http/file_server.ts - testing/_diff.ts - testing/asserts.ts Relates to #7487
2020-11-19build: fix linting problems (#8431)Bartek Iwańczuk
2020-11-19feat(std/node): add os.totalmem, os.freemem (#8317)Gyubong
2020-11-19feat(std/io): ReadableStream from AsyncIterator & WritableStream from Writer ↵crowlKats
(#8378)
2020-11-19fix(std/node): correct typings for global, globalThis, window (#8363)Steven Guerrero
2020-11-19feat(std/hash): add the sha1Hmac (#8418)silence
2020-11-19feat(std/log): Log error stack (#8401)Mark Tiedemann
2020-11-19Add JSDocs to std/fs/walk.ts (#8426)inokawa
2020-11-18fix(std/http): fix error handling in the request iterator (#8365)lideming
If the request body is using chunked encoding, errors may be thrown in "request.finalize()". In this case, we should untrack and close the connection.
2020-11-17fix(std/node) Fix event extendability (#8409)Steven Guerrero
2020-11-17feat(std/http): Check if cookie property is valid (#7189)Yasser A.Idrissi
Co-authored-by: Nayeem Rahman <nayeemrmn99@gmail.com>
2020-11-17refactor(std): remove unnecessary back direction for import (#8403)Behnam Mohammadi
2020-11-16feat(std/node): Add util.deprecate (#8407)Steven Guerrero
2020-11-16feat(std/node): implement process.nextTick (#8386)Steven Guerrero
2020-11-16v1.5.3Bartek Iwańczuk
2020-11-15docs(std/async): fix a couple typos in std/async/README.md (#8388)Elisée Maurer
2020-11-14build: 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-14refactor(std): add std/_util/os.ts module (#8370)Behnam Mohammadi
This commit adds "std/_util/os.ts" module which contains common os detection logic and is browser compatible. Co-authored-by: Nayeem Rahman <nayeemrmn99@gmail.com>
2020-11-13refactor(std/fs): moved isCopyFolder to options (#8319)Behnam Mohammadi
2020-11-13fix(std/http): flush body chunks for HTTP chunked encoding (#8349)Mark Tiedemann
Fixes #8339
2020-11-10refactor(std/fs): remove unnecessary if else block (#8321)Behnam Mohammadi
2020-11-10refactor(std/fs): improve performance by using some instead filter method ↵Behnam Mohammadi
(#8322)
2020-11-09refactor(std): remove redundant code in move.ts (#8269)Behnam Mohammadi
2020-11-09feat(std/node): consistent Node.js builtin shapes (#8274)Guy Bedford
2020-11-09v1.5.2 (#8301)Kitson Kelly
2020-11-07fix(std/node): only define Node.js globals when loading std/node/global (#8281)Guy Bedford
2020-11-07docs(std/fmt): add JSDoc (#8278)Mo
2020-11-06docs(std): add some missing JSDoc (#7765)Fukuda Naoto
Refs #7487
2020-11-06docs(std/node/util): add missing JSdoc (#7806)Hanseo Jo
Refs #7487
2020-11-06docs(std/node/url): Added JSDocs for std/node/url (#7805)Bhumij Gupta
2020-11-04docs(std/node/querystring): add missing JSDoc (#8242)ayntee
2020-11-03build: migrate to dlint (#8176)Bartek Iwańczuk
This commit migrates repository from using "eslint" to "dlint" for linting JavaScript code.
2020-11-02fix(std/flags): Fix parse incorrectly parsing alias flags with equals signs ↵The Wizard Bear
in the value #8136 (#8216)
2020-11-02feat(std/node/fs): add realpath and realpathSync (#8169)X
2020-11-02feat(std/wasi): add start method to Context (#8141)Casper Beyer
This adds a start method to the Context to make starting a command less tedious and yield consistent errors. Manually setting the memory is still valid for more complex scenarios, just undocumented for the time being.
2020-11-02docs: fix typo in std/fs README.md (#8104)Khushraj Rathod
2020-10-31v1.5.1Luca Casonato
2020-10-29feat(std/node/crypto): randomBytes and pbkdf2 (#8191)Steven Guerrero
* crypto * Other thing * Test for pdkdf2 * Add randomBytes * Refactor pbkdf2 * Lint and format
2020-10-27fix(std/wasi): remove stray console.log call (#8156)Casper Beyer
A stray console.log call made it into path_open which should have been reverted, it was only meant for debugging on the CI.
2020-10-27v1.5.0Bartek Iwańczuk
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
2020-10-27fix: path traversal in std/http/file_server.ts (#8134)Luca Casonato