You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
576: Fix local dolt server issues
This PR fixes a few things:
#571 - this was caused by a breaking change to electron that causes any folder named "databases" in the system userData directory to be deleted on app startup. This is the directory we use to store internal dolt connections in the workbench production build. I changed the folder name to "connections".
Previously if you tried to create a new database on an internal dolt connection from within the workbench (either through the dropdown or by running SQL), it would create the new database inside the directory for whatever database was currently being used. This was causing some weird behavior. To fix it, I'm making sure we always run dolt sql-server from the connections directory rather than the actual database directory.
575: Add quotes around table name to avoid syntax errors
Addressing #574
567: Only allow one internal dolt server
This fixes #491.
Prevents users from creating a new internal dolt connection from the clone option if one already exists.
560: Add a developer guide with the full release process steps
Added a third option for "Connect to an existing Dolt server"
Using radios now instead of checkboxes
542: Add More Cypress Tests
All the features from this blog should have at least one test now. I also reorganized the folder structure a little bit to be more in line with how things are set up for the dolthub-cypress tests.
541: web,graphql: Fix null values in conflicts table, works with doltgres