summaryrefslogtreecommitdiff
path: root/docs/runtime
AgeCommit message (Collapse)Author
2021-07-20chore: move docs to separate repositoryBartek Iwańczuk
2021-06-19docs(runtime): fix HTTP server example (#11047)vwkd
2021-06-15docs: Add localStorage example (#10973)Yasser A.Idrissi
2021-05-28docs(runtime): fix fetch API usage of HTTP server (#10777)Takeshi Kurosawa
2021-05-15docs(runtime): add WebStorage API (#10593)crowlKats
2021-05-06docs(runtime): fix HTTP server example (#10497)vwkd
2021-04-22docs: document Deno's HTTP Server API (#10280)Kitson Kelly
Co-authored-by: Satya Rohith <me@satyarohith.com>
2021-04-06docs(workers): fix permissions examples (#9965)Mason Medeiros
2021-03-22typoIkko Ashimine
2021-03-06chore: remove unstable from permission (#9701)crowlKats
2021-02-19chore: rename default branch to main (#9503)Luca Casonato
2021-01-20docs: improve manual around typescript (#8139)Kitson Kelly
Fixes #9054
2021-01-07feat: add --location=<href> and globalThis.location (#7369)Nayeem Rahman
2021-01-07fix: Use "none" instead of false to sandbox Workers (#9034)Nayeem Rahman
2021-01-06feat: 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).
2020-12-30BREAKING(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-11chore: fixed various misspellings and other typos (#8691)Anh Hong
2020-12-07refactor(cli/rt): deduplicate code (#8649)Benjamin Gruenbaum
2020-11-26fix: "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-25docs: document the spec deviations in web apis (#8489)Luca Casonato
2020-09-28docs: use const assertion for PermissionDescriptor (#7733)Trivikram Kamat
Fixes #7731
2020-08-18refactor: permissions (#7074)Nayeem Rahman
2020-08-17typos (#7082)tokiedokie
2020-07-31feat: add $STD_VERSION replacement variable in docs (#6922)Luca Casonato
2020-07-23docs: Fix broken links (#6853)takutoaoi
2020-07-14Use dprint for internal formatting (#6682)David Sherret
2020-06-09fix(cli/js/web/worker): Disable relative module specifiers (#5266)Nayeem Rahman
2020-05-26doc: various runtime doc updates (#5885)Chris Knight
2020-05-26improve docs (#5872)Robin Wieruch
2020-05-18adjust docs (#5598)Matt Dumler
2020-05-17Miscellaneous 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-15adjust example code (#5332)Max
2020-05-13docs: Added unstable message to compiler api (#5272)Luca Casonato
2020-05-13doc: fix typo in workers.md (#5256)Nugine
2020-05-11refactor: check permissions in SourceFileFetcher (#5011)Bartek Iwańczuk
This PR hot-fixes permission escapes in dynamic imports, workers and runtime compiler APIs. "permissions" parameter was added to public APIs of SourceFileFetcher and appropriate permission checks are performed during loading of local and remote files.
2020-05-10Docs for deno test + minor other changes (#5185)Luca Casonato
* Added fs events example. * Added docs for `deno test`. * Renamed file server example. * Unified markdown code types. * Removed plugin topics from TOC. * Fixed links.
2020-05-09std/0.50.0Ryan Dahl
Add std/version.ts and document unstableness of std.
2020-05-07BREAKING: make Worker.deno unstable (#5128)Bartek Iwańczuk
This commit makes "Worker.deno" option unstable. Added new manual entry "docs/runtime/workers.md". Removed stale workers tests.
2020-05-06Multi page manual (#5110)Luca Casonato