Fix `https` behaviour in fish (#1611) Using the name `https` to invoke HTTPie should make HTTPie default to the https:// scheme, but using a fish function to replace invocations of `https` with invocations of `http` defeats this behaviour. Instead, just tell fish to complete `https` in the same way as `http`.
Recent Commits to httpie:master
-
Fix `https` behaviour in fish (#1611)
-
[automated] Update generated content (#1607)
[automated] Update generated content (#1607) Co-authored-by: jkbrzt <jkbrzt@users.noreply.github.com>
-
3.2.4
3.2.4
-
Update test.yml
Update test.yml
-
Fix/refactor default cert loading
Fix/refactor default cert loading
-
Cleanup default cert loading
Cleanup default cert loading
-
Explicitly load default certificates when creating SSL context (#1583…
Explicitly load default certificates when creating SSL context (#1583) (#1596) * Explicitly load default certificates when creating SSL context (#1583) Requests prior to 2.32.3 always loaded the default (system-wide) set of trusted certificates into custom SSL contexts. 2.32.3 no longer does. This has broken a lot of users, but the fix is moving slowly upstream due to security considerations - see https://github.com/psf/requests/issues/6730 and https://github.com/psf/requests/pull/6731 . As suggested at https://github.com/psf/requests/pull/6710#issuecomment-2137802782 this can be worked around by explicitly loading the default certificates into the context. We check the method exists before calling it just to be safe, it was added in Python 3.4. Signed-off-by: Adam Williamson <awilliam@redhat.com> * Drop the upper bound on the requests dependency again As we can now work with requests 2.32.3+, we no longer need this pin. Signed-off-by: Adam Williamson <awilliam@redhat.com> --------- Signed-off-by: Adam Williamson <awilliam@redhat.com>
-
Fix link to CurliPie tool (#1582)
Fix link to CurliPie tool (#1582) * Fix link to CurliPie tool * Use the link to web version for CurliPie Co-authored-by: Jan Brasna <1784648+janbrasna@users.noreply.github.com> --------- Co-authored-by: Jan Brasna <1784648+janbrasna@users.noreply.github.com>
-
Added an alias for HTTPS in fish completions (#1598)
Added an alias for HTTPS in fish completions (#1598) Ensure that fish completion is working with the `https` command. It just wraps the identical completions from `http` to `https`.
-
Update the raw json fields example (#1606)
Update the raw json fields example (#1606)
-
Update the Forms section of README.md (#1593)
Update the Forms section of README.md (#1593) The Forms section of README.md was missing what the data fields are serialized as.
-
Expand HTTP method docs
Expand HTTP method docs * mention `POST` without a body * mention `GET` with a body * mention custom method names * include examples for default `GET`/`POST`