Sagar Vrajalal
Sagar Vrajalal
The documentation states : `Run 'down' for the last migration that was run.` Which would mean it should roll back the last migration that was **applied**. Instead, I find that...
Most GraphQL client libraries have moved on from using the `subscriptions-transport-ws` (which is no longer maintained) implementation in favour of `graphql-ws` for subscriptions. This causes compatibility issues, as in our...
Given a table definition such as : ```sql create table sample_relation ( id text not null, b_id int not null, c_id int, unique(id, b_id, c_id), foreign key (id) references sample_relation_2(id),...
1.2.0 introduced https://github.com/weavejester/environ/pull/78, which we later found out had some undesirable side effects, most notably the logging of secrets. This will keep us on 1.1.0 Could we consider introducing an...
Printing help text is currently facilitated using functions such as `format-opts` and `format-table`, which might suffice for simple applications. But it quickly gets complicated when we have layers of nested...