Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
cedric05 authored Oct 24, 2024
1 parent c6c242a commit 43591ae
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
41 changes: 41 additions & 0 deletions blog/2024-03-16-dothttp-extensions-1.0.20-1.0.26.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
title: dothttp-runner 1.0.20 - 1.0.26 Release Notes
author: Prasanth
author_url: https://github.com/cedric05
tags: [dothttp-runner, vscode]
description: Updates on the latest extension releases.
hide_table_of_contents: false
---


## 1.0.26
- Fix build issues

## 1.0.25
- Update dotextensions-build to 0.0.43-a23
- Allows user to use arthematic expressions in json payload
- Fix linux arm64 extension: packages correct platform version of dotextensions-build
- Update dependent packages
- yauzl to 3.1.3
- jsonc-parser to 3.3.1

## 1.0.24-1.0.23
- Keep history of cell response for comparision.
- max number of responses to keep in notebook can be configured by `dothttp.conf.notebook.numofresponses`.
- if `0`, it keeps all, default is five.
- Update dependent packages
- follow-redirects to 1.15.8
- @types/node to 22.5.2
- @types/lodash to 4.17.7

## 1.0.22
- Update dotextensions-build/cli to 0.0.43a16
- Updates dependent packages (requests, msal, faker, certifi, urllib3)

## 1.0.21
- Update dotextensions-build/cli to 0.0.43a14
- Updates dependent packages

## 1.0.20
- Update dotextensions-build/cli to 0.0.43a13
- Fix Azure Cli Login
19 changes: 19 additions & 0 deletions docs/request-basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,3 +300,22 @@ Dothttp allows you to save the HTTP response directly to a file. To do this, sim
GET "https://req.dothttp.dev"
>> "/tmp/out.resp.txt"
```


### Math expressions

dothttp can expand simple arthematic expressions in json if they are in braces in json.

#### Example:

```http
POST "https://req.dothttp.dev"
json(
{
"wait_time": (3*60), // 3 minutes in seconds,
"print": "hai",
}
)
above is a simple example but it helps simplify reading/making requests

0 comments on commit 43591ae

Please sign in to comment.