1. 02 10月, 2019 5 次提交
  2. 01 10月, 2019 3 次提交
  3. 29 9月, 2019 2 次提交
  4. 28 9月, 2019 1 次提交
  5. 26 9月, 2019 1 次提交
  6. 25 9月, 2019 5 次提交
  7. 24 9月, 2019 2 次提交
  8. 23 9月, 2019 1 次提交
  9. 21 9月, 2019 2 次提交
    • R
      dial/listen API change (#3000) · 97bb2bdb
      Ryan Dahl 提交于
      Previously: dial("tcp", "deno.land:80")
      Now: dial({ hostname: "deno.land", port: 80, transport: "tcp" })
      Similarly with listen().
      97bb2bdb
    • B
      js: reschedule global timer if it fires earlier than expected (#2989) · 93b7acf9
      Bert Belder 提交于
      When the global timer fires earlier than expected, which apparently
      happens sometimes on server editions of Windows, we didn't call any
      setTimeout callbacks, but we *also* didn't reschedule the global timer
      to fire again later.
      
      When this situation occurred it would make deno exit abruptly if there
      were no other asynchronous ops running on the event loop. It could also
      lead to application hangs if the upcoming setTimeout callback was
      critical for the application to make progress.
      93b7acf9
  10. 20 9月, 2019 4 次提交
  11. 19 9月, 2019 6 次提交
  12. 18 9月, 2019 4 次提交
  13. 17 9月, 2019 3 次提交
  14. 16 9月, 2019 1 次提交
    • B
      Use more ergonomic submodule names · 2788b5d4
      Bert Belder 提交于
      Change submodule names to match the name of the corresponding github
      repository, which is easier to remember than using the full path where
      the submodule is (or used to be) checked out.
      2788b5d4