Commit Graph

2171 Commits

Author SHA1 Message Date
Jakub Novak ae4dd41d8d Pnpm lock 2023-11-09 17:08:27 +01:00
Jakub Novak 77a992cbf8 Clean up list command 2023-11-09 17:05:32 +01:00
Jakub Novak 4344c61298 Clean up shell command 2023-11-09 17:05:28 +01:00
Jakub Novak 3c2fc9faf5 Regenerate clients 2023-11-09 17:04:18 +01:00
Jakub Novak 0486c4286d Use the new name for template if rebuilding 2023-11-09 17:03:56 +01:00
Jakub Novak 975aaa8385 Remove console log from shell 2023-11-09 17:03:56 +01:00
Jakub Novak ba39da6f92 Fix missing name 2023-11-09 17:03:54 +01:00
Tomas Valenta 6b3fbe8858 Fix field name 2023-11-09 17:03:11 +01:00
Jakub Novak 2feef49e34 Improve CLI 2023-11-09 17:03:09 +01:00
Jakub Novak 1908ae2d30 List sandbox templates with aliases 2023-11-09 16:57:29 +01:00
Tomas Valenta 2891479571 Add alias/name handling to CLI 2023-11-09 16:56:27 +01:00
Vasek Mlejnsky f751dd26f6 Rename premade sandboxes 2023-11-09 16:43:10 +01:00
Vasek Mlejnsky 91ab9a69bd Update docs 2023-11-09 14:33:56 +01:00
Vasek Mlejnsky 7dd126085b Update docs 2023-11-09 14:24:45 +01:00
Vasek Mlejnsky 3685399b53 Update docs 2023-11-09 14:23:51 +01:00
Vasek Mlejnsky e68e91d671 Merge branch 'main' of https://github.com/e2b-dev/e2b 2023-11-09 14:11:10 +01:00
Vasek Mlejnsky 1fc0e70fbf Update docs 2023-11-09 14:10:20 +01:00
github-actions[bot] 17bc75cd0b [skip ci] Release new versions 2023-11-09 12:45:56 +00:00
Vasek Mlejnsky b5128ced37 changeset @e2b/python-sdk@0.10.6 2023-11-09 13:41:23 +01:00
Vasek Mlejnsky 84303af574 Merge branch 'main' of https://github.com/e2b-dev/e2b 2023-11-09 13:40:03 +01:00
Vasek Mlejnsky 731a50ff32 Update readmes 2023-11-09 13:39:58 +01:00
github-actions[bot] 962df82121 [skip ci] Release new versions 2023-11-09 12:36:07 +00:00
Vasek Mlejnsky a33042561d changeset @e2b/cli@0.1.3 @e2b/sdk@0.8.4 @e2b/python-sdk@0.10.5 2023-11-09 13:31:33 +01:00
Vasek Mlejnsky c42077a8e4 update readmes 2023-11-09 13:29:52 +01:00
Vasek Mlejnsky c512a1ec92 update readme 2023-11-09 13:26:46 +01:00
Vasek Mlejnsky 3076af0c35 update readme 2023-11-09 13:16:23 +01:00
Vasek Mlejnsky 6f49c56ae0 update readme 2023-11-09 13:15:31 +01:00
Vasek Mlejnsky d3006fc02a update readme 2023-11-09 13:13:45 +01:00
Vasek Mlejnsky d699cc7b29 update readme 2023-11-09 13:07:35 +01:00
Vasek Mlejnsky 41f47ef3ba Merge branch 'main' of https://github.com/e2b-dev/e2b 2023-11-09 13:05:02 +01:00
Vasek Mlejnsky 2412ce7887 update readme 2023-11-09 13:04:56 +01:00
github-actions[bot] 7ff7eecaf5 [skip ci] Release new versions 2023-11-09 11:55:30 +00:00
Tomas Valenta 6601a4d3fa Alias DataAnalysis as CodeInterpreter & Hide JS SDK internal methods (#217) @e2b/sdk@0.8.3 @e2b/python-sdk@0.10.4 2023-11-09 12:50:31 +01:00
Tomas Valenta 94f9d6efd3 Merge branch 'main' into code-interpreter 2023-11-09 12:49:15 +01:00
Tomas Valenta 2b77f0a6a6 Create release 2023-11-09 12:46:13 +01:00
Tomas Valenta 1e3312467d Alias DataAnalysis as CodeInterpreter; Hide JS SDK internal methods 2023-11-09 12:45:24 +01:00
Vasek Mlejnsky 6cc3c95341 Merge branch 'main' of https://github.com/e2b-dev/e2b 2023-11-09 12:36:25 +01:00
Vasek Mlejnsky cf6b3cf235 Update docs & readme 2023-11-09 12:36:18 +01:00
github-actions[bot] 7a8dadf1b9 [skip ci] Release new versions 2023-11-09 10:14:33 +00:00
Jakub Novák f1263f1469 Aliasing (#216) @e2b/python-sdk@0.10.3 @e2b/sdk@0.8.2 2023-11-09 11:09:43 +01:00
Jakub Novak 9b3a162b39 Update openapi spec 2023-11-09 11:09:17 +01:00
Jakub Novak 2e1da46935 Update openapi spec 2023-11-09 11:06:37 +01:00
Jakub Novak 661b4a82be Regenerate python api client 2023-11-09 11:01:30 +01:00
Tereza Tizkova 6debe4d671 Update docs 2023-11-09 10:29:34 +01:00
github-actions[bot] 52d1b51df4 [skip ci] Release new versions 2023-11-09 09:17:47 +00:00
Tomas Valenta 9388a4e990 Fix backwards compatibility for union (#214)
In python 3.9 and below you can't do something like str | None in the
type definition of a function's arguments. However, this can be fixed by
using __future__.

Python stores the annotations as strings and doesn't try to evaluate
them. This allows you to write type hints using Python 3.10's syntax in
a Python 3.9 environment. When the code is actually run, the annotations
aren't evaluated, so there's no issue with the interpreter not
understanding the | operator for union types.

I checked and the | is only in this one file, elsewhere we are using Union. I replaced the | with Unions to make it consistent.
@e2b/python-sdk@0.10.2
2023-11-09 10:13:00 +01:00
Tomas Valenta 521495d23f Create release 2023-11-09 10:11:01 +01:00
Tomas Valenta f829f88608 Replace | with Union 2023-11-09 10:05:29 +01:00
Kaveen Kumarasinghe d63fe3523f Use __future__ annotation to fix backwards compatibility for union 2023-11-08 23:50:10 -05:00
Vasek Mlejnsky cbc9f45f3b update docs 2023-11-08 17:41:28 +01:00