Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-11 | fix link (#9472) | rigwild | |
2021-01-30 | refactor: rewrite Blob implementation (#9309) | Luca Casonato | |
Co-authored-by: Kitson Kelly <me@kitsonkelly.com> | |||
2021-01-28 | fix(tools): fix typo in wpt cli output (#9303) | Dezső Mészáros | |
2021-01-27 | tests: new typescript WPT runner (#9269) | Luca Casonato | |
2021-01-27 | docs(tools/compiler): add docs for new features in 1.7 (#9258) | Pig Fang | |
2021-01-26 | docs(tools): add documentation for Vim/Neovim plugin ALE (#9270) | Mohammed Chelouti | |
2021-01-25 | Revert "tests: enable wpt for url (#9046)" (#9264) | Luca Casonato | |
This reverts commit 66e99d349b31f5cd30b868d80ebdab6ba749fd96. | |||
2021-01-24 | tests: enable wpt for url (#9046) | Luca Casonato | |
2021-01-21 | docs: update implied tsconfig for "useDefineForClassFields" (#9196) | Rob Palmer | |
2021-01-20 | docs: Fix typos in TypeScript section of the manual (#9195) | Kuzivakwashe | |
2021-01-20 | v1.7.0 with release notes | Ryan Dahl | |
2021-01-19 | docs: Move release schedule section (#9178) | Nayeem Rahman | |
2021-01-20 | docs: improve manual around typescript (#8139) | Kitson Kelly | |
Fixes #9054 | |||
2021-01-11 | chore: update copyright to 2021 (#9092) | Yusuke Tanaka | |
2021-01-07 | feat: add --location=<href> and globalThis.location (#7369) | Nayeem Rahman | |
2021-01-07 | fix: Use "none" instead of false to sandbox Workers (#9034) | Nayeem Rahman | |
2021-01-07 | Remove emoji from welcome script so it looks better on windows (#9031) | Ryan Dahl | |
2021-01-06 | feat: Add configurable permissions for Workers (#8215) | Steven Guerrero | |
This commit adds new option to "Worker" Web API that allows to configure permissions. New "Worker.deno.permissions" option can be used to define limited permissions to the worker thread by either: - inherit set of parent thread permissions - use limited subset of parent thread permissions - revoke all permissions (full sandbox) In order to achieve this functionality "CliModuleLoader" was modified to accept "initial permissions", which are used for top module loading (ie. uses parent thread permission set to load top level module of a worker). | |||
2021-01-05 | docs(example/tcp_echo): fix TCP echo leaking resources (#8997) | Mark Tomlin | |
2021-01-05 | feat(cli/standalone): support runtime flags for deno compile (#8738) | Nayeem Rahman | |
2021-01-04 | docs: Remove outdated information about third_party/ directory (#8973) | Yacine Hmito | |
2021-01-02 | fix(std): Don't use JSDoc syntax for browser-compatibility headers (#8960) | Nayeem Rahman | |
2020-12-31 | docs: add note about NO_PROXY env variable (#8929) | Tomofumi Chiba | |
2020-12-30 | BREAKING(unstable): Use hosts for net allowlists (#8845) | Nayeem Rahman | |
Allowlist checking already uses hosts but for some reason requests, revokes and the runtime permissions API use URLs. - BREAKING(lib.deno.unstable.d.ts): Change NetPermissionDescriptor::url to NetPermissionDescriptor::host - fix(runtime/permissions): Don't add whole URLs to the allowlist on request - fix(runtime/permissions): Harden strength semantics: ({ name: "net", host: "127.0.0.1" } is stronger than { name: "net", host: "127.0.0.1:8000" }) for blocklisting - refactor(runtime/permissions): Use tuples for hosts, make the host optional in Permissions::{query_net, request_net, revoke_net}() | |||
2020-12-30 | docs: Fix instructions about how to setup development environment with ↵ | Yuki Tanaka | |
Vim/Neovim (#8937) | |||
2020-12-29 | docs: update release schedule dates (#8922) | Rich Trott | |
2020-12-29 | docs(testing): Add import line to test example (#8909) | Maxim Zhukov | |
2020-12-29 | docs(introduction): Improve wording and capitalization (#8848) | Waldir Pimenta | |
2020-12-28 | docs(watch): Add note about --unstable flag (#8876) | Maxim Zhukov | |
2020-12-28 | docs(webassembly): add a link to mdn documentation (#8903) | Casper Beyer | |
2020-12-17 | docs(lsp): add Sublime Text integration documentation (#8797) | Steven Guerrero | |
2020-12-14 | docs: fixes logo in README (#8740) | Vishal Pratap Singh | |
2020-12-14 | docs(tools): Move setup environment's community paragraph back (#8745) | Valentin Anger | |
2020-12-11 | docs(tools/repl): remove rogue reference to issue (#8720) | Casper Beyer | |
The keybindings are from upstream rustyline, I was a bit too blind copying action descriptions and a reference to a issue stuck in to the description of the ctrl-v binding. This commit removes the offending reference. | |||
2020-12-10 | docs(tools): add documentation for the deno lsp command (#8676) | Valentin Anger | |
Co-authored-by: Yuki Tanaka <uki00a@gmail.com> | |||
2020-12-11 | chore: fixed various misspellings and other typos (#8691) | Anh Hong | |
2020-12-10 | fix(doc): Resolves dead link on script installer man page (#8705) | Andrew Mitchell | |
2020-12-07 | refactor(cli/rt): deduplicate code (#8649) | Benjamin Gruenbaum | |
2020-12-07 | chore(std): Remove tsconfig_test.json (#8629) | Nayeem Rahman | |
Ref #8050 | |||
2020-12-06 | docs(examples): Synchronize links in TOC and index (#8635) | Justin Mayhew | |
2020-12-05 | docs(tools): add documentation for deno compile cmd (#8615) | fabiante | |
2020-12-02 | docs(lint): Update available rules & add link to doc site (#8590) | Yusuke Tanaka | |
2020-11-30 | fix release dates (#8560) | Ryan Dahl | |
2020-11-30 | docs: add info about release schedule (#8546) | Luca Casonato | |
2020-11-27 | docs(import_maps): Add trailing slash to ./src example (#8524) | Eric Zingeler | |
Update docs to reflect behavior. If trailing slash is not provided, `deno run` will throw error `Package address targets must end with "/"`. | |||
2020-11-26 | fix: "onload" event order (#8376) | Benjamin Gruenbaum | |
This commit fixes order of events for "onload" event. Previously handler attached using "window.onload" was always fired before handlers added using "addEventListener". | |||
2020-11-25 | docs: document the spec deviations in web apis (#8489) | Luca Casonato | |
2020-11-23 | Revert "docs(cli): Fix documentation about usage of deno completions … (#8468) | Bartek Iwańczuk | |
This reverts commit 17d4cd92133bb822ff3a4f2f5bb32dfd17f99282. | |||
2020-11-22 | docs(cli): Fix documentation about usage of deno completions script (#8369) | Mayank Agarwal | |
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2020-11-22 | chore(cli/flags): Rename --failfast to --fail-fast (#8456) | Nayeem Rahman | |