Update to 4.1.0-SNAPSHOT.

This commit is contained in:
jcamiel 2023-06-29 16:05:31 +02:00
parent 3cad4e38b4
commit 0f1a9f80fb
No known key found for this signature in database
GPG Key ID: 07FF11CFD55356CC
12 changed files with 39 additions and 21 deletions

View File

@ -351,7 +351,7 @@ jobs:
GITHUB_TOKEN=${{ secrets.HURL_BOT_TOKEN }}
{
echo "⚠ This is a GitHub releasing PR."
echo "- Please use \`/accept --release\` if you want to automatically update master branch to next SNAPSHOT version"
echo "- Please use \`/accept\` as usual then run the \`update-branch-version\` github workflow if you want to automatically update master branch to next SNAPSHOT version"
} > file-body.txt
gh pr create \
--title "Merge GitHub ${{ needs.set-context.outputs.release_branch }} into ${{ github.ref_name }}" \

14
Cargo.lock generated
View File

@ -507,7 +507,7 @@ checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46"
[[package]]
name = "hurl"
version = "4.0.0"
version = "4.1.0-SNAPSHOT"
dependencies = [
"atty",
"base64",
@ -543,7 +543,7 @@ dependencies = [
[[package]]
name = "hurl_core"
version = "4.0.0"
version = "4.1.0-SNAPSHOT"
dependencies = [
"float-cmp",
"regex",
@ -552,7 +552,7 @@ dependencies = [
[[package]]
name = "hurlfmt"
version = "4.0.0"
version = "4.1.0-SNAPSHOT"
dependencies = [
"atty",
"base64",
@ -839,9 +839,9 @@ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
[[package]]
name = "quote"
version = "1.0.28"
version = "1.0.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488"
checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
dependencies = [
"proc-macro2",
]
@ -1311,9 +1311,9 @@ dependencies = [
[[package]]
name = "windows-targets"
version = "0.48.0"
version = "0.48.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
dependencies = [
"windows_aarch64_gnullvm 0.48.0",
"windows_aarch64_msvc 0.48.0",

View File

@ -108,7 +108,7 @@ SOAPAction: "http://www.w3.org/2003/05/soap-envelope"
HTTP 200
```
Hurl can also be used to performance test HTTP endpoints:
Hurl can also be used to test the <b>performance</b> of HTTP endpoints
```hurl
GET https://example.org/api/v1/pets
@ -118,7 +118,7 @@ HTTP 200
duration < 1000 # Duration in ms
```
And response bytes
And check response bytes
```hurl
GET https://example.org/data.tar.gz
@ -128,6 +128,12 @@ HTTP 200
sha256 == hex,039058c6f2c0cb492c533b0a4d14ef77cc0f78abccced5287d84a1a2011cfb81;
```
Finally, Hurl is easy to <b>integrate in CI/CD</b>, with text, JUnit and HTML reports
<div class="home-html-report">
<img class="light-img u-drop-shadow u-border" src="/docs/assets/img/home-waterfall-light.png" alt="HTML report"/>
<img class="dark-img u-drop-shadow u-border" src="/docs/assets/img/home-waterfall-dark.png" alt="HTML report"/>
</div>
# Why Hurl?

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -106,7 +106,7 @@ SOAPAction: "http://www.w3.org/2003/05/soap-envelope"
HTTP 200
```
Hurl can also be used to performance test HTTP endpoints:
Hurl can also be used to test the <b>performance</b> of HTTP endpoints
```hurl
GET https://example.org/api/v1/pets
@ -116,7 +116,7 @@ HTTP 200
duration < 1000 # Duration in ms
```
And response bytes
And check response bytes
```hurl
GET https://example.org/data.tar.gz
@ -126,6 +126,12 @@ HTTP 200
sha256 == hex,039058c6f2c0cb492c533b0a4d14ef77cc0f78abccced5287d84a1a2011cfb81;
```
Finally, Hurl is easy to <b>integrate in CI/CD</b>, with text, JUnit and HTML reports
<div class="home-html-report">
<img class="light-img u-drop-shadow u-border" src="/docs/assets/img/home-waterfall-light.png" alt="HTML report"/>
<img class="dark-img u-drop-shadow u-border" src="/docs/assets/img/home-waterfall-dark.png" alt="HTML report"/>
</div>
# Why Hurl?

View File

@ -1,4 +1,4 @@
.TH hurl 1 "28 Jun 2023" "hurl 4.0.0" " Hurl Manual"
.TH hurl 1 "29 Jun 2023" "hurl 4.1.0-SNAPSHOT" " Hurl Manual"
.SH NAME
hurl - run and test HTTP requests.

View File

@ -1,4 +1,4 @@
.TH hurl 1 "28 Jun 2023" "hurl 4.0.0" " Hurl Manual"
.TH hurl 1 "29 Jun 2023" "hurl 4.1.0-SNAPSHOT" " Hurl Manual"
.SH NAME
hurlfmt - format Hurl files

View File

@ -1,6 +1,6 @@
[package]
name = "hurl"
version = "4.0.0"
version = "4.1.0-SNAPSHOT"
authors = ["Fabrice Reix <fabrice.reix@orange.com>"]
edition = "2021"
license = "Apache-2.0"
@ -31,7 +31,7 @@ float-cmp = "0.9.0"
glob = "0.3.1"
hex = "0.4.3"
hex-literal = "0.4.1"
hurl_core = { version = "4.0.0", path = "../hurl_core" }
hurl_core = { version = "4.1.0-SNAPSHOT", path = "../hurl_core" }
indexmap = "1.9.3"
libflate = "1.4.0"
libxml = "0.3.2"

View File

@ -108,7 +108,7 @@ SOAPAction: "http://www.w3.org/2003/05/soap-envelope"
HTTP 200
```
Hurl can also be used to performance test HTTP endpoints:
Hurl can also be used to test the <b>performance</b> of HTTP endpoints
```hurl
GET https://example.org/api/v1/pets
@ -118,7 +118,7 @@ HTTP 200
duration < 1000 # Duration in ms
```
And response bytes
And check response bytes
```hurl
GET https://example.org/data.tar.gz
@ -128,6 +128,12 @@ HTTP 200
sha256 == hex,039058c6f2c0cb492c533b0a4d14ef77cc0f78abccced5287d84a1a2011cfb81;
```
Finally, Hurl is easy to <b>integrate in CI/CD</b>, with text, JUnit and HTML reports
<div class="home-html-report">
<img class="light-img u-drop-shadow u-border" src="/docs/assets/img/home-waterfall-light.png" alt="HTML report"/>
<img class="dark-img u-drop-shadow u-border" src="/docs/assets/img/home-waterfall-dark.png" alt="HTML report"/>
</div>
# Why Hurl?

View File

@ -1,6 +1,6 @@
[package]
name = "hurl_core"
version = "4.0.0"
version = "4.1.0-SNAPSHOT"
authors = ["Fabrice Reix <fabrice.reix@orange.com>"]
edition = "2021"
license = "Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "hurlfmt"
version = "4.0.0"
version = "4.1.0-SNAPSHOT"
authors = ["Fabrice Reix <fabrice.reix@orange.com>"]
edition = "2021"
license = "Apache-2.0"
@ -18,7 +18,7 @@ atty = "0.2.14"
base64 = "0.21.2"
clap = { version = "4.3.9", features = ["cargo", "wrap_help"] }
colored = "2.0.0"
hurl_core = { version = "4.0.0", path = "../hurl_core" }
hurl_core = { version = "4.1.0-SNAPSHOT", path = "../hurl_core" }
regex = "1.8.4"
[dev-dependencies]