Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-05-17 | chore: release crates (#10661) | Luca Casonato | |
For the Deno 1.10.2 release. | |||
2021-05-15 | chore: upgrade Tokio to 1.6.0 (#10637) | Yusuke Tanaka | |
2021-05-11 | v1.10.1 | Ryan Dahl | |
2021-05-12 | v1.10.0 | Bartek Iwańczuk | |
2021-05-11 | chore: release crates (#10596) | Bartek Iwańczuk | |
2021-05-10 | chore: upgrade crates (#10559) | Bartek Iwańczuk | |
2021-04-30 | fix(test): default to num cpus when no value is given (#10443) | Casper Beyer | |
2021-04-28 | chore: upgrade dprint plugins (#10397) | Satya Rohith | |
2021-04-26 | Remove denort optimization (#10350) | Ryan Dahl | |
denort is an optimization to "deno compile" to produce slightly smaller output. It's a decent idea, but causes a lot of negative side-effects: - Deno's link time is a source of constant agony both locally and in CI, denort doubles link time. - The release process is a long and arduous undertaking with many manual steps. denort necessitates an additional manual zip + upload from M1 apple computers. - The "deno compile" interface is complicated with the "--lite" option. This is confusing for uses ("why wouldn't you want lite?"). The benefits of this feature do not outweigh the negatives. We must find a different approach to optimizing "deno compile" output. | |||
2021-04-26 | feat: Support deno-fmt-ignore-file for markdown formatting (#10191) | David Sherret | |
2021-04-25 | feat(cli): add test permissions to Deno.test (#10188) | Casper Beyer | |
This commits adds adds "permissions" option to the test definitions which allows tests to run with different permission sets than the process's permission. The change will only be in effect within the test function, once the test has completed the original process permission set is restored. Test permissions cannot exceed the process's permission. You can only narrow or drop permissions, failure to acquire a permission results in an error being thrown and the test case will fail. | |||
2021-04-23 | refactor: use 'data-url' crate to process data URLs in lsp & file_fetcher ↵ | Satya Rohith | |
(#10196) Closes: #10118 | |||
2021-04-23 | 1.9.2 | Luca Casonato | |
2021-04-23 | chore: release crates (#10327) | Luca Casonato | |
Release crates for the cli 1.9.2 release. | |||
2021-04-23 | chore: update dependencies (#10325) | Luca Casonato | |
This updates swc_* crates to latest, and various other deps. | |||
2021-04-21 | v1.9.1 | Bartek Iwańczuk | |
2021-04-21 | chore: release crates (#10269) | Bartek Iwańczuk | |
* Revert "tooling(bench_util): benching and profiling utilities (#10223)" This reverts commit 733a00030582375c43fa156e978f25df6ecc9e9a. * Upgrade notify | |||
2021-04-20 | chore: upgrade deno_doc, deno_lint (#10268) | Bartek Iwańczuk | |
2021-04-13 | v1.9.0 | Bartek Iwańczuk | |
2021-04-13 | chore: release crates (#10164) | Bartek Iwańczuk | |
2021-04-09 | chore: upgrade dependencies (#10094) | Bartek Iwańczuk | |
This commit upgrades: - swc_ecmascript - swc_bundler - deno_doc - deno_lint - dprint-plugin-typescript | |||
2021-04-09 | feat(lsp): add registry import auto-complete (#9934) | Kitson Kelly | |
2021-04-08 | chore: update deps (#10058) | Luca Casonato | |
This commit updates crate dependencies. | |||
2021-04-04 | chore(cli): Upgrade jsonc_parser to 0.17 (#9977) | David Sherret | |
Use new parse_to_serde_value as it's faster and less code here. | |||
2021-04-02 | v1.8.3 | Kitson Kelly | |
2021-04-02 | chore: bump dependent crates for cli (#9964) | Kitson Kelly | |
2021-04-02 | chore(cli): add "Deno" to the windows file description (#9959) | David Sherret | |
2021-03-21 | v1.8.2 | Bartek Iwańczuk | |
2021-03-21 | chore: release crates (#9847) | Bartek Iwańczuk | |
2021-03-20 | upgrade: tokio 1.4.0 (#9842) | Ryan Dahl | |
2021-03-15 | chore: Upgrade rustyline to 8.0.0 (#9781) | Casper Beyer | |
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2021-03-14 | chore: upgrade to tokio 1.3.0 (#9778) | Yusuke Tanaka | |
2021-03-12 | chore: bump crates (#9769) | Luca Casonato | |
2021-03-10 | fix(fmt): Correctly format hard breaks in markdown (#9742) | David Sherret | |
2021-03-09 | v1.8.1 | Bartek Iwańczuk | |
2021-03-09 | chore: release crates (#9731) | Bartek Iwańczuk | |
2021-03-03 | chore(lsp): update lspower to 0.8.4 (#9663) | hvithrafn | |
Co-authored-by: hvithrafn <hvithrafn@users.noreply.github.com> | |||
2021-03-02 | Pin lspower, because it made semvar incompatible patch release (#9656) | Ryan Dahl | |
2021-03-02 | v1.8.0 | Ryan Dahl | |
2021-03-02 | Bump crate versions (#9651) | Ryan Dahl | |
2021-03-02 | chore: upgrade crates (#9632) | Bartek Iwańczuk | |
2021-03-01 | feat: Align import map to spec and test using WPT (#9616) | Bartek Iwańczuk | |
This commit updates implementation of import maps to align it to current revision of the spec. Existing tests were removed in favor of using suite from WPT. | |||
2021-02-26 | chore: simplify internal dependencies between crates (#9600) | Divy Srivastava | |
2021-02-22 | chore: upgrade internal dprint plugins (#9566) | Satya Rohith | |
Co-authored-by: David Sherret <dsherret@gmail.com> | |||
2021-02-18 | feat: add json(c) support to deno fmt (#9292) | Satya Rohith | |
This commit adds support for formatting JSON and JSONC in "deno fmt". New values "json" and "jsonc" are added to "--ext" flag for standard input processing. | |||
2021-02-13 | v1.7.4 | Ryan Dahl | |
2021-02-12 | v1.7.3 | Bartek Iwańczuk | |
2021-02-12 | chore: release crates (#9481) | Bartek Iwańczuk | |
2021-02-11 | chore: upgrade crates (#9474) | Bartek Iwańczuk | |
2021-02-09 | chore: update dependencies (#9455) | Luca Casonato | |