Commit Graph

2727 Commits

Author SHA1 Message Date
Tomas Valenta f511678b5e Fix sandbox kill command (#344)
CLI `e2b sandbox kill` command didn't work with sandboxIDs provided by
the `e2b sandbox list`. This PR fixes that.
@e2b/cli@0.4.2
2024-03-26 20:53:13 -07:00
Tomas Valenta 3b41654900 Fix sandbox kill command 2024-03-26 20:38:26 -07:00
Jakub Novak 13c499c907 Hide access token when the login fails 2024-03-25 18:50:16 -07:00
Tomas Valenta 1385b2fe3d Merge branch 'main' of https://github.com/e2b-dev/E2B 2024-03-25 17:04:59 -07:00
Tomas Valenta f73c342307 Reformat 2024-03-25 13:21:41 -07:00
github-actions[bot] 96df688e67 [skip ci] Release new versions 2024-03-25 19:55:16 +00:00
Jakub Novak a725c8f7d4 Add changeset e2b@0.13.1 2024-03-25 12:49:30 -07:00
Jakub Novak 1d1365e9c1 Allow easier subclassing in JS 2024-03-25 12:48:56 -07:00
github-actions[bot] 6c0bc9a5fd [skip ci] Release new versions 2024-03-24 18:51:18 +00:00
Jakub Novak f81298d9cd Remove flaky test @e2b/cli@0.4.1 2024-03-24 11:46:53 -07:00
Jakub Novak 71a1129e67 Fix hardcoded variables 2024-03-24 11:35:43 -07:00
github-actions[bot] 12dc14de57 [skip ci] Release new versions 2024-03-24 17:51:59 +00:00
Jakub Novák 2bafaf0db4 Switch the template build to local (#338)
Change CLI to build the docker image locally
e2b@0.13.0 @e2b/python-sdk@0.14.12 @e2b/cli@0.4.0
2024-03-24 10:12:43 -07:00
github-actions[bot] bd5874f77a [skip ci] Release new versions 2024-03-13 07:49:11 +00:00
Tomas Valenta aca7f58867 Raise proper exception on process.wait timeout (#336) @e2b/python-sdk@0.14.11 2024-03-13 00:28:15 -07:00
Tomas Valenta 720b80bee9 Create release 2024-03-13 00:24:48 -07:00
Tomas Valenta 8a993ce7eb Raise proper timeout exception 2024-03-13 00:23:57 -07:00
github-actions[bot] 72f5367f72 [skip ci] Release new versions 2024-03-13 07:09:08 +00:00
Tomas Valenta a5c531aa2c Export all errors and exceptions (#335) e2b@0.12.7 @e2b/python-sdk@0.14.10 2024-03-13 00:04:12 -07:00
Tomas Valenta 3fc359696e Create release 2024-03-13 00:03:31 -07:00
Tomas Valenta c8966d08d9 Export all errors 2024-03-13 00:03:04 -07:00
Tomas Valenta c0ee54cb7d Export all exceptions 2024-03-13 00:02:57 -07:00
github-actions[bot] 6b456ffe7d [skip ci] Release new versions 2024-03-09 00:06:54 +00:00
Jakub Novak b5cf7d518b Fix release pipeline e2b@0.12.6 @e2b/cli@0.3.5 2024-03-08 15:55:04 -08:00
Jakub Novak 67da0ed8af Add download method in JS SDK 2024-03-08 15:35:53 -08:00
Vasek Mlejnsky 2d84d07f51 Add reset password link (#333) 2024-03-08 19:26:53 +01:00
Vasek Mlejnsky d39711157b Add reset password link 2024-03-08 19:23:19 +01:00
Vasek Mlejnsky b38c8f5e26 Change auth buttons to links (#332) 2024-03-08 07:18:45 +01:00
Vasek Mlejnsky 1342fe0c65 Remove unused file 2024-03-08 07:04:42 +01:00
Vasek Mlejnsky 7f29af33ae Add redirect parameter 2024-03-08 07:04:17 +01:00
Vasek Mlejnsky 2ec1a864ec Use links to redirect to auth instead of buttons 2024-03-08 06:51:26 +01:00
Vasek Mlejnsky 81e4f292a9 Change auth buttons to links in header 2024-03-08 06:42:40 +01:00
Vasek Mlejnsky 9fa4aff2ea Fix linter error typing (#330) 2024-03-07 09:18:01 +01:00
Vasek Mlejnsky 7d1a204993 Fix typing 2024-03-07 09:13:01 +01:00
Vasek Mlejnsky a422d59bc8 Fix e2b CLI commands (#329)
The custom sandbox guide was using old E2B cli commands
2024-03-07 09:06:26 +01:00
Vasek Mlejnsky 346d0b9f8b Add note about sandbox compute 2024-03-07 09:03:14 +01:00
Vasek Mlejnsky 4c475922c7 Fix e2b CLI commands 2024-03-07 08:59:33 +01:00
Jakub Novak 74d2dc4dbc Don't set result if already set 2024-03-04 19:44:13 -08:00
Tomas Valenta 959e9f788b Add email authentication (#321)
So far we only had sign up/sign in via GitHub. With this PR we are
adding email sign up/sign.

I started using Supabase Auth UI, because there is starting to be a lot
of auth UI we would need to handle (having auth inputs, choosing between
different providers, sign up flow…) and we can get it for free now.

What is missing:
- [x] Testing with GH — I think I configured it correctly, but haven’t
tested it yet
- [x] Customize style of the supabase auth ui (it should be possible to
override anything) to match our docs style
- [x] Decide if we want to put the auth ui on a completely separate page
(we may have to move the app router layout?)
- [x] Make sure the sign up and sign in buttons flow still makes sense
and works — sign up should redirect to the actual sign up version of the
auth ui, but the #auth-sign-up that should be used seems not to be
working correctly with router.push yet :thinking_face:
  - [x] Fix redirecting to the same url (test in prod)
  - [x] Fix redirecting to sign up
- [ ] _Customize Supabase auth emails, confirm email_
- [ ] _Styling of "confirmation email" and "wrong password"
announcements_
- [ ] _Enable reset password again_
- [x] Redirect on confirmation email
- [x] Set SMTP
- [x] Check if all the analytics are still in correct place
- [x] Fix hydration errors
- [ ] _Test signing in with the same email for another existing account
created via GitHub_
- [x] Make auth urls more readable
- [x] Check if pathnames are correctly encoded
2024-03-02 18:56:06 -08:00
Tomas Valenta 6482514f88 Fix auth message styling 2024-03-02 18:52:09 -08:00
Tomas Valenta 012201791c Fix encoding; Disable reset 2024-03-02 18:36:26 -08:00
Tomas Valenta ab9b99f1fc Encode params 2024-03-02 18:36:26 -08:00
Tomas Valenta 41ce420508 Improve auth styling 2024-03-02 18:36:26 -08:00
Tomas Valenta a13f1ab899 Improve auth styling 2024-03-02 18:36:26 -08:00
Vasek Mlejnsky fe02a6b9a3 Style the auth form 2024-03-02 18:36:26 -08:00
Tomas Valenta 1c67f09ad8 Add customization link 2024-03-02 18:36:26 -08:00
Tomas Valenta 00ca7f94fa Remove unused file 2024-03-02 18:36:26 -08:00
Tomas Valenta 1c9c0d2805 Improve auth layout; Fix redirects and sign up links 2024-03-02 18:36:26 -08:00
Tomas Valenta 75185047ea [WIP] Redirect after sign in 2024-03-02 18:36:26 -08:00
Tomas Valenta ec39070f93 [WIP] Add email auth 2024-03-02 18:36:26 -08:00