summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-05-27rename strings/strings.ts to strings/mod.ts (denoland/deno_std#449)Axetroy
Original: https://github.com/denoland/deno_std/commit/2f003fa35cb354b1b1cc43af196a0d356b334ed3
2019-05-25http: add ParseHTTPVersion (denoland/deno_std#452)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/438178541e4d713c441daec7c783c745244d4d14
2019-05-25Prettier: support for specified files and glob mode (denoland/deno_std#438)Axetroy
Original: https://github.com/denoland/deno_std/commit/1083db10ed64647db70e23aff8cebc1022582f00
2019-05-24Add encoding/csv (denoland/deno_std#432)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/c8a7dcdcd0987d74858b23bab83af480f35c26a8
2019-05-24rename bytes/bytes.ts to bytes/mod.tsaxetroy
Original: https://github.com/denoland/deno_std/commit/015cf3e02d5809bf5ba473201183a26e08837c56
2019-05-24remove function prefix of bytes moduleaxetroy
Original: https://github.com/denoland/deno_std/commit/a4579426783f36cd5e46c4ebfb75ef702b2a15ba
2019-05-24Enable bytes tests and add bytesRepeat (denoland/deno_std#446)Axetroy
Original: https://github.com/denoland/deno_std/commit/bd46d60ded3197d93a52ede92eba7302df9b4713
2019-05-23TOML: Move to encoding dir (denoland/deno_std#435)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/7a722ceffc0b60305863c1417ef22b835db0d58d
2019-05-23Fix http README examples (denoland/deno_std#440)Stoyan Dimkov
Some cosmetic fixes to the provided examples in the http README: - Ensure they're all actually runnable - Use clear variable names - Add usage of Cookie interface Original: https://github.com/denoland/deno_std/commit/b9b25b8b17f8ca952392315f6b4f0dcfa5c5a00a
2019-05-23http: fix content-length checking (denoland/deno_std#437)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/ce4e3ccdc3f9838d2f286007fa55cf5064a93f44
2019-05-23Added isGlob function (denoland/deno_std#433)Shubhadeep Das
Original: https://github.com/denoland/deno_std/commit/94dcb2779be16530bb6ec9ce7218c89fbbf50c59
2019-05-22http: send an empty response body if none is provided (denoland/deno_std#429)Aurélien Bertron
Fixes: denoland/deno_std#402 Original: https://github.com/denoland/deno_std/commit/e00e3fe33a4e57e8bebcf2b7cdd4f501674450d2
2019-05-22http: make server handle bad client requests properly (denoland/deno_std#419)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/7620fe1a82ba5694e17d51133d94230b06d1517a
2019-05-22fix(fileserver): wrong url href of displayed files (denoland/deno_std#426)Yuqing Chen
Original: https://github.com/denoland/deno_std/commit/be6cd35cbf65ef49b15bf0faf1e582d79f5a0f87
2019-05-22http: delete conn parameter in readRequest (denoland/deno_std#430)Vincent LE GOFF
To bring it inline with Go API Original: https://github.com/denoland/deno_std/commit/209183e24812095a40e48e60484f80a5a254b1c3
2019-05-21Rename //multipart/multipart.ts to //mime/multipart.ts (denoland/deno_std#420)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/aad0896346805513dc87eb01cd867a1513f574b1
2019-05-21feat(prettier): output to stdout instead of write file by default unless ↵Axetroy
specified --write flag (denoland/deno_std#332) Original: https://github.com/denoland/deno_std/commit/434007b8ab421cb24a75d2937d275c5048b9c111
2019-05-21Bump v0.6.0 (denoland/deno_std#423)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/47134db9f24de802bee560941584bbc32e75a9c3
2019-05-20Move collectUint8Arrays() to util/async.ts, clean up, fix bugs, add testsBert Belder
Original: https://github.com/denoland/deno_std/commit/dcad420b92f79311b386ef524bd1487c04400cc0
2019-05-20http: remove unnecessary await in listenAndServe()Bert Belder
Original: https://github.com/denoland/deno_std/commit/d1971241d90bdb7fcb612e2d922ed99a0419e2f4
2019-05-20chore(readme): add README.md for ws (denoland/deno_std#417)Yoshitaka Terazawa
Original: https://github.com/denoland/deno_std/commit/301c12d9d20d94d0ed36a394353835a90b5e9249
2019-05-20Clean up HTTP async iterator code (denoland/deno_std#411)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/68faf32f721d2a95c7b1c75661713c8118c077c7
2019-05-18fix: add exnext lib to tsconfig.json (denoland/deno_std#416)Yusuke Sakurai
Original: https://github.com/denoland/deno_std/commit/0daa693d680652ae9447cf43d6e8e8355d52d8d4
2019-05-18Fix denoland/deno_std#409 handle multipart header in mime reader ↵Vincent LE GOFF
(denoland/deno_std#415) Original: https://github.com/denoland/deno_std/commit/92c26cc33183284737fd41685b26a15cab07405d
2019-05-16readme: loose port of go's std lib (denoland/deno_std#413)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/c2f5a7cf2206a9a476e0e9b116db00ced327f188
2019-05-16feat(fs): add copy/copySync (denoland/deno_std#278)Axetroy
Original: https://github.com/denoland/deno_std/commit/ab5b0887ccde0ad9f00f1943e27bd73bc483833b
2019-05-14feat: add Tar and Untar classes (denoland/deno_std#388)Jun Kato
Ported from danoweb https://github.com/arcatdmz/danoweb/blob/fccb5bfc60866521c96abd31f35ddca1f508e63f/server/tar.ts https://github.com/arcatdmz/danoweb/blob/fccb5bfc60866521c96abd31f35ddca1f508e63f/server/tar_test.ts Original: https://github.com/denoland/deno_std/commit/98257ef30319bd77ac36626291ff589e84ea88cd
2019-05-14http_bench: print address (denoland/deno_std#374)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/f10ea7317e68dd9c1d272e7fff7e9531c301e07c
2019-05-14ws: make acceptable() more robust (denoland/deno_std#404)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/9e8e6f9356f75a68a20cf04d9620621485f5d1a0
2019-05-14ci: bump to v0.5.0Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/cd869c9cc8492cd6eda5e15f20c851e39088e20f
2019-05-14fix(http): Skip 0 chunks when writing body (denoland/deno_std#387)Jun Kato
Original: https://github.com/denoland/deno_std/commit/79d5f556ba22d6fa9426825234cc8c49d37caf2c
2019-05-14walk() should not use deprecated FileInfo.path (denoland/deno_std#398)Ryan Dahl
The walk() interface is change to return a WalkInfo object which contains both the resolved filename and FileInfo object from stat. The followSymlinks feature is disabled for now. Original: https://github.com/denoland/deno_std/commit/07ca4f9629769a75bad11bb1059a7809d7f90db8
2019-05-14feat: ws client (denoland/deno_std#394)Yusuke Sakurai
Original: https://github.com/denoland/deno_std/commit/782e3f690ffb9ee0dd89a5a64a3f2b753899719b
2019-05-14fs: Remove completed todo item (denoland/deno_std#406)Axetroy
Original: https://github.com/denoland/deno_std/commit/d097e319e84b1155f2406e7d49fdf68a8d6ee161
2019-05-13datetime: timezone fix in toIMF (denoland/deno_std#400)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/49ae9439f71228326c1328d89502e437c00928fc
2019-05-13upgrade prettier to v1.17.1 (denoland/deno_std#399)Axetroy
Original: https://github.com/denoland/deno_std/commit/59cbcf3f3cac16faa18f93d84e7eee2da9d253ac
2019-05-13Move posix and win implementations in fs/path/mod.ts to separate file ↵Axetroy
(denoland/deno_std#397) Original: https://github.com/denoland/deno_std/commit/b6a7b78535188a83b3f865d2389e5be3f0c12ead
2019-05-11Fix mac CI (denoland/deno_std#390)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/4e143b135a8d8119b4f7a9801e3d28fb3ae14238
2019-05-10benching: use performance.now (denoland/deno_std#385)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/ad1b95eaf75d0e65367f3ad956a691e9348a2dc5
2019-05-07[bytes] fix bytesFindIndex and bytesFindLastIndex (denoland/deno_std#381)Jun Kato
Original: https://github.com/denoland/deno_std/commit/87142529163ea047066a2991f51cb2cf3001df74
2019-05-06Add run to shebangs (denoland/deno_std#380)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/0f00676e8f1b32ca6c9092c0a1f3af6932c4feeb
2019-05-04bump CI to v0.4.0 (denoland/deno_std#378)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/2ad643d29690f6390c250f55e993727ae8e1ba54
2019-05-01docs(fs): fix async iterator (denoland/deno_std#366)Alvaro
Original: https://github.com/denoland/deno_std/commit/aa9446390230da43d5ac6dcdcf8c355e1deedb12
2019-05-01textproto: fix invalid header error and move tests (denoland/deno_std#369)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/b6aaddbcc060287e8c349a875a19df8fcd0620f3
2019-04-30docs(log): fix docs mistake (denoland/deno_std#372)梨子(Riko)
Original: https://github.com/denoland/deno_std/commit/a9c41417234e5042050f2c7169d2ef754730eb05
2019-04-29remove dead code from log/test.ts (denoland/deno_std#370)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/e2c187003d1d18920a9c5bdb72b2664a730542fd
2019-04-29http/cookie: fixing equal character split (denoland/deno_std#368)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/8503efc8f729cf152a2b03471b3a9d6d93c31197
2019-04-27http: Cookie improvements (denoland/deno_std#359)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/f1114691038888fc3d8995b64a8028f072569672
2019-04-27Update TS version on pipeline (denoland/deno_std#364)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/1504894a69dad520311413e8003257d69ae51c9c
2019-04-27fs: fix ensureLink broken (denoland/deno_std#360)Axetroy
Fixes denoland/deno_std#358 Original: https://github.com/denoland/deno_std/commit/d9a64c0a145c46d8611f3fc8295c70e4f32fdc6d