repo
stringlengths
5
53
pr_number
int32
1
321k
task_type
stringclasses
2 values
issue_text
stringlengths
0
81.2k
pr_title
stringlengths
1
319
pr_body
stringlengths
0
105k
base_sha
stringlengths
40
40
head_sha
stringlengths
40
40
gold_diff
stringlengths
0
202M
changed_files
listlengths
0
100
review_threads
listlengths
0
100
test_patch
stringlengths
0
23.4M
merged
bool
1 class
OpenMathLib/OpenBLAS
5,772
issue_to_patch
Update the Changelog for 0.3.33
c7356182f49e3a91a580251d981aee5b2d972bfe
81bf61b118438d3ef23a5cb2c7d77fb3e4336f6c
diff --git a/Changelog.txt b/Changelog.txt index 20c76ff522..ee7701de1d 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,4 +1,54 @@ OpenBLAS ChangeLog +==================================================================== +Version 0.3.33 +23-Apr-2026 + +general: + - fixed an incorrect cast in the SBGEMM test case t...
[ "Changelog.txt" ]
[]
true
OpenMathLib/OpenBLAS
5,771
issue_to_patch
Fix EXTERNAL declarations in CLARF1F and ZUPMTR (Reference-LAPACK PR 1257)
07e7594ffe38aaddae2c7f6b88b843bbbaacb35a
70d1c2f7b268df09c68546b0c4270ac4ee1abf43
diff --git a/lapack-netlib/SRC/clarf1f.f b/lapack-netlib/SRC/clarf1f.f index cb9fc47ee1..b5d4e47a46 100644 --- a/lapack-netlib/SRC/clarf1f.f +++ b/lapack-netlib/SRC/clarf1f.f @@ -150,7 +150,7 @@ SUBROUTINE CLARF1F( SIDE, M, N, V, INCV, TAU, C, LDC, WORK ) INTEGER I, LASTV, LASTC * .. * .. Ex...
[ "lapack-netlib/SRC/clarf1f.f", "lapack-netlib/SRC/zupmtr.f" ]
[]
true
OpenMathLib/OpenBLAS
5,769
issue_to_patch
Build failure on macOS with CMake + Ninja When building OpenBLAS on macOS with `Ninja` as the generator the build will fail due to the response file workaround in `CMakeLists.txt`. This is because Ninja doesn't generate the same `.rsp` response files that a `Makefile` generated by CMake would. This then has two conseq...
Fix CMake builds on Apple that use the Ninja generator
fixes #5768 as suggested there
9a46ffba36180df872523fc43fa3e9091d050deb
c1bb49dc51cfae066f5ddc7d2b6f0882f4fa4d31
diff --git a/CMakeLists.txt b/CMakeLists.txt index e968acc94f..797b4b7cbe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -309,8 +309,8 @@ if (USE_OPENMP) endif() # Fix "Argument list too long" for macOS - mostly seen with older OS versions on POWERPC or Intel CPUs -if(APPLE) - # Use response files +if(APPLE ...
[ "CMakeLists.txt" ]
[]
true
OpenMathLib/OpenBLAS
5,770
issue_to_patch
Undefine GEMM_PREFERRED_SIZE before redefining to silence warning
9a46ffba36180df872523fc43fa3e9091d050deb
54b939e4e385c79329f3c65ddda987f35b14861a
diff --git a/driver/level3/level3_thread.c b/driver/level3/level3_thread.c index 83403aef70..2657bbcfbe 100644 --- a/driver/level3/level3_thread.c +++ b/driver/level3/level3_thread.c @@ -48,6 +48,7 @@ #endif #ifdef DYNAMIC_ARCH +#undef GEMM_PREFERRED_SIZE #define GEMM_PREFERRED_SIZE gotoblas->preferred_size #endi...
[ "driver/level3/level3_thread.c" ]
[]
true
OpenMathLib/OpenBLAS
5,767
issue_to_patch
SME1 strmm implementation sometimes leaves output unchanged When called with `CblasNonUnit` on ARM, `cblas_strmm` appears to leave its output unchanged. This can be reproduced with the following C code: ```c #include <cblas.h> #include <stdio.h> void print_matrix(float* mat, uint8_t rows, uint8_t cols) { for (ui...
Fix ARM64 DYNAMIC_ARCH unconditionally branching into the SME code for STRMM
fixes #5763 by moving the unrelated quick return that had become the spurious target of the corename check
9a46ffba36180df872523fc43fa3e9091d050deb
59cfea08592d274912a4a789f82a7e2fb3a87d65
diff --git a/interface/symm.c b/interface/symm.c index ea00217050..4f51f9faf7 100644 --- a/interface/symm.c +++ b/interface/symm.c @@ -374,6 +374,7 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_SIDE Side, enum CBLAS_UPLO Uplo, return; } + if (args.m == 0 || args.n == 0) return; #if !defined(COMPLEX) && ...
[ "interface/symm.c", "interface/trsm.c" ]
[]
true
OpenMathLib/OpenBLAS
5,766
issue_to_patch
Optimize ?LACPY/?LASCL/?LANTR looping in fat matrix cases with UPLO=L (Reference-LAPACK PR 1251)
41dbca901eeab21fc182f427ead352fcdc7f93ac
775f467be64ecc1b6668a588367c79f7eee57c61
diff --git a/lapack-netlib/SRC/clacpy.f b/lapack-netlib/SRC/clacpy.f index ab4404a29a..0e1a88e70a 100644 --- a/lapack-netlib/SRC/clacpy.f +++ b/lapack-netlib/SRC/clacpy.f @@ -5,7 +5,6 @@ * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * -*> \htmlonly *> Download CLAC...
[ "lapack-netlib/SRC/clacpy.f", "lapack-netlib/SRC/clantr.f", "lapack-netlib/SRC/clascl.f", "lapack-netlib/SRC/dlacpy.f", "lapack-netlib/SRC/dlantr.f", "lapack-netlib/SRC/dlascl.f", "lapack-netlib/SRC/slacpy.f", "lapack-netlib/SRC/slantr.f", "lapack-netlib/SRC/slascl.f", "lapack-netlib/SRC/zlacpy.f"...
[]
true
OpenMathLib/OpenBLAS
5,765
issue_to_patch
cc.cmake assumes GCC_VERSION, causing build failure with NVHPC Hello, I am trying to build OpenBLAS with NVHPC on anIntel Sapphire Rapids system, and I am running into issues in `cc.cmake`. With this setup, the following section is triggered: https://github.com/OpenMathLib/OpenBLAS/blob/02dc625d42ad3ccb61d2e47c073...
Disable gcc-specific version checks for NVIDIA HPC in CMake builds
fixes #5764
02dc625d42ad3ccb61d2e47c073741614c01dea6
c87e4fca72e81a17290fed8fa5bece2aebed4d19
diff --git a/cmake/cc.cmake b/cmake/cc.cmake index 27afd357a5..bacdbef5af 100644 --- a/cmake/cc.cmake +++ b/cmake/cc.cmake @@ -113,6 +113,7 @@ if (${CMAKE_C_COMPILER_ID} STREQUAL "PGI") endif () if (${CMAKE_C_COMPILER_ID} STREQUAL "NVHPC") + set (GCC_VERSION 100) if (POWER) set(CCOMMON_OPT "${CCOMMON_OPT} ...
[ "cmake/cc.cmake" ]
[]
true
OpenMathLib/OpenBLAS
5,762
issue_to_patch
Security Enhancement: Buffer Overflow Prevention in openblas_get_config.c Problem 1: ```tmp_config_str``` is 256 chars max. If attacker manages to make ```openblas_config_str``` + ```gotoblas_config_str``` + ```tmpstr``` to be more than or equal to 256 chars (e.g. by manipulating VERSION attribute), it opens a window ...
Guard against eventual overflow of the config string
fixes #5750
b8bb6d08f76fdaa66d4847307927b58cc7a99c1e
6f0dfd52763e9f17047492348b49ee90a08457a7
diff --git a/driver/others/openblas_get_config.c b/driver/others/openblas_get_config.c index ff52cfba8f..4a424b49ec 100644 --- a/driver/others/openblas_get_config.c +++ b/driver/others/openblas_get_config.c @@ -80,9 +80,9 @@ int openblas_get_parallel(void); char* CNAME(void) { char tmpstr[20]; - strcpy(tmp_config_...
[ "driver/others/openblas_get_config.c" ]
[]
true
OpenMathLib/OpenBLAS
5,759
issue_to_patch
Add CPU ID for Neoverse V3
The PR which added NeoverseV3 detection to openBLAS includes the V3AE variant, but not V3. This patch includes the missing cpuid and labels the V3 variants. This ensures that Neoverse V3 will use existing V2 kernels rather than falling back to ARMV8SVE.
330abcd5a991328bc900963d7bffebde33c80c43
5f4a5b323d2aff1e2e470a9afc455c4ed632f7b7
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d1424b2777..cea42764bc 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -275,3 +275,6 @@ In chronological order: * Fadi Arafeh <fadi.arafeh@arm.com> * [2026-03-05] Accelerate SVE128 SBGEMM/BGEMM + +* Nathan Sircombe <nathan.sircombe@arm.com> + * [2026-04-...
[ "CONTRIBUTORS.md", "README.md", "driver/others/dynamic_arm64.c" ]
[]
true
OpenMathLib/OpenBLAS
5,761
issue_to_patch
Add part code for NeoverseV3 to the build-time detection as well
complements #5759
b77cd0ae061ad9ad228576ec8d315f0981d4fb58
2a5d33a95d9bf828281ca55aa13beeb96da360ee
diff --git a/cpuid_arm64.c b/cpuid_arm64.c index c7af3295fc..c5dcaf6843 100644 --- a/cpuid_arm64.c +++ b/cpuid_arm64.c @@ -321,9 +321,10 @@ int detect(void) return CPU_CORTEXX2; else if (strstr(cpu_part, "0xd4e")) //X3 return CPU_CORTEXX2; - else if (strstr(cpu_part, "0xd4f")) //NVIDIA Grace et al. + ...
[ "cpuid_arm64.c" ]
[]
true
Orange-OpenSource/hurl
5,090
issue_to_patch
Update crates
679ae4cf2aeca14b57337557797bac608d79dd8a
1e1eb773078cfe95027394f0bb7c34973d480364
diff --git a/Cargo.lock b/Cargo.lock index ca8cb66c439..676e1520a87 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -141,9 +141,9 @@ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8" [[package]] name = "block-buffer" -version = "0.12.0" +version = "0.12.1" source = "registry+https://github....
[ "Cargo.lock", "packages/hurl/Cargo.toml", "packages/hurl_core/Cargo.toml" ]
[]
true
Orange-OpenSource/hurl
5,088
issue_to_patch
Add use_coercion parameter to JSONPath Query/Filter evaluation
7baf0ee764275b91d88a2aeff742359616d269c3
679ae4cf2aeca14b57337557797bac608d79dd8a
diff --git a/packages/hurl/src/runner/assert.rs b/packages/hurl/src/runner/assert.rs index 69496459c3e..0064122b168 100644 --- a/packages/hurl/src/runner/assert.rs +++ b/packages/hurl/src/runner/assert.rs @@ -24,9 +24,9 @@ use crate::util::path::ContextDir; use super::cache::BodyCache; use super::diff::diff; use sup...
[ "packages/hurl/src/runner/assert.rs", "packages/hurl/src/runner/capture.rs", "packages/hurl/src/runner/entry.rs", "packages/hurl/src/runner/filter/base64_decode.rs", "packages/hurl/src/runner/filter/base64_encode.rs", "packages/hurl/src/runner/filter/base64_url_safe_decode.rs", "packages/hurl/src/runner...
[]
true
Orange-OpenSource/hurl
5,079
issue_to_patch
Add no_color option in config_file
8c2fc0a6b543c9469c3d1a9358cdf596664bda76
7baf0ee764275b91d88a2aeff742359616d269c3
diff --git a/integration/hurl/tests_pty/color/color.out b/integration/hurl/tests_pty/color/color.out index a00cba9e172..51cf108514e 100644 --- a/integration/hurl/tests_pty/color/color.out +++ b/integration/hurl/tests_pty/color/color.out @@ -78,6 +78,46 @@ ] } } +{ + "store": ...
[ "docs/spec/options/hurl/no_color.option", "integration/hurl/tests_pty/color/color.out", "integration/hurl/tests_pty/color/color.out.sh", "integration/hurl/tests_pty/color/color.ps1", "integration/hurl/tests_pty/color/color.sh", "integration/hurl/tests_pty/color/config_no_color/hurl/config", "packages/hu...
[]
diff --git a/docs/spec/options/hurl/no_color.option b/docs/spec/options/hurl/no_color.option index 628a68b5d96..246211836ff 100644 --- a/docs/spec/options/hurl/no_color.option +++ b/docs/spec/options/hurl/no_color.option @@ -4,6 +4,7 @@ help: Do not colorize output help_heading: Output options conflict: color cli_on...
true
Orange-OpenSource/hurl
5,086
issue_to_patch
Always use the latest vcpkg bin
e90ef75119030d9060c743ae389d9e1e258423de
8c2fc0a6b543c9469c3d1a9358cdf596664bda76
diff --git a/bin/install_prerequisites_windows.ps1 b/bin/install_prerequisites_windows.ps1 index b872a2d9e60..aa3be76b77e 100644 --- a/bin/install_prerequisites_windows.ps1 +++ b/bin/install_prerequisites_windows.ps1 @@ -6,6 +6,7 @@ write-host -foregroundcolor Cyan "----- install system prerequisites -----" # update v...
[ "bin/install_prerequisites_windows.ps1" ]
[]
true
Orange-OpenSource/hurl
5,083
issue_to_patch
Add AD_HOC_IGNORE_check_integration_sh_ps1_consistency in ad_hoc.sh c…
b71b7ed4bb28abae3522b3acc1070372091250fd
e90ef75119030d9060c743ae389d9e1e258423de
diff --git a/bin/check/ad_hoc.sh b/bin/check/ad_hoc.sh index f2c750032b2..39cc292aebb 100755 --- a/bin/check/ad_hoc.sh +++ b/bin/check/ad_hoc.sh @@ -1,35 +1,38 @@ #!/bin/bash set -Eeuo pipefail +# functions +init_color(){ + color_red=$(echo -e "\033[1;31m") + color_green=$(echo -ne "\033[1;32m") + color_reset=$(ech...
[ "bin/check/ad_hoc.sh" ]
[]
true
Orange-OpenSource/hurl
5,085
issue_to_patch
Update crates
461ea31b8ae11985325e397cc289e26fcfea18de
b71b7ed4bb28abae3522b3acc1070372091250fd
diff --git a/Cargo.lock b/Cargo.lock index 94cb56994d7..ca8cb66c439 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -83,7 +83,7 @@ version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" dependencies = [ - "windows-s...
[ "Cargo.lock", "packages/hurl/Cargo.toml" ]
[]
true
Orange-OpenSource/hurl
5,082
issue_to_patch
Update doc link for GraphQL query.
89f688434fa80cfa8e79bc88d3c1a6017ec1ff46
461ea31b8ae11985325e397cc289e26fcfea18de
diff --git a/README.md b/README.md index d3a3874f334..4b6d9809a05 100644 --- a/README.md +++ b/README.md @@ -600,7 +600,7 @@ variables { GraphQL queries can also use [Hurl templates]. -[Doc](https://hurl.dev/docs/request.html#graphql-body) +[Doc](https://hurl.dev/docs/request.html#graphql-query) ### Using Dynam...
[ "README.md", "docs/samples.md", "packages/hurl/README.md" ]
[]
true
Orange-OpenSource/hurl
5,081
issue_to_patch
Update crates
94c9efe867f8e917793823927573f68066232412
89f688434fa80cfa8e79bc88d3c1a6017ec1ff46
diff --git a/Cargo.lock b/Cargo.lock index 46f614a5e25..94cb56994d7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -906,9 +906,9 @@ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" [[package]] name = "openssl-src" -version = "300.6.0+3.6.2" +version = "300.6.1+3.6.3" source = "registry+ht...
[ "Cargo.lock", "packages/hurl/Cargo.toml", "packages/hurl_core/Cargo.toml", "packages/hurlfmt/Cargo.toml" ]
[]
true
Orange-OpenSource/hurl
5,080
issue_to_patch
Update integ test
2da3cd4508e1b082da60021081b8f14b0fda52e5
94c9efe867f8e917793823927573f68066232412
diff --git a/integration/hurl/tests_failed/predicate/predicate.err b/integration/hurl/tests_failed/predicate/predicate.err index b6d618c9132..bae3b31258d 100644 --- a/integration/hurl/tests_failed/predicate/predicate.err +++ b/integration/hurl/tests_failed/predicate/predicate.err @@ -53,575 +53,615 @@ error: Assert fai...
[ "integration/hurl/tests_failed/predicate/predicate.err", "integration/hurl/tests_failed/predicate/predicate.hurl" ]
[]
true
Orange-OpenSource/hurl
5,073
issue_to_patch
Misleading error message using != (not equal) operator ### What is the current *bug* behavior? The `!=` (not equal) operator creates an error message where it "expects" the value we don't want to match. See ``` error: Assert failure --> FILE.hurl:3682:0 3682 | jsonpath "$PATH" != "NOT EXPECTED" | ...
Fix misleading error message for not-equal predicate
A failing `!=` assert printed the same value for `actual` and `expected`, so the message did not show what the response should have matched. The expected line now shows `not <value>`, matching the output already used for `not ==`. Fixes #2841
9e91a78b0a8dbf1298c699bd6b66eff453df8647
23ed61e0928d75a05aebeefc3a713eec28ff39e4
diff --git a/integration/hurl/tests_failed/assert_value_error/assert_value_error.err b/integration/hurl/tests_failed/assert_value_error/assert_value_error.err index 000567f3ec1..d65a393b6fb 100644 --- a/integration/hurl/tests_failed/assert_value_error/assert_value_error.err +++ b/integration/hurl/tests_failed/assert_va...
[ "integration/hurl/tests_failed/assert_value_error/assert_value_error.err", "integration/hurl/tests_failed/assert_value_error/assert_value_error.out.pattern", "packages/hurl/src/runner/predicate.rs" ]
[]
true
Orange-OpenSource/hurl
5,078
issue_to_patch
Update crates
bce39805ee358824af3a91c9752bc4ef36fca42b
2da3cd4508e1b082da60021081b8f14b0fda52e5
diff --git a/Cargo.lock b/Cargo.lock index 143fd5de47b..46f614a5e25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -135,9 +135,9 @@ dependencies = [ [[package]] name = "bitflags" -version = "2.12.1" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84d7ced0ae9557296835c...
[ "Cargo.lock" ]
[]
true
Orange-OpenSource/hurl
5,069
issue_to_patch
Update CHANGELOG.
23ed61e0928d75a05aebeefc3a713eec28ff39e4
bce39805ee358824af3a91c9752bc4ef36fca42b
diff --git a/CHANGELOG.md b/CHANGELOG.md index 52c08b94922..089158018e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ Thanks to Enhancements: +* Add --no-header option to remove specific HTTP header [#4884](https://github.com/Orange-OpenSource/hurl/issues/4884) * Add --fail-with-body option to outp...
[ "CHANGELOG.md" ]
[]
true
Orange-OpenSource/hurl
5,076
issue_to_patch
Update actions
c4b7a5b1a2724cb948478cb57da7ced35fdd8aa7
9e91a78b0a8dbf1298c699bd6b66eff453df8647
diff --git a/.github/workflows/accept-pull-request.yml b/.github/workflows/accept-pull-request.yml index 72efa6fb0db..81bfa4d8bdc 100644 --- a/.github/workflows/accept-pull-request.yml +++ b/.github/workflows/accept-pull-request.yml @@ -70,7 +70,7 @@ jobs: echo "base_ref=$(jq -rc .base.ref ${pr_detail_file})...
[ ".github/workflows/accept-pull-request.yml", ".github/workflows/auto-close-inactive-pr.yml", ".github/workflows/check.yml", ".github/workflows/coverage.yml", ".github/workflows/extra-package.yml", ".github/workflows/package.yml", ".github/workflows/release.yml", ".github/workflows/test.yml", ".githu...
[]
true
Orange-OpenSource/hurl
5,072
issue_to_patch
Add color option in config file
6bdcb5f9bdc1f8983edf59d0841bac3f3c47b79f
c4b7a5b1a2724cb948478cb57da7ced35fdd8aa7
diff --git a/integration/hurl/tests_ok/color/color_config_file.out.pattern b/integration/hurl/tests_ok/color/color_config_file.out.pattern new file mode 100644 index 00000000000..729e288d12b --- /dev/null +++ b/integration/hurl/tests_ok/color/color_config_file.out.pattern @@ -0,0 +1,7 @@ +HTTP/1.1 200 +[1;3...
[ "docs/spec/options/hurl/color.option", "integration/hurl/tests_ok/color/color_config_file.out.pattern", "integration/hurl/tests_ok/color/color_config_file.ps1", "integration/hurl/tests_ok/color/color_config_file.sh", "integration/hurl/tests_ok/color/config/hurl/config", "packages/hurl/src/cli/options/conf...
[]
diff --git a/docs/spec/options/hurl/color.option b/docs/spec/options/hurl/color.option index 0548ecfa69c..120323e18f1 100644 --- a/docs/spec/options/hurl/color.option +++ b/docs/spec/options/hurl/color.option @@ -4,6 +4,7 @@ help: Colorize output help_heading: Output options conflict: no_color cli_only: true +config...
true
Orange-OpenSource/hurl
5,070
issue_to_patch
Add follow_location_trusted option in config file
27113eb9e4ed58dae3771b8019e19ef40b3d1656
6bdcb5f9bdc1f8983edf59d0841bac3f3c47b79f
diff --git a/integration/hurl/tests_ok/follow_redirect/config_trusted/hurl/config b/integration/hurl/tests_ok/follow_redirect/config_trusted/hurl/config new file mode 100644 index 00000000000..d9f46c169db --- /dev/null +++ b/integration/hurl/tests_ok/follow_redirect/config_trusted/hurl/config @@ -0,0 +1,1 @@ +--locatio...
[ "docs/spec/options/hurl/follow_location_trusted.option", "integration/hurl/tests_ok/follow_redirect/config_trusted/hurl/config", "integration/hurl/tests_ok/follow_redirect/follow_redirect_trusted_config_file.out", "integration/hurl/tests_ok/follow_redirect/follow_redirect_trusted_config_file.ps1", "integrat...
[]
diff --git a/docs/spec/options/hurl/follow_location_trusted.option b/docs/spec/options/hurl/follow_location_trusted.option index f86d4d2a424..39bf06d7ef8 100644 --- a/docs/spec/options/hurl/follow_location_trusted.option +++ b/docs/spec/options/hurl/follow_location_trusted.option @@ -2,6 +2,7 @@ name: follow_location_t...
true
Orange-OpenSource/hurl
5,065
issue_to_patch
Update crates
12a78e8452b992cf34f059391e5cc6ae5d0c2d1c
27113eb9e4ed58dae3771b8019e19ef40b3d1656
diff --git a/Cargo.lock b/Cargo.lock index c87d610c25c..143fd5de47b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -135,9 +135,9 @@ dependencies = [ [[package]] name = "bitflags" -version = "2.11.1" +version = "2.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4512299f36f043ab09a5...
[ "Cargo.lock", "packages/hurl/Cargo.toml" ]
[]
true
Orange-OpenSource/hurl
5,068
issue_to_patch
Add follow_location option in config file
69da6bc30359744465f4b05849d36f375a4c4a66
12a78e8452b992cf34f059391e5cc6ae5d0c2d1c
diff --git a/integration/hurl/tests_ok/follow_redirect/config/hurl/config b/integration/hurl/tests_ok/follow_redirect/config/hurl/config new file mode 100644 index 00000000000..aa528a5b24c --- /dev/null +++ b/integration/hurl/tests_ok/follow_redirect/config/hurl/config @@ -0,0 +1,1 @@ +--location diff --git a/integrati...
[ "docs/spec/options/hurl/follow_location.option", "integration/hurl/tests_ok/follow_redirect/config/hurl/config", "integration/hurl/tests_ok/follow_redirect/follow_redirect_config_file.out", "integration/hurl/tests_ok/follow_redirect/follow_redirect_config_file.ps1", "integration/hurl/tests_ok/follow_redirec...
[]
diff --git a/docs/spec/options/hurl/follow_location.option b/docs/spec/options/hurl/follow_location.option index df5fbcdb2d6..9455d520ea2 100644 --- a/docs/spec/options/hurl/follow_location.option +++ b/docs/spec/options/hurl/follow_location.option @@ -3,6 +3,7 @@ long: location short: L help: Follow redirects help_...
true
Orange-OpenSource/hurl
5,066
issue_to_patch
Add ipv6 in config file
895f6fb96354b9e207a7c973da16e711cd2112bb
69da6bc30359744465f4b05849d36f375a4c4a66
diff --git a/integration/hurl/tests_ok/ipv6/config/hurl/config b/integration/hurl/tests_ok/ipv6/config/hurl/config new file mode 100644 index 00000000000..1f1a9582dde --- /dev/null +++ b/integration/hurl/tests_ok/ipv6/config/hurl/config @@ -0,0 +1,1 @@ +--ipv6 diff --git a/integration/hurl/tests_ok/ipv6/ipv6_config_fil...
[ "docs/spec/options/hurl/ipv6.option", "integration/hurl/tests_ok/ipv6/config/hurl/config", "integration/hurl/tests_ok/ipv6/ipv6_config_file.out", "integration/hurl/tests_ok/ipv6/ipv6_config_file.ps1", "integration/hurl/tests_ok/ipv6/ipv6_config_file.sh", "packages/hurl/src/cli/options/config_file/mod.rs" ...
[]
diff --git a/docs/spec/options/hurl/ipv6.option b/docs/spec/options/hurl/ipv6.option index 26e253e46e2..6ab327e396b 100644 --- a/docs/spec/options/hurl/ipv6.option +++ b/docs/spec/options/hurl/ipv6.option @@ -3,6 +3,7 @@ long: ipv6 short: 6 help: Tell Hurl to use IPv6 addresses only when resolving host names, and not...
true
Orange-OpenSource/hurl
5,067
issue_to_patch
Update to Rust 1.96.0
7e5bab7fc58b9e4e8ba5a854fbdd7721930bdec3
895f6fb96354b9e207a7c973da16e711cd2112bb
diff --git a/packages/hurl/Cargo.toml b/packages/hurl/Cargo.toml index 9fd397e1a8b..2716753b5ce 100644 --- a/packages/hurl/Cargo.toml +++ b/packages/hurl/Cargo.toml @@ -8,7 +8,7 @@ description = "Hurl, run and test HTTP requests" documentation = "https://hurl.dev" homepage = "https://hurl.dev" repository = "https://...
[ "packages/hurl/Cargo.toml", "packages/hurlfmt/Cargo.toml" ]
[]
true
Orange-OpenSource/hurl
5,062
issue_to_patch
Add "User-Agent" on call to api.crates.io (see https://crates.io/data-access#api)
b6424c8e2a6af9a5eaa2aeabcbdc80b4a2e3ebde
7e5bab7fc58b9e4e8ba5a854fbdd7721930bdec3
diff --git a/bin/update_crates.py b/bin/update_crates.py index f7f7c79a4d4..d319af8d19a 100755 --- a/bin/update_crates.py +++ b/bin/update_crates.py @@ -53,7 +53,8 @@ def fetch_info(self) -> bool: self.updated_at = None self.latest_version = None crate_url = f"https://crates.io/api/v1/crates/...
[ "bin/update_crates.py", "packages/hurl/Cargo.toml" ]
[]
true
Orange-OpenSource/hurl
5,060
issue_to_patch
Add compressed in config file
b3d0f9cdcd1504c2038b75f611be2b36c18e967b
b6424c8e2a6af9a5eaa2aeabcbdc80b4a2e3ebde
diff --git a/integration/hurl/tests_ok/compressed/compressed_config_file.ps1 b/integration/hurl/tests_ok/compressed/compressed_config_file.ps1 new file mode 100644 index 00000000000..63d4b1509d2 --- /dev/null +++ b/integration/hurl/tests_ok/compressed/compressed_config_file.ps1 @@ -0,0 +1,6 @@ +Set-StrictMode -Version ...
[ "docs/spec/options/hurl/compressed.option", "integration/hurl/tests_ok/compressed/compressed_config_file.ps1", "integration/hurl/tests_ok/compressed/compressed_config_file.sh", "integration/hurl/tests_ok/compressed/config/hurl/config", "packages/hurl/src/cli/options/config_file/mod.rs" ]
[]
diff --git a/docs/spec/options/hurl/compressed.option b/docs/spec/options/hurl/compressed.option index e87de1de500..30a99b314dd 100644 --- a/docs/spec/options/hurl/compressed.option +++ b/docs/spec/options/hurl/compressed.option @@ -2,6 +2,7 @@ name: compressed long: compressed help: Request compressed response (usin...
true
Orange-OpenSource/hurl
5,059
issue_to_patch
Add no-assert in config file
99ae0c312810902982f3c50f9cac3dfd842ec86f
b3d0f9cdcd1504c2038b75f611be2b36c18e967b
diff --git a/integration/hurl/tests_ok/ignore_asserts/config/hurl/config b/integration/hurl/tests_ok/ignore_asserts/config/hurl/config new file mode 100644 index 00000000000..b495f14971c --- /dev/null +++ b/integration/hurl/tests_ok/ignore_asserts/config/hurl/config @@ -0,0 +1,1 @@ +--no-assert diff --git a/integration...
[ "docs/spec/options/hurl/no_assert.option", "integration/hurl/tests_ok/ignore_asserts/config/hurl/config", "integration/hurl/tests_ok/ignore_asserts/ignore_asserts_config_file.ps1", "integration/hurl/tests_ok/ignore_asserts/ignore_asserts_config_file.sh", "packages/hurl/src/cli/options/config_file/mod.rs" ]
[]
diff --git a/docs/spec/options/hurl/no_assert.option b/docs/spec/options/hurl/no_assert.option index 560bed8c9f0..2d9fc1b479c 100644 --- a/docs/spec/options/hurl/no_assert.option +++ b/docs/spec/options/hurl/no_assert.option @@ -3,6 +3,7 @@ long: no-assert help: Ignore asserts defined in the Hurl file help_heading: R...
true
Orange-OpenSource/hurl
5,057
issue_to_patch
Update crates
9c1104b9a1ff2fd0ef68b420a05cc787b9d59a12
99ae0c312810902982f3c50f9cac3dfd842ec86f
diff --git a/Cargo.lock b/Cargo.lock index a7a88963697..c87d610c25c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -129,7 +129,7 @@ dependencies = [ "quote", "regex", "rustc-hash", - "shlex", + "shlex 1.3.0", "syn", ] @@ -187,12 +187,12 @@ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da...
[ "Cargo.lock" ]
[]
true
Orange-OpenSource/hurl
5,056
issue_to_patch
Add no-output inconfig file
c764292f81ced8fa96e3f6d3ad07f79e34737982
9c1104b9a1ff2fd0ef68b420a05cc787b9d59a12
diff --git a/integration/hurl/tests_ok/no_output/config/hurl/config b/integration/hurl/tests_ok/no_output/config/hurl/config new file mode 100644 index 00000000000..691e4460368 --- /dev/null +++ b/integration/hurl/tests_ok/no_output/config/hurl/config @@ -0,0 +1,1 @@ +--no-output diff --git a/integration/hurl/tests_ok/...
[ "docs/spec/options/hurl/no_output.option", "integration/hurl/tests_ok/no_output/config/hurl/config", "integration/hurl/tests_ok/no_output/no_output_config_file.out", "integration/hurl/tests_ok/no_output/no_output_config_file.ps1", "integration/hurl/tests_ok/no_output/no_output_config_file.sh", "packages/h...
[]
diff --git a/docs/spec/options/hurl/no_output.option b/docs/spec/options/hurl/no_output.option index 709877dc54a..6b38a09774e 100644 --- a/docs/spec/options/hurl/no_output.option +++ b/docs/spec/options/hurl/no_output.option @@ -4,6 +4,7 @@ help: Suppress output. By default, Hurl outputs the body of the last response ...
true
Orange-OpenSource/hurl
5,052
issue_to_patch
Add fail-with-body in config file
9dffca2ba8624c290f4aa64393e89d55bb0301b0
c764292f81ced8fa96e3f6d3ad07f79e34737982
diff --git a/integration/hurl/tests_failed/fail_with_body/config/hurl/config b/integration/hurl/tests_failed/fail_with_body/config/hurl/config new file mode 100644 index 00000000000..dc5dde89062 --- /dev/null +++ b/integration/hurl/tests_failed/fail_with_body/config/hurl/config @@ -0,0 +1,1 @@ +--fail-with-body diff --...
[ "docs/spec/options/hurl/fail_with_body.option", "integration/hurl/tests_failed/fail_with_body/config/hurl/config", "integration/hurl/tests_failed/fail_with_body/fail_with_body_config_file.err", "integration/hurl/tests_failed/fail_with_body/fail_with_body_config_file.exit", "integration/hurl/tests_failed/fai...
[]
diff --git a/docs/spec/options/hurl/fail_with_body.option b/docs/spec/options/hurl/fail_with_body.option index f0703133f39..f2ba6d4f785 100644 --- a/docs/spec/options/hurl/fail_with_body.option +++ b/docs/spec/options/hurl/fail_with_body.option @@ -2,6 +2,7 @@ name: fail_with_body long: fail-with-body help: Output bo...
true
Orange-OpenSource/hurl
5,050
issue_to_patch
Add insecure in config file
760212ca845e2fc70341c31c1f8a06876d8666f1
9dffca2ba8624c290f4aa64393e89d55bb0301b0
diff --git a/integration/hurl/tests_ok/insecure/config/hurl/config b/integration/hurl/tests_ok/insecure/config/hurl/config new file mode 100644 index 00000000000..a94e3f5eb4d --- /dev/null +++ b/integration/hurl/tests_ok/insecure/config/hurl/config @@ -0,0 +1,1 @@ +--insecure diff --git a/integration/hurl/tests_ok/inse...
[ "docs/spec/options/hurl/insecure.option", "integration/hurl/tests_ok/insecure/config/hurl/config", "integration/hurl/tests_ok/insecure/insecure_config_file.ps1", "integration/hurl/tests_ok/insecure/insecure_config_file.sh", "packages/hurl/src/cli/options/config_file/mod.rs" ]
[]
diff --git a/docs/spec/options/hurl/insecure.option b/docs/spec/options/hurl/insecure.option index ad24a28de6e..a698a3145b9 100644 --- a/docs/spec/options/hurl/insecure.option +++ b/docs/spec/options/hurl/insecure.option @@ -3,6 +3,7 @@ long: insecure short: k help: Allow insecure SSL connections help_heading: HTTP ...
true
Orange-OpenSource/hurl
5,049
issue_to_patch
Add limit-rate in config file
680f2251d4462519f2994b7a330de33587cce3e8
760212ca845e2fc70341c31c1f8a06876d8666f1
diff --git a/integration/hurl/tests_ok/limit_rate/config/hurl/config b/integration/hurl/tests_ok/limit_rate/config/hurl/config new file mode 100644 index 00000000000..23f9a63806b --- /dev/null +++ b/integration/hurl/tests_ok/limit_rate/config/hurl/config @@ -0,0 +1,1 @@ +--limit-rate=2000000 diff --git a/integration/hu...
[ "docs/spec/options/hurl/limit_rate.option", "integration/hurl/tests_ok/limit_rate/config/hurl/config", "integration/hurl/tests_ok/limit_rate/limit_rate_config_file.ps1", "integration/hurl/tests_ok/limit_rate/limit_rate_config_file.sh", "packages/hurl/src/cli/options/config_file/mod.rs" ]
[]
diff --git a/docs/spec/options/hurl/limit_rate.option b/docs/spec/options/hurl/limit_rate.option index c203e40cec5..dc4f07052cd 100644 --- a/docs/spec/options/hurl/limit_rate.option +++ b/docs/spec/options/hurl/limit_rate.option @@ -4,6 +4,7 @@ value: SPEED value_parser: clap::value_parser!(u64) help: Specify the max...
true
Orange-OpenSource/hurl
5,048
issue_to_patch
Add delay in config file
be39b8a9b14102a613f133168347e31f83fa12c4
680f2251d4462519f2994b7a330de33587cce3e8
diff --git a/integration/hurl/tests_ok/delay/config/hurl/config b/integration/hurl/tests_ok/delay/config/hurl/config new file mode 100644 index 00000000000..32170b29eba --- /dev/null +++ b/integration/hurl/tests_ok/delay/config/hurl/config @@ -0,0 +1,1 @@ +--delay=1s diff --git a/integration/hurl/tests_ok/delay/delay_c...
[ "docs/spec/options/hurl/delay.option", "integration/hurl/tests_ok/delay/config/hurl/config", "integration/hurl/tests_ok/delay/delay_config_file.ps1", "integration/hurl/tests_ok/delay/delay_config_file.sh", "packages/hurl/src/cli/options/config_file/mod.rs" ]
[]
diff --git a/docs/spec/options/hurl/delay.option b/docs/spec/options/hurl/delay.option index 11bf3682370..0c6ed627d21 100644 --- a/docs/spec/options/hurl/delay.option +++ b/docs/spec/options/hurl/delay.option @@ -4,6 +4,7 @@ value: MILLISECONDS value_default: 0 help: Sets delay before each request (aka sleep) help_h...
true
Orange-OpenSource/hurl
5,047
issue_to_patch
Do not allow characters after closing quote in config file
65ab8616510de7eaad203ac00cd031ae28dd05d7
be39b8a9b14102a613f133168347e31f83fa12c4
diff --git a/packages/hurl/src/cli/options/config_file/mod.rs b/packages/hurl/src/cli/options/config_file/mod.rs index edcfadc8005..d76af10b1de 100644 --- a/packages/hurl/src/cli/options/config_file/mod.rs +++ b/packages/hurl/src/cli/options/config_file/mod.rs @@ -271,4 +271,11 @@ mod tests { assert_eq!(err.po...
[ "packages/hurl/src/cli/options/config_file/mod.rs", "packages/hurl/src/cli/options/config_file/primitives.rs" ]
[]
true
Orange-OpenSource/hurl
5,046
issue_to_patch
Update crates
22864a12c0357ad7759b70c099c9aa6890065c6d
65ab8616510de7eaad203ac00cd031ae28dd05d7
diff --git a/Cargo.lock b/Cargo.lock index d88f4dab885..a7a88963697 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -150,9 +150,9 @@ dependencies = [ [[package]] name = "brotli" -version = "8.0.2" +version = "8.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4bd8b9603c7aa97359dbd97ec...
[ "Cargo.lock" ]
[]
true
Orange-OpenSource/hurl
5,044
issue_to_patch
Update crates
3b5e95f55ebfaa6b2f4ad131116f599a99ca4b64
22864a12c0357ad7759b70c099c9aa6890065c6d
diff --git a/Cargo.lock b/Cargo.lock index 33076dc9928..d88f4dab885 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -849,9 +849,9 @@ checksum = "ae960838283323069879657ca3de837e9f7bbb4c7bf6ea7f1b290d5e9476d2e0" [[package]] name = "memchr" -version = "2.8.0" +version = "2.8.1" source = "registry+https://github.com/rust...
[ "Cargo.lock" ]
[]
true
Orange-OpenSource/hurl
5,041
issue_to_patch
Update actions
b9258539d31d17e243df72ba41304ab28496e984
3b5e95f55ebfaa6b2f4ad131116f599a99ca4b64
diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 071055e422b..bf026d8e1ea 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -267,7 +267,7 @@ jobs: persist-credentials: false ref: ${{ inputs.branch }} - name: Set up Docker Buildx - ...
[ ".github/workflows/package.yml" ]
[]
true
Orange-OpenSource/hurl
5,043
issue_to_patch
Update crates
53bc023931cc7433d9a827f5d26a653b535eeff2
b9258539d31d17e243df72ba41304ab28496e984
diff --git a/Cargo.lock b/Cargo.lock index 8aa09d3e1f1..33076dc9928 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -837,9 +837,9 @@ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" [[package]] name = "log" -version = "0.4.29" +version = "0.4.30" source = "registry+https://github.com/rust-...
[ "Cargo.lock" ]
[]
true
Orange-OpenSource/hurl
5,040
issue_to_patch
Update crates
e5bb122747f3009695bfd00b488f1468f4570507
53bc023931cc7433d9a827f5d26a653b535eeff2
diff --git a/Cargo.lock b/Cargo.lock index 68591d4fcc2..8aa09d3e1f1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -105,9 +105,9 @@ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" [[package]] name = "autocfg" -version = "1.5.0" +version = "1.5.1" source = "registry+https://github.com/rus...
[ "Cargo.lock", "packages/hurl/Cargo.toml", "packages/hurl_core/Cargo.toml" ]
[]
true
Orange-OpenSource/hurl
5,037
issue_to_patch
Update Python dev dependencies (idna >= 3.16)
06525820e874c3f4758475beff492cc5e704a97d
e5bb122747f3009695bfd00b488f1468f4570507
diff --git a/bin/requirements-frozen.txt b/bin/requirements-frozen.txt index 258c9ff1621..e4e3b990933 100644 --- a/bin/requirements-frozen.txt +++ b/bin/requirements-frozen.txt @@ -1,12 +1,12 @@ -ast_serialize==0.3.0 +ast_serialize==0.5.0 beautifulsoup4==4.14.3 blinker==1.9.0 -certifi==2026.4.22 +certifi==2026.5.20 ...
[ "bin/requirements-frozen.txt" ]
[]
true
Orange-OpenSource/hurl
5,035
issue_to_patch
Update crates
4d332da5ff577649e6a780c449a121c92e4d1ce8
06525820e874c3f4758475beff492cc5e704a97d
diff --git a/Cargo.lock b/Cargo.lock index d76d59c4899..68591d4fcc2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1112,9 +1112,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.149" +version = "1.0.150" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83fc039473c5595...
[ "Cargo.lock", "packages/hurl/Cargo.toml" ]
[]
true
Orange-OpenSource/hurl
5,031
issue_to_patch
Add support for HURL_NO_HEADER env var configuration
810ba8900b17961f91b0e800ab142b2d16462bfb
4d332da5ff577649e6a780c449a121c92e4d1ce8
diff --git a/README.md b/README.md index 878ebc6f152..d3a3874f334 100644 --- a/README.md +++ b/README.md @@ -1484,7 +1484,7 @@ to configure Hurl, there are three sources from the lowest priority (most easily | <a href="#max-time" id="max-time"><code>-m, --max-time &lt;SECONDS&gt;</code></a> ...
[ "README.md", "docs/manual.md", "docs/manual/hurl.1", "docs/manual/hurl.md", "docs/spec/options/hurl/no_header.option", "integration/hurl/tests_failed/no_header/no_header.err", "integration/hurl/tests_failed/no_header/no_header.exit", "integration/hurl/tests_failed/no_header/no_header.hurl", "integra...
[ { "comment": "`HURL_NO_HEADER` values with spaces around the delimiter (e.g. `Accept | User-Agent`) will produce header names containing whitespace, which are unlikely to match the actual header names that the `--no-header` removal logic expects. Trim each segment before validating/storing (and validate after t...
diff --git a/docs/spec/options/hurl/no_header.option b/docs/spec/options/hurl/no_header.option index acc612ec1d7..3baac7f16f1 100644 --- a/docs/spec/options/hurl/no_header.option +++ b/docs/spec/options/hurl/no_header.option @@ -4,5 +4,6 @@ value: NAME help: Remove header(s) sent to server help_heading: HTTP options ...
true
Orange-OpenSource/hurl
5,031
comment_to_fix
Add support for HURL_NO_HEADER env var configuration
`HURL_NO_HEADER` values with spaces around the delimiter (e.g. `Accept | User-Agent`) will produce header names containing whitespace, which are unlikely to match the actual header names that the `--no-header` removal logic expects. Trim each segment before validating/storing (and validate after trimming) so common env...
810ba8900b17961f91b0e800ab142b2d16462bfb
4d332da5ff577649e6a780c449a121c92e4d1ce8
diff --git a/packages/hurl/src/cli/options/env_vars.rs b/packages/hurl/src/cli/options/env_vars.rs index 8bd3763c7e1..2260be48257 100644 --- a/packages/hurl/src/cli/options/env_vars.rs +++ b/packages/hurl/src/cli/options/env_vars.rs @@ -27,7 +27,8 @@ use hurl_core::types::{BytesPerSec, Count, DurationUnit}; use super:...
[ "packages/hurl/src/cli/options/env_vars.rs" ]
[ { "comment": "`HURL_NO_HEADER` values with spaces around the delimiter (e.g. `Accept | User-Agent`) will produce header names containing whitespace, which are unlikely to match the actual header names that the `--no-header` removal logic expects. Trim each segment before validating/storing (and validate after t...
true
Orange-OpenSource/hurl
5,031
comment_to_fix
Add support for HURL_NO_HEADER env var configuration
The method name `no_header_env_var` reads like it returns a single header value, but the doc and parsing treat it as a delimited list. Consider renaming to something plural/explicit (e.g. `no_headers_env_var` or `no_header_names_env_var`) to reduce ambiguity for future call sites. (Optional, but improves API clarity.)
810ba8900b17961f91b0e800ab142b2d16462bfb
4d332da5ff577649e6a780c449a121c92e4d1ce8
diff --git a/packages/hurl/src/cli/options/context.rs b/packages/hurl/src/cli/options/context.rs index 7d7ad7e7651..464141350b2 100644 --- a/packages/hurl/src/cli/options/context.rs +++ b/packages/hurl/src/cli/options/context.rs @@ -71,6 +71,7 @@ pub const HURL_MAX_TIME: &str = "HURL_MAX_TIME"; pub const HURL_NO_ASSER...
[ "packages/hurl/src/cli/options/context.rs" ]
[ { "comment": "The method name `no_header_env_var` reads like it returns a single header value, but the doc and parsing treat it as a delimited list. Consider renaming to something plural/explicit (e.g. `no_headers_env_var` or `no_header_names_env_var`) to reduce ambiguity for future call sites. (Optional, but i...
true
Orange-OpenSource/hurl
5,031
comment_to_fix
Add support for HURL_NO_HEADER env var configuration
There’s a newly introduced error path for invalid env var values (empty segment, e.g. `HURL_NO_HEADER="Accept||User-Agent"` or a trailing `|`). Add a failing integration test that asserts the CLI error message includes the env var context (via `err_from_cli_err`) to prevent regressions in validation and messaging.
810ba8900b17961f91b0e800ab142b2d16462bfb
4d332da5ff577649e6a780c449a121c92e4d1ce8
diff --git a/packages/hurl/src/cli/options/env_vars.rs b/packages/hurl/src/cli/options/env_vars.rs index 8bd3763c7e1..2260be48257 100644 --- a/packages/hurl/src/cli/options/env_vars.rs +++ b/packages/hurl/src/cli/options/env_vars.rs @@ -27,7 +27,8 @@ use hurl_core::types::{BytesPerSec, Count, DurationUnit}; use super:...
[ "packages/hurl/src/cli/options/env_vars.rs" ]
[ { "comment": "There’s a newly introduced error path for invalid env var values (empty segment, e.g. `HURL_NO_HEADER=\"Accept||User-Agent\"` or a trailing `|`). Add a failing integration test that asserts the CLI error message includes the env var context (via `err_from_cli_err`) to prevent regressions in valida...
true
Orange-OpenSource/hurl
5,033
issue_to_patch
Update crates
d57bc4ef33cbdd11741f50a4cec797cc553291c5
810ba8900b17961f91b0e800ab142b2d16462bfb
diff --git a/Cargo.lock b/Cargo.lock index 4693694e8c3..d76d59c4899 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -385,9 +385,9 @@ dependencies = [ [[package]] name = "either" -version = "1.15.0" +version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48c757948c5ede0e46177b7...
[ "Cargo.lock" ]
[]
true
Orange-OpenSource/hurl
5,032
issue_to_patch
Update crates
0f76060868d566139f6c3439ae813a16339f9daa
d57bc4ef33cbdd11741f50a4cec797cc553291c5
diff --git a/Cargo.lock b/Cargo.lock index a02c9b6c8f5..4693694e8c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -318,9 +318,9 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77727bb15fa9213041...
[ "Cargo.lock" ]
[]
true
Orange-OpenSource/hurl
5,030
issue_to_patch
No header per request
679922ada44af6989e7652b3cc0db77593b70682
0f76060868d566139f6c3439ae813a16339f9daa
diff --git a/README.md b/README.md index feccd4429e1..878ebc6f152 100644 --- a/README.md +++ b/README.md @@ -1484,7 +1484,7 @@ to configure Hurl, there are three sources from the lowest priority (most easily | <a href="#max-time" id="max-time"><code>-m, --max-time &lt;SECONDS&gt;</code></a> ...
[ "README.md", "docs/manual.md", "docs/manual/hurl.1", "docs/manual/hurl.md", "docs/manual/hurlfmt.1", "docs/request.md", "docs/spec/options/hurl/no_header.option", "integration/hurl/tests_ok/no_header/no_header.py", "integration/hurl/tests_ok/no_header/no_header_option.hurl", "integration/hurl/test...
[ { "comment": "These assertions are brittle because the exact set/number of headers received can vary by environment, HTTP client defaults, proxies, and server/framework behavior (e.g., `Accept-Encoding`, `Connection`). This can make the integration test flaky. Prefer asserting only the headers that must be pres...
diff --git a/docs/spec/options/hurl/no_header.option b/docs/spec/options/hurl/no_header.option index 9dc68b1adac..acc612ec1d7 100644 --- a/docs/spec/options/hurl/no_header.option +++ b/docs/spec/options/hurl/no_header.option @@ -4,6 +4,5 @@ value: NAME help: Remove header(s) sent to server help_heading: HTTP options ...
true
Orange-OpenSource/hurl
5,030
comment_to_fix
No header per request
These assertions are brittle because the exact set/number of headers received can vary by environment, HTTP client defaults, proxies, and server/framework behavior (e.g., `Accept-Encoding`, `Connection`). This can make the integration test flaky. Prefer asserting only the headers that must be present (and specifically ...
679922ada44af6989e7652b3cc0db77593b70682
0f76060868d566139f6c3439ae813a16339f9daa
diff --git a/integration/hurl/tests_ok/no_header/no_header.py b/integration/hurl/tests_ok/no_header/no_header.py index 97891b34ad7..81bd9e1a6bd 100644 --- a/integration/hurl/tests_ok/no_header/no_header.py +++ b/integration/hurl/tests_ok/no_header/no_header.py @@ -7,3 +7,21 @@ def no_header(): assert "User-Agent" ...
[ "integration/hurl/tests_ok/no_header/no_header.py" ]
[ { "comment": "These assertions are brittle because the exact set/number of headers received can vary by environment, HTTP client defaults, proxies, and server/framework behavior (e.g., `Accept-Encoding`, `Connection`). This can make the integration test flaky. Prefer asserting only the headers that must be pres...
true
Orange-OpenSource/hurl
5,030
comment_to_fix
No header per request
The description still frames `no-header` as a command/CLI concept (“used several times in a command”), but this PR makes it available per request in Hurl files as well. Update the wording to reflect both usages (CLI and `[Options] no-header:`), and clarify the scope (per-request vs global) to avoid confusing users.
679922ada44af6989e7652b3cc0db77593b70682
0f76060868d566139f6c3439ae813a16339f9daa
diff --git a/README.md b/README.md index feccd4429e1..878ebc6f152 100644 --- a/README.md +++ b/README.md @@ -1484,7 +1484,7 @@ to configure Hurl, there are three sources from the lowest priority (most easily | <a href="#max-time" id="max-time"><code>-m, --max-time &lt;SECONDS&gt;</code></a> ...
[ "README.md" ]
[ { "comment": "The description still frames `no-header` as a command/CLI concept (“used several times in a command”), but this PR makes it available per request in Hurl files as well. Update the wording to reflect both usages (CLI and `[Options] no-header:`), and clarify the scope (per-request vs global) to avoi...
true
Orange-OpenSource/hurl
5,030
comment_to_fix
No header per request
Now that `cli_only: true` is removed, the spec text should be updated to match the new behavior: `no-header` is usable in Hurl files (per entry) in addition to CLI. Consider rephrasing the description to remove 'in a command' and explicitly mention `[Options] no-header:` and that it may be repeated.
679922ada44af6989e7652b3cc0db77593b70682
0f76060868d566139f6c3439ae813a16339f9daa
diff --git a/docs/spec/options/hurl/no_header.option b/docs/spec/options/hurl/no_header.option index 9dc68b1adac..acc612ec1d7 100644 --- a/docs/spec/options/hurl/no_header.option +++ b/docs/spec/options/hurl/no_header.option @@ -4,6 +4,5 @@ value: NAME help: Remove header(s) sent to server help_heading: HTTP options ...
[ "docs/spec/options/hurl/no_header.option" ]
[ { "comment": "Now that `cli_only: true` is removed, the spec text should be updated to match the new behavior: `no-header` is usable in Hurl files (per entry) in addition to CLI. Consider rephrasing the description to remove 'in a command' and explicitly mention `[Options] no-header:` and that it may be repeate...
true
Orange-OpenSource/hurl
5,029
issue_to_patch
Update crates
d0358a549336a35cdb990b0aa5bf72b86266afb9
679922ada44af6989e7652b3cc0db77593b70682
diff --git a/Cargo.lock b/Cargo.lock index 1fc771c1a02..a02c9b6c8f5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -801,9 +801,9 @@ dependencies = [ [[package]] name = "libxml" -version = "0.3.10" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21a299951fec0aec16f89ce...
[ "Cargo.lock", "packages/hurl/Cargo.toml", "packages/hurl_core/Cargo.toml" ]
[]
true
Orange-OpenSource/hurl
5,025
issue_to_patch
Add --no-header option to remove specific HTTP header request Add `--no-header foo` option to remove all HTTP headers `foo` from HTTP request. ### Discussed in https://github.com/Orange-OpenSource/hurl/discussions/4824 <div type='discussions-op-text'> <sup>Originally posted by **aranw** February 25, 2026</sup> I ...
Add --no-header option to remove specific HTTP header
d64289abca7e37dd9b7d2eb938ff4bb623c1bf9c
d0358a549336a35cdb990b0aa5bf72b86266afb9
diff --git a/README.md b/README.md index e0a00e65005..feccd4429e1 100644 --- a/README.md +++ b/README.md @@ -1484,6 +1484,7 @@ to configure Hurl, there are three sources from the lowest priority (most easily | <a href="#max-time" id="max-time"><code>-m, --max-time &lt;SECONDS&gt;</code></a> ...
[ "README.md", "completions/_hurl", "completions/_hurl.ps1", "completions/hurl.bash", "completions/hurl.fish", "docs/manual.md", "docs/manual/hurl.1", "docs/manual/hurl.md", "docs/manual/hurlfmt.1", "docs/spec/options/hurl/no_header.option", "integration/hurl/tests_ok/no_header/no_header.err.patte...
[ { "comment": "`no_headers_params` manually wraps the header name in single quotes instead of using the existing `encode_shell_string` helper (used by `Header::curl_args`). This can produce an invalid/unsafe command line if the provided header name contains characters that need shell escaping. Consider building ...
diff --git a/docs/spec/options/hurl/no_header.option b/docs/spec/options/hurl/no_header.option new file mode 100644 index 00000000000..9dc68b1adac --- /dev/null +++ b/docs/spec/options/hurl/no_header.option @@ -0,0 +1,9 @@ +name: no_header +long: no-header +value: NAME +help: Remove header(s) sent to server +help_headi...
true
Orange-OpenSource/hurl
5,025
comment_to_fix
Add --no-header option to remove specific HTTP header
`no_headers_params` manually wraps the header name in single quotes instead of using the existing `encode_shell_string` helper (used by `Header::curl_args`). This can produce an invalid/unsafe command line if the provided header name contains characters that need shell escaping. Consider building the raw string (e.g., ...
d64289abca7e37dd9b7d2eb938ff4bb623c1bf9c
d0358a549336a35cdb990b0aa5bf72b86266afb9
diff --git a/packages/hurl/src/http/curl_cmd.rs b/packages/hurl/src/http/curl_cmd.rs index 50df55707c7..7dadaf49bac 100644 --- a/packages/hurl/src/http/curl_cmd.rs +++ b/packages/hurl/src/http/curl_cmd.rs @@ -69,6 +69,8 @@ impl CurlCmd { let mut headers = request_spec.headers.clone(); headers.extend...
[ "packages/hurl/src/http/curl_cmd.rs" ]
[ { "comment": "`no_headers_params` manually wraps the header name in single quotes instead of using the existing `encode_shell_string` helper (used by `Header::curl_args`). This can produce an invalid/unsafe command line if the provided header name contains characters that need shell escaping. Consider building ...
true
Orange-OpenSource/hurl
5,025
comment_to_fix
Add --no-header option to remove specific HTTP header
Typo/grammar in comment: "filter added header that have" should be plural ("headers") and use "have"/"has" consistently.
d64289abca7e37dd9b7d2eb938ff4bb623c1bf9c
d0358a549336a35cdb990b0aa5bf72b86266afb9
diff --git a/packages/hurl/src/http/curl_cmd.rs b/packages/hurl/src/http/curl_cmd.rs index 50df55707c7..7dadaf49bac 100644 --- a/packages/hurl/src/http/curl_cmd.rs +++ b/packages/hurl/src/http/curl_cmd.rs @@ -69,6 +69,8 @@ impl CurlCmd { let mut headers = request_spec.headers.clone(); headers.extend...
[ "packages/hurl/src/http/curl_cmd.rs" ]
[ { "comment": "Typo/grammar in comment: \"filter added header that have\" should be plural (\"headers\") and use \"have\"/\"has\" consistently.\n", "path": "packages/hurl/src/http/curl_cmd.rs", "hunk": "@@ -69,13 +69,18 @@ impl CurlCmd {\n \n let mut headers = request_spec.headers.clone();\n ...
true
Orange-OpenSource/hurl
5,025
comment_to_fix
Add --no-header option to remove specific HTTP header
`--no-header` values are forwarded as raw strings (`self.no_headers.clone()`) without any validation/normalization, unlike `--header` which is validated via `Header::parse`. Because later code appends `":"` and passes it to libcurl, inputs like empty strings or names containing `:`/`;` can lead to malformed header dire...
d64289abca7e37dd9b7d2eb938ff4bb623c1bf9c
d0358a549336a35cdb990b0aa5bf72b86266afb9
diff --git a/packages/hurl/src/cli/options/mod.rs b/packages/hurl/src/cli/options/mod.rs index f8590faa709..74b647827fb 100644 --- a/packages/hurl/src/cli/options/mod.rs +++ b/packages/hurl/src/cli/options/mod.rs @@ -89,6 +89,7 @@ pub struct CliOptions { pub netrc_file: Option<String>, pub netrc_optional: boo...
[ "packages/hurl/src/cli/options/mod.rs" ]
[ { "comment": "`--no-header` values are forwarded as raw strings (`self.no_headers.clone()`) without any validation/normalization, unlike `--header` which is validated via `Header::parse`. Because later code appends `\":\"` and passes it to libcurl, inputs like empty strings or names containing `:`/`;` can lead ...
true
Orange-OpenSource/hurl
5,025
comment_to_fix
Add --no-header option to remove specific HTTP header
Doc comment grammar: "Headers names" should be "Header names".
d64289abca7e37dd9b7d2eb938ff4bb623c1bf9c
d0358a549336a35cdb990b0aa5bf72b86266afb9
diff --git a/packages/hurl/src/runner/runner_options.rs b/packages/hurl/src/runner/runner_options.rs index b19c07cad50..5a6507c9a76 100644 --- a/packages/hurl/src/runner/runner_options.rs +++ b/packages/hurl/src/runner/runner_options.rs @@ -46,7 +46,6 @@ pub struct RunnerOptionsBuilder { from_entry: Option<usize>,...
[ "packages/hurl/src/runner/runner_options.rs" ]
[ { "comment": "Doc comment grammar: \"Headers names\" should be \"Header names\".\n", "path": "packages/hurl/src/runner/runner_options.rs", "hunk": "@@ -597,6 +604,10 @@ pub struct RunnerOptions {\n pub(crate) netrc_file: Option<String>,\n /// Sets the optional netrc flag.\n pub(crate) netrc_...
true
Orange-OpenSource/hurl
5,025
comment_to_fix
Add --no-header option to remove specific HTTP header
The manpage header uses `.TH hurl ...` even though this file documents `hurlfmt`. This makes the generated man page title incorrect; it should use `.TH hurlfmt ...`.
d64289abca7e37dd9b7d2eb938ff4bb623c1bf9c
d0358a549336a35cdb990b0aa5bf72b86266afb9
diff --git a/docs/manual/hurlfmt.1 b/docs/manual/hurlfmt.1 index c3b2d3f1c8f..98acd10ea38 100644 --- a/docs/manual/hurlfmt.1 +++ b/docs/manual/hurlfmt.1 @@ -1,4 +1,4 @@ -.TH hurl 1 "15 May 2026" "hurl 8.1.0" " Hurl Manual" +.TH hurl 1 "16 May 2026" "hurl 8.1.0" " Hurl Manual" .SH NAME hurlfmt - format Hurl files
[ "docs/manual/hurlfmt.1" ]
[ { "comment": "The manpage header uses `.TH hurl ...` even though this file documents `hurlfmt`. This makes the generated man page title incorrect; it should use `.TH hurlfmt ...`.\n", "path": "docs/manual/hurlfmt.1", "hunk": "@@ -1,4 +1,4 @@\n-.TH hurl 1 \"15 May 2026\" \"hurl 8.1.0\" \" Hurl Manual\"\n...
true
Orange-OpenSource/hurl
5,027
issue_to_patch
Update actions
2a68fd6b5e90ec7030825e543a92ad2e6d1faf25
d64289abca7e37dd9b7d2eb938ff4bb623c1bf9c
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 163795e4f44..9b62e73292e 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -60,7 +60,7 @@ jobs: git_commit_gpgsign: true - name: Deploy GitHub Pages - uses: peaceiris/actions-gh-page...
[ ".github/workflows/coverage.yml" ]
[]
true
Orange-OpenSource/hurl
5,026
issue_to_patch
Update crates
405730a0c4dff5532173b7a8aedfe6ea622a682f
2a68fd6b5e90ec7030825e543a92ad2e6d1faf25
diff --git a/Cargo.lock b/Cargo.lock index 33984cdfec4..1fc771c1a02 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -916,9 +916,9 @@ dependencies = [ [[package]] name = "openssl-sys" -version = "0.9.115" +version = "0.9.116" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "158fe5b292746440...
[ "Cargo.lock" ]
[]
true
Orange-OpenSource/hurl
5,024
issue_to_patch
Update CHANGELOG.md.
69532e0ec276db8e1c8f4df48a135b6bae38b618
405730a0c4dff5532173b7a8aedfe6ea622a682f
diff --git a/CHANGELOG.md b/CHANGELOG.md index 68a26ea3be3..52c08b94922 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +[8.1.0 (TBD)](https://github.com/Orange-OpenSource/hurl/blob/master/CHANGELOG.md#8.1.0) +================================================================================================...
[ "CHANGELOG.md" ]
[]
true
Orange-OpenSource/hurl
5,023
issue_to_patch
Add fail with body per request
926b406f20e858a276a02423172dc409029d2521
69532e0ec276db8e1c8f4df48a135b6bae38b618
diff --git a/Cargo.toml b/Cargo.toml index 0888144ccde..985d0a07943 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,3 +21,7 @@ empty_structs_with_brackets = "deny" manual_string_new = "deny" semicolon_if_nothing_returned = "deny" wildcard-imports = "deny" + +# Patch cargo-semver +[workspace.metadata.cargo-semver-che...
[ "Cargo.toml", "README.md", "docs/grammar.md", "docs/manual.md", "docs/manual/hurl.1", "docs/manual/hurl.md", "docs/manual/hurlfmt.1", "docs/request.md", "docs/spec/grammar/hurl.grammar", "docs/spec/options/hurl/fail_with_body.option", "integration/hurl/tests_failed/fail_with_body/fail_with_body_...
[]
diff --git a/docs/spec/grammar/hurl.grammar b/docs/spec/grammar/hurl.grammar index aae67fb0e73..d7a5d8d1990 100644 --- a/docs/spec/grammar/hurl.grammar +++ b/docs/spec/grammar/hurl.grammar @@ -124,6 +124,8 @@ option: | connect-to-option | connect-timeout-option | delay-option + | digest-option + | fail-with-...
true
Orange-OpenSource/hurl
5,017
issue_to_patch
Add --fail-with-body Current Hurl 7.1.0: in the presence of assert errors, Hurl doesn't provide the failed HTTP response. With `--fail-with-body`, Hurl will output the HTTP response that have failed asserts. > [!IMPORTANT] > If a Hurl file is run successfully, Hurl outputs the last entry HTTP response. If there ar...
Add --fail-with-body option to output response body when there are errors
…ors.
b465be0e77e37cef87075cbab612abf5358552b9
da4875785bf8cb04aeecc886b0f6c92f962093e0
diff --git a/README.md b/README.md index 749054931ea..7e0a16173ff 100644 --- a/README.md +++ b/README.md @@ -1502,6 +1502,7 @@ to configure Hurl, there are three sources from the lowest priority (most easily | <a href="#color" id="color"><code>--color</code></a> | Colorize standard ...
[ "README.md", "completions/_hurl", "completions/_hurl.ps1", "completions/hurl.bash", "completions/hurl.fish", "docs/manual.md", "docs/manual/hurl.1", "docs/manual/hurl.md", "docs/manual/hurlfmt.1", "docs/spec/options/hurl/fail_with_body.option", "integration/hurl/tests_failed/fail_with_body/fail_...
[ { "comment": "`should_output` is inferred as `Option<&Output>` (from `options.output.as_ref()`), so the pattern `Some(Output::Stdout)` will not match and should not compile. Match the reference instead (e.g., `Some(&Output::Stdout)`), or change `should_output` to own an `Output` (clone) to make the logic/patter...
diff --git a/docs/spec/options/hurl/fail_with_body.option b/docs/spec/options/hurl/fail_with_body.option new file mode 100644 index 00000000000..837f16dc6e5 --- /dev/null +++ b/docs/spec/options/hurl/fail_with_body.option @@ -0,0 +1,7 @@ +name: fail_with_body +long: fail-with-body +help: Output body response if there a...
true
Orange-OpenSource/hurl
5,017
comment_to_fix
Add --fail-with-body option to output response body when there are errors
`should_output` is inferred as `Option<&Output>` (from `options.output.as_ref()`), so the pattern `Some(Output::Stdout)` will not match and should not compile. Match the reference instead (e.g., `Some(&Output::Stdout)`), or change `should_output` to own an `Output` (clone) to make the logic/patterns consistent.
b465be0e77e37cef87075cbab612abf5358552b9
da4875785bf8cb04aeecc886b0f6c92f962093e0
diff --git a/packages/hurl/src/runner/hurl_file.rs b/packages/hurl/src/runner/hurl_file.rs index ae338b7b8a6..2211698abb2 100644 --- a/packages/hurl/src/runner/hurl_file.rs +++ b/packages/hurl/src/runner/hurl_file.rs @@ -359,13 +359,21 @@ fn run_request( logger.debug(""); } - // We log ev...
[ "packages/hurl/src/runner/hurl_file.rs" ]
[ { "comment": "`should_output` is inferred as `Option<&Output>` (from `options.output.as_ref()`), so the pattern `Some(Output::Stdout)` will not match and should not compile. Match the reference instead (e.g., `Some(&Output::Stdout)`), or change `should_output` to own an `Output` (clone) to make the logic/patter...
true
Orange-OpenSource/hurl
5,017
comment_to_fix
Add --fail-with-body option to output response body when there are errors
Avoid panicking on stdout write failures here (`unwrap()`), especially since other output writes in this runner handle I/O errors gracefully. Handle the `Result` (log/debug it, or convert it to an output error) instead of unwrapping.
b465be0e77e37cef87075cbab612abf5358552b9
da4875785bf8cb04aeecc886b0f6c92f962093e0
diff --git a/packages/hurl/src/runner/hurl_file.rs b/packages/hurl/src/runner/hurl_file.rs index ae338b7b8a6..2211698abb2 100644 --- a/packages/hurl/src/runner/hurl_file.rs +++ b/packages/hurl/src/runner/hurl_file.rs @@ -359,13 +359,21 @@ fn run_request( logger.debug(""); } - // We log ev...
[ "packages/hurl/src/runner/hurl_file.rs" ]
[ { "comment": "Avoid panicking on stdout write failures here (`unwrap()`), especially since other output writes in this runner handle I/O errors gracefully. Handle the `Result` (log/debug it, or convert it to an output error) instead of unwrapping.\n", "path": "packages/hurl/src/runner/hurl_file.rs", "hu...
true
Orange-OpenSource/hurl
5,017
comment_to_fix
Add --fail-with-body option to output response body when there are errors
The docstring says "last HTTP response body", but `Response` represents a single response (it isn't inherently "last"). Consider rewording to something like "Returns `true` if this response body ends with a trailing newline."
b465be0e77e37cef87075cbab612abf5358552b9
da4875785bf8cb04aeecc886b0f6c92f962093e0
diff --git a/packages/hurl/src/http/response.rs b/packages/hurl/src/http/response.rs index 28dff72424f..d65c037e6b7 100644 --- a/packages/hurl/src/http/response.rs +++ b/packages/hurl/src/http/response.rs @@ -62,6 +62,11 @@ impl Response { ip_addr, } } + + /// Returns `true` if this respon...
[ "packages/hurl/src/http/response.rs" ]
[ { "comment": "The docstring says \"last HTTP response body\", but `Response` represents a single response (it isn't inherently \"last\"). Consider rewording to something like \"Returns `true` if this response body ends with a trailing newline.\"\n", "path": "packages/hurl/src/http/response.rs", "hunk": ...
true
Orange-OpenSource/hurl
5,017
comment_to_fix
Add --fail-with-body option to output response body when there are errors
This man page is for `hurlfmt`, but the `.TH` header still identifies the page as `hurl`. This affects how the page is indexed/linked by man-db; it should use `hurlfmt` as the title in the `.TH` macro.
b465be0e77e37cef87075cbab612abf5358552b9
da4875785bf8cb04aeecc886b0f6c92f962093e0
diff --git a/docs/manual/hurlfmt.1 b/docs/manual/hurlfmt.1 index fa6f6d770ed..8d4454e643a 100644 --- a/docs/manual/hurlfmt.1 +++ b/docs/manual/hurlfmt.1 @@ -1,4 +1,4 @@ -.TH hurl 1 "29 Apr 2026" "hurl 8.1.0" " Hurl Manual" +.TH hurl 1 "14 May 2026" "hurl 8.1.0" " Hurl Manual" .SH NAME hurlfmt - format Hurl files
[ "docs/manual/hurlfmt.1" ]
[ { "comment": "This man page is for `hurlfmt`, but the `.TH` header still identifies the page as `hurl`. This affects how the page is indexed/linked by man-db; it should use `hurlfmt` as the title in the `.TH` macro.\n", "path": "docs/manual/hurlfmt.1", "hunk": "@@ -1,4 +1,4 @@\n-.TH hurl 1 \"29 Apr 2026...
true
Orange-OpenSource/hurl
5,017
comment_to_fix
Add --fail-with-body option to output response body when there are errors
This option section is missing the "This is a cli-only option." note used by the surrounding output options, and the description has a grammar issue ("any error" -> "any errors" / "an error"). Align wording/formatting with the other option entries.
b465be0e77e37cef87075cbab612abf5358552b9
da4875785bf8cb04aeecc886b0f6c92f962093e0
diff --git a/docs/manual/hurl.md b/docs/manual/hurl.md index 9242017f9c5..8a193a51af5 100644 --- a/docs/manual/hurl.md +++ b/docs/manual/hurl.md @@ -393,6 +393,12 @@ Environment variables: HURL_ERROR_FORMAT This is a cli-only option. +#### --fail-with-body {#fail-with-body} + +Output body response on standard outp...
[ "docs/manual/hurl.md" ]
[ { "comment": "This option section is missing the \"This is a cli-only option.\" note used by the surrounding output options, and the description has a grammar issue (\"any error\" -> \"any errors\" / \"an error\"). Align wording/formatting with the other option entries.\n", "path": "docs/manual/hurl.md", ...
true
Orange-OpenSource/hurl
5,017
comment_to_fix
Add --fail-with-body option to output response body when there are errors
The description has a grammar issue ("any error" -> "any errors" / "an error"), and unlike nearby options it doesn't state that this is a cli-only option. Please align the wording/structure with the other entries in this section.
b465be0e77e37cef87075cbab612abf5358552b9
da4875785bf8cb04aeecc886b0f6c92f962093e0
diff --git a/docs/manual/hurl.1 b/docs/manual/hurl.1 index 8194b029f7d..29d7f4784a3 100644 --- a/docs/manual/hurl.1 +++ b/docs/manual/hurl.1 @@ -1,4 +1,4 @@ -.TH hurl 1 "29 Apr 2026" "hurl 8.1.0" " Hurl Manual" +.TH hurl 1 "14 May 2026" "hurl 8.1.0" " Hurl Manual" .SH NAME hurl - run and test HTTP requests. @@ -378...
[ "docs/manual/hurl.1" ]
[ { "comment": "The description has a grammar issue (\"any error\" -> \"any errors\" / \"an error\"), and unlike nearby options it doesn't state that this is a cli-only option. Please align the wording/structure with the other entries in this section.\n", "path": "docs/manual/hurl.1", "hunk": "@@ -378,6 +...
true
Orange-OpenSource/hurl
5,017
comment_to_fix
Add --fail-with-body option to output response body when there are errors
The option description has a grammar issue ("any error" -> "any errors" / "an error") and it lacks the "This is a cli-only option." note that appears on adjacent rows in this table. Please align the wording/formatting with the surrounding options.
b465be0e77e37cef87075cbab612abf5358552b9
da4875785bf8cb04aeecc886b0f6c92f962093e0
diff --git a/README.md b/README.md index 749054931ea..7e0a16173ff 100644 --- a/README.md +++ b/README.md @@ -1502,6 +1502,7 @@ to configure Hurl, there are three sources from the lowest priority (most easily | <a href="#color" id="color"><code>--color</code></a> | Colorize standard ...
[ "README.md" ]
[ { "comment": "The option description has a grammar issue (\"any error\" -> \"any errors\" / \"an error\") and it lacks the \"This is a cli-only option.\" note that appears on adjacent rows in this table. Please align the wording/formatting with the surrounding options.\n", "path": "README.md", "hunk": "...
true
Orange-OpenSource/hurl
5,017
comment_to_fix
Add --fail-with-body option to output response body when there are errors
The option description has a grammar issue ("any error" -> "any errors" / "an error") and it lacks the "This is a cli-only option." note that appears on adjacent rows in this table. Please align the wording/formatting with the surrounding options.
b465be0e77e37cef87075cbab612abf5358552b9
da4875785bf8cb04aeecc886b0f6c92f962093e0
diff --git a/packages/hurl/README.md b/packages/hurl/README.md index 4ba2d90e308..3434b33efe7 100644 --- a/packages/hurl/README.md +++ b/packages/hurl/README.md @@ -1502,6 +1502,7 @@ to configure Hurl, there are three sources from the lowest priority (most easily | <a href="#color" id="color"><code>--color</code></a> ...
[ "packages/hurl/README.md" ]
[ { "comment": "The option description has a grammar issue (\"any error\" -> \"any errors\" / \"an error\") and it lacks the \"This is a cli-only option.\" note that appears on adjacent rows in this table. Please align the wording/formatting with the surrounding options.\n", "path": "packages/hurl/README.md",...
true
Orange-OpenSource/hurl
5,017
comment_to_fix
Add --fail-with-body option to output response body when there are errors
The option description has a grammar issue ("any error" -> "any errors" / "an error") and it lacks the "This is a cli-only option." note that appears on adjacent rows in this table. Please align the wording/formatting with the surrounding options.
b465be0e77e37cef87075cbab612abf5358552b9
da4875785bf8cb04aeecc886b0f6c92f962093e0
diff --git a/docs/manual.md b/docs/manual.md index 241fa3a126b..26fc9ccec0e 100644 --- a/docs/manual.md +++ b/docs/manual.md @@ -202,6 +202,7 @@ to configure Hurl, there are three sources from the lowest priority (most easily | <a href="#color" id="color"><code>--color</code></a> | ...
[ "docs/manual.md" ]
[ { "comment": "The option description has a grammar issue (\"any error\" -> \"any errors\" / \"an error\") and it lacks the \"This is a cli-only option.\" note that appears on adjacent rows in this table. Please align the wording/formatting with the surrounding options.\n", "path": "docs/manual.md", "hun...
true
Orange-OpenSource/hurl
5,017
comment_to_fix
Add --fail-with-body option to output response body when there are errors
Grammar: "Output body response if there are any error" should be pluralized ("any errors" / "an error") and is clearer as "Output response body ...". Since this string is user-facing, please fix here and then update the derived docs/completions/help fixtures accordingly.
b465be0e77e37cef87075cbab612abf5358552b9
da4875785bf8cb04aeecc886b0f6c92f962093e0
diff --git a/packages/hurl/src/cli/options/commands.rs b/packages/hurl/src/cli/options/commands.rs index 96554787bb0..f6f96e095ce 100644 --- a/packages/hurl/src/cli/options/commands.rs +++ b/packages/hurl/src/cli/options/commands.rs @@ -163,6 +163,14 @@ pub fn error_format() -> clap::Arg { .num_args(1) } +p...
[ "packages/hurl/src/cli/options/commands.rs" ]
[ { "comment": "Grammar: \"Output body response if there are any error\" should be pluralized (\"any errors\" / \"an error\") and is clearer as \"Output response body ...\". Since this string is user-facing, please fix here and then update the derived docs/completions/help fixtures accordingly.\n", "path": "p...
true
Orange-OpenSource/hurl
5,017
comment_to_fix
Add --fail-with-body option to output response body when there are errors
Grammar: "there are any error" should be pluralized ("any errors" / "an error") and the phrasing would be clearer as "response body" rather than "body response". Consider aligning this help/description text with the rest of the option docs.
b465be0e77e37cef87075cbab612abf5358552b9
da4875785bf8cb04aeecc886b0f6c92f962093e0
diff --git a/docs/spec/options/hurl/fail_with_body.option b/docs/spec/options/hurl/fail_with_body.option new file mode 100644 index 00000000000..837f16dc6e5 --- /dev/null +++ b/docs/spec/options/hurl/fail_with_body.option @@ -0,0 +1,7 @@ +name: fail_with_body +long: fail-with-body +help: Output body response if there a...
[ "docs/spec/options/hurl/fail_with_body.option" ]
[ { "comment": "Grammar: \"there are any error\" should be pluralized (\"any errors\" / \"an error\") and the phrasing would be clearer as \"response body\" rather than \"body response\". Consider aligning this help/description text with the rest of the option docs.\n", "path": "docs/spec/options/hurl/fail_wi...
true
Orange-OpenSource/hurl
5,017
comment_to_fix
Add --fail-with-body option to output response body when there are errors
This help output line inherits the same grammar issue as the CLI help string ("any error" -> "any errors" / "an error"). Once the help text is corrected at the source, update this expected output accordingly.
b465be0e77e37cef87075cbab612abf5358552b9
da4875785bf8cb04aeecc886b0f6c92f962093e0
diff --git a/integration/hurl/tests_pty/help/help.out b/integration/hurl/tests_pty/help/help.out index e73d0bf5021..4825f7855c1 100644 --- a/integration/hurl/tests_pty/help/help.out +++ b/integration/hurl/tests_pty/help/help.out @@ -87,6 +87,7 @@ Output options: --curl <FILE> Export each request to a ...
[ "integration/hurl/tests_pty/help/help.out" ]
[ { "comment": "This help output line inherits the same grammar issue as the CLI help string (\"any error\" -> \"any errors\" / \"an error\"). Once the help text is corrected at the source, update this expected output accordingly.\n", "path": "integration/hurl/tests_pty/help/help.out", "hunk": "@@ -87,6 +...
true
Orange-OpenSource/hurl
5,017
comment_to_fix
Add --fail-with-body option to output response body when there are errors
Grammar in completion description: "any error" should be "any errors" (or "an error"), and "response body" reads clearer than "body response". Please keep completion text consistent with the CLI help.
b465be0e77e37cef87075cbab612abf5358552b9
da4875785bf8cb04aeecc886b0f6c92f962093e0
diff --git a/completions/hurl.fish b/completions/hurl.fish index 0717f037955..5e4393c4ab3 100644 --- a/completions/hurl.fish +++ b/completions/hurl.fish @@ -13,6 +13,7 @@ complete -c hurl -l curl -d 'Export each request to a list of curl commands' complete -c hurl -l delay -d 'Sets delay before each request (aka sleep...
[ "completions/hurl.fish" ]
[ { "comment": "Grammar in completion description: \"any error\" should be \"any errors\" (or \"an error\"), and \"response body\" reads clearer than \"body response\". Please keep completion text consistent with the CLI help.\n", "path": "completions/hurl.fish", "hunk": "@@ -13,6 +13,7 @@ complete -c hur...
true
Orange-OpenSource/hurl
5,017
comment_to_fix
Add --fail-with-body option to output response body when there are errors
Grammar in completion description: "any error" should be "any errors" (or "an error"), and "response body" reads clearer than "body response". Please keep completion text consistent with the CLI help.
b465be0e77e37cef87075cbab612abf5358552b9
da4875785bf8cb04aeecc886b0f6c92f962093e0
diff --git a/completions/_hurl.ps1 b/completions/_hurl.ps1 index 5708314f318..28c663f46e4 100644 --- a/completions/_hurl.ps1 +++ b/completions/_hurl.ps1 @@ -35,6 +35,7 @@ Register-ArgumentCompleter -Native -CommandName 'hurl' -ScriptBlock { [CompletionResult]::new('--delay', 'delay', [CompletionResultType]...
[ "completions/_hurl.ps1" ]
[ { "comment": "Grammar in completion description: \"any error\" should be \"any errors\" (or \"an error\"), and \"response body\" reads clearer than \"body response\". Please keep completion text consistent with the CLI help.\n", "path": "completions/_hurl.ps1", "hunk": "@@ -35,6 +35,7 @@ Register-Argume...
true
Orange-OpenSource/hurl
5,017
comment_to_fix
Add --fail-with-body option to output response body when there are errors
Grammar in completion description: "any error" should be "any errors" (or "an error"), and "response body" reads clearer than "body response". Please keep completion text consistent with the CLI help.
b465be0e77e37cef87075cbab612abf5358552b9
da4875785bf8cb04aeecc886b0f6c92f962093e0
diff --git a/completions/_hurl b/completions/_hurl index bab973efa25..24e251f7855 100644 --- a/completions/_hurl +++ b/completions/_hurl @@ -30,6 +30,7 @@ _hurl() { '--delay[Sets delay before each request (aka sleep)]: :' \ '--digest[Tell Hurl to use HTTP Digest authentication]' \ '--error-format[Control...
[ "completions/_hurl" ]
[ { "comment": "Grammar in completion description: \"any error\" should be \"any errors\" (or \"an error\"), and \"response body\" reads clearer than \"body response\". Please keep completion text consistent with the CLI help.\n", "path": "completions/_hurl", "hunk": "@@ -30,6 +30,7 @@ _hurl() {\n '--...
true
Orange-OpenSource/hurl
5,021
issue_to_patch
Update crates
6905c7a497692cc70fdcf8f564a78b4ec1fdff84
926b406f20e858a276a02423172dc409029d2521
diff --git a/Cargo.lock b/Cargo.lock index 3cb66cbef27..33984cdfec4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1672,9 +1672,9 @@ dependencies = [ [[package]] name = "zerofrom" -version = "0.1.7" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69faa1f2a1ea75661980b...
[ "Cargo.lock" ]
[]
true
Orange-OpenSource/hurl
5,022
issue_to_patch
Add fail with body env support
da4875785bf8cb04aeecc886b0f6c92f962093e0
6905c7a497692cc70fdcf8f564a78b4ec1fdff84
diff --git a/README.md b/README.md index 7e0a16173ff..8ba6e309f5a 100644 --- a/README.md +++ b/README.md @@ -1502,7 +1502,7 @@ to configure Hurl, there are three sources from the lowest priority (most easily | <a href="#color" id="color"><code>--color</code></a> | Colorize standard ...
[ "README.md", "bin/test/patternize.py", "docs/manual.md", "docs/manual/hurl.1", "docs/manual/hurl.md", "docs/spec/options/hurl/fail_with_body.option", "integration/hurl/tests_failed/fail_with_body/fail_with_body_env_var.err", "integration/hurl/tests_failed/fail_with_body/fail_with_body_env_var.exit", ...
[ { "comment": "This PTY fixture invokes the non-PTY Hurl file under `tests_failed`, but the newly added expected stderr references `tests_pty/fail_with_body/fail_with_body.hurl` and `/pty/fail_with_body`. As written, the test will execute the wrong fixture and its actual output paths/URL won't match the checked-...
diff --git a/bin/test/patternize.py b/bin/test/patternize.py index 6bc3413fee7..30f70d35b45 100755 --- a/bin/test/patternize.py +++ b/bin/test/patternize.py @@ -53,6 +53,16 @@ def patternize_err(files: List[Path]) -> None: txt = re.sub( r'"\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{6}Z"', r'"<<<.*>>>"...
true
Orange-OpenSource/hurl
5,022
comment_to_fix
Add fail with body env support
This PTY fixture invokes the non-PTY Hurl file under `tests_failed`, but the newly added expected stderr references `tests_pty/fail_with_body/fail_with_body.hurl` and `/pty/fail_with_body`. As written, the test will execute the wrong fixture and its actual output paths/URL won't match the checked-in `.err` file.
da4875785bf8cb04aeecc886b0f6c92f962093e0
6905c7a497692cc70fdcf8f564a78b4ec1fdff84
diff --git a/integration/hurl/tests_pty/fail_with_body/fail_with_body.sh b/integration/hurl/tests_pty/fail_with_body/fail_with_body.sh new file mode 100755 index 00000000000..fb38599972a --- /dev/null +++ b/integration/hurl/tests_pty/fail_with_body/fail_with_body.sh @@ -0,0 +1,4 @@ +#!/bin/bash +set -Eeuo pipefail + +h...
[ "integration/hurl/tests_pty/fail_with_body/fail_with_body.sh" ]
[ { "comment": "This PTY fixture invokes the non-PTY Hurl file under `tests_failed`, but the newly added expected stderr references `tests_pty/fail_with_body/fail_with_body.hurl` and `/pty/fail_with_body`. As written, the test will execute the wrong fixture and its actual output paths/URL won't match the checked-...
true
Orange-OpenSource/hurl
5,022
comment_to_fix
Add fail with body env support
This PTY fixture invokes the non-PTY Hurl file under `tests_failed`, but the newly added expected stderr references `tests_pty/fail_with_body/fail_with_body.hurl` and `/pty/fail_with_body`. As written, the test will execute the wrong fixture and its actual output paths/URL won't match the checked-in `.err` file.
da4875785bf8cb04aeecc886b0f6c92f962093e0
6905c7a497692cc70fdcf8f564a78b4ec1fdff84
diff --git a/integration/hurl/tests_pty/fail_with_body/fail_with_body.ps1 b/integration/hurl/tests_pty/fail_with_body/fail_with_body.ps1 new file mode 100644 index 00000000000..3fc90e67220 --- /dev/null +++ b/integration/hurl/tests_pty/fail_with_body/fail_with_body.ps1 @@ -0,0 +1,4 @@ +Set-StrictMode -Version latest +$...
[ "integration/hurl/tests_pty/fail_with_body/fail_with_body.ps1" ]
[ { "comment": "This PTY fixture invokes the non-PTY Hurl file under `tests_failed`, but the newly added expected stderr references `tests_pty/fail_with_body/fail_with_body.hurl` and `/pty/fail_with_body`. As written, the test will execute the wrong fixture and its actual output paths/URL won't match the checked-...
true
Orange-OpenSource/hurl
5,019
issue_to_patch
Update Python dev dependencies.
af5aa8d2df29df7c0b100d27af31e11acc42c3b8
b465be0e77e37cef87075cbab612abf5358552b9
diff --git a/bin/requirements-frozen.txt b/bin/requirements-frozen.txt index 93756469590..258c9ff1621 100644 --- a/bin/requirements-frozen.txt +++ b/bin/requirements-frozen.txt @@ -1,22 +1,23 @@ +ast_serialize==0.3.0 beautifulsoup4==4.14.3 blinker==1.9.0 -certifi==2026.2.25 -charset-normalizer==3.4.6 -click==8.3.1 +c...
[ "bin/requirements-frozen.txt", "bin/requirements.txt" ]
[]
true
Orbmu2k/nvidiaProfileInspector
463
issue_to_patch
Fixed navigating to the global driver profile when Base Profile is selected
Fixed modified profiles dropdown not navigating to the `GLOBAL DRIVER PROFILE` when `Base Profile` is selected, by assigning its internal name to the display name used in the profile list.
dde3b68f12178d9ddcf3a9ca41e1c6f32d9a1789
47d692f96f4efb9595b908b07d31cc884eab8c45
diff --git a/nvidiaProfileInspector/UI/ViewModels/MainViewModel.cs b/nvidiaProfileInspector/UI/ViewModels/MainViewModel.cs index d99232e..abfd0d2 100644 --- a/nvidiaProfileInspector/UI/ViewModels/MainViewModel.cs +++ b/nvidiaProfileInspector/UI/ViewModels/MainViewModel.cs @@ -1329,6 +1329,9 @@ public void ImportAllProf...
[ "nvidiaProfileInspector/UI/ViewModels/MainViewModel.cs" ]
[]
true
Orbmu2k/nvidiaProfileInspector
468
issue_to_patch
Update profile enum buffer sizing to match the number of settings, improving scan performance
- Profile scanning currently reads every profile through a fixed 512-slot buffer, even though most profiles only have a handful of settings. Each slot is ~12 KB, so every profile incurs a cost of moving ~6 MB to and from the driver no matter how much data it actually holds - Now sizes the buffer to each profile's actu...
dde3b68f12178d9ddcf3a9ca41e1c6f32d9a1789
812ecaf109547534da85e7d35580dc8d3adf1e80
diff --git a/nvidiaProfileInspector/Common/DrsScannerService.cs b/nvidiaProfileInspector/Common/DrsScannerService.cs index df6bf32..0bc9c72 100644 --- a/nvidiaProfileInspector/Common/DrsScannerService.cs +++ b/nvidiaProfileInspector/Common/DrsScannerService.cs @@ -133,7 +133,7 @@ await Task.Run(() => ...
[ "nvidiaProfileInspector/Common/DrsScannerService.cs", "nvidiaProfileInspector/Common/DrsSettingsServiceBase.cs" ]
[]
true
Orbmu2k/nvidiaProfileInspector
450
issue_to_patch
Allow searching settings by hex ID in filter
The search filter currently only matches against `DisplayName` and `AlternateNames`. This change adds a check against `SettingIdHex` to allow finding items by their hex ID (e.g. 0x00DE5C4E).
d2ce0dbe909e490eb8469bb54e1bcf3ba3ba9aac
ea05eeaaed9735791459bbbae3c0a6c3a84fc9df
diff --git a/nvidiaProfileInspector/UI/ViewModels/MainViewModel.cs b/nvidiaProfileInspector/UI/ViewModels/MainViewModel.cs index 9bd77dc..180f07e 100644 --- a/nvidiaProfileInspector/UI/ViewModels/MainViewModel.cs +++ b/nvidiaProfileInspector/UI/ViewModels/MainViewModel.cs @@ -675,6 +675,8 @@ private bool FilterPredicat...
[ "nvidiaProfileInspector/UI/ViewModels/MainViewModel.cs", "nvidiaProfileInspector/UI/ViewModels/SettingsListViewModel.cs" ]
[]
true
Orbmu2k/nvidiaProfileInspector
455
issue_to_patch
Update CustomSettingNames.xml
- Add VSYNC alternate name to Vertical Sync - Add Low Latency alternate name to Maximum Pre-rendered Frames - Add DLSS-NR custom names (Driver 610.47+) This is to improve the search for these settings, now when search "Low Latency" all 3 options will appear. Also updated MPRF description to recommend value 1 (by ...
d2ce0dbe909e490eb8469bb54e1bcf3ba3ba9aac
739aeb8d3f2bf87c5db740dc3bc819e006e473df
diff --git a/nvidiaProfileInspector/CustomSettingNames.xml b/nvidiaProfileInspector/CustomSettingNames.xml index 5f8dae1..f65142c 100644 --- a/nvidiaProfileInspector/CustomSettingNames.xml +++ b/nvidiaProfileInspector/CustomSettingNames.xml @@ -233,6 +233,120 @@ </SettingValues> <SettingMasks /> </CustomSett...
[ "nvidiaProfileInspector/CustomSettingNames.xml" ]
[]
true
Orbmu2k/nvidiaProfileInspector
446
issue_to_patch
Update CustomSettingNames.xml
- readd settings for vulkan/opengl present method - flags #445
12b8876bf3e0a60fff7cff255bf0bd7f29130528
8448bd3c7e76985cfc8481ec19175ff0ddfe2aac
diff --git a/nvidiaProfileInspector/CustomSettingNames.xml b/nvidiaProfileInspector/CustomSettingNames.xml index 171667c..5f8dae1 100644 --- a/nvidiaProfileInspector/CustomSettingNames.xml +++ b/nvidiaProfileInspector/CustomSettingNames.xml @@ -8278,7 +8278,7 @@ When any driver flags are set HDR will be applied via dri...
[ "nvidiaProfileInspector/CustomSettingNames.xml" ]
[]
true
Orbmu2k/nvidiaProfileInspector
441
issue_to_patch
CSN Update
Update "DLSS-FG - Private Flags" with the name and description from the developer's guide > Auto Scene Change Detection > > Auto Scene Change Detection aims to automatically prevent Frame Generation from producing difficult-to-create frames between a substantial scene change. It does this by analyzing the in-game...
a93a4366285a46a23d8aff7fc64d6addc4faeb4d
34265b630606133bbf6cf400076ec9a98d07bd03
diff --git a/nvidiaProfileInspector/CustomSettingNames.xml b/nvidiaProfileInspector/CustomSettingNames.xml index e76cb92a..171667cc 100644 --- a/nvidiaProfileInspector/CustomSettingNames.xml +++ b/nvidiaProfileInspector/CustomSettingNames.xml @@ -234,11 +234,25 @@ <SettingMasks /> </CustomSetting> <CustomSett...
[ "nvidiaProfileInspector/CustomSettingNames.xml" ]
[]
true
Orbmu2k/nvidiaProfileInspector
438
issue_to_patch
Update to "about" to change contributor username
- Update my github username
93a6ba77398302137f5be5ccd8617d20d194eb50
c20f4316c642e3c6a5a1afe2de3aa299ea2f26b3
diff --git a/nvidiaProfileInspector/UI/ViewModels/AboutViewModel.cs b/nvidiaProfileInspector/UI/ViewModels/AboutViewModel.cs index ad623c58..515f42ee 100644 --- a/nvidiaProfileInspector/UI/ViewModels/AboutViewModel.cs +++ b/nvidiaProfileInspector/UI/ViewModels/AboutViewModel.cs @@ -75,10 +75,10 @@ private void LoadCont...
[ "nvidiaProfileInspector/UI/ViewModels/AboutViewModel.cs" ]
[]
true
Orbmu2k/nvidiaProfileInspector
423
issue_to_patch
open for debate - ai generated settings descriptions and additions to reference
935d97ea58c79cb7b978061ef3c1c65abeb1816b
ec0c5176491c287f61d9feddc6305b5a4a927c95
diff --git a/nvidiaProfileInspector/Common/DrsSettingsMetaService.cs b/nvidiaProfileInspector/Common/DrsSettingsMetaService.cs index 3be4d142..61bf2f7b 100644 --- a/nvidiaProfileInspector/Common/DrsSettingsMetaService.cs +++ b/nvidiaProfileInspector/Common/DrsSettingsMetaService.cs @@ -312,7 +312,7 @@ private SettingMe...
[ "nvidiaProfileInspector/Common/DrsSettingsMetaService.cs", "nvidiaProfileInspector/CustomSettingNames.xml", "nvidiaProfileInspector/Reference.xml" ]
[]
true
Orbmu2k/nvidiaProfileInspector
430
issue_to_patch
Added CLI -exportCustomized of all CustomizedProfiles.nip
Feature Request; Exports AllCustomizedProfiles.nip into CWD of the .exe This is a silent Export similar to the -silentImport CLI
15a94d8734a7932e1ff2aface6464d4a7e6c695d
065f312a874d7984c9f9cb3bcab28d52cbef7323
diff --git a/nvidiaProfileInspector/App.xaml.cs b/nvidiaProfileInspector/App.xaml.cs index 565ba692..20b4414d 100644 --- a/nvidiaProfileInspector/App.xaml.cs +++ b/nvidiaProfileInspector/App.xaml.cs @@ -47,6 +47,19 @@ protected override void OnStartup(StartupEventArgs e) return; } + ...
[ "nvidiaProfileInspector/App.xaml.cs" ]
[]
true
Orbmu2k/nvidiaProfileInspector
429
issue_to_patch
Update CSN: Add MinRequiredDriverVersion in MFG and Shader-Cache Precompile
15a94d8734a7932e1ff2aface6464d4a7e6c695d
faf68307b5f83a2cba98dd6ca4ecf17310262b72
diff --git a/nvidiaProfileInspector/CustomSettingNames.xml b/nvidiaProfileInspector/CustomSettingNames.xml index fbe0e480..4960e796 100644 --- a/nvidiaProfileInspector/CustomSettingNames.xml +++ b/nvidiaProfileInspector/CustomSettingNames.xml @@ -1037,7 +1037,7 @@ <UserfriendlyName>DLSS-FG - Forced Mode</Userfriend...
[ "nvidiaProfileInspector/CustomSettingNames.xml" ]
[]
true
Orbmu2k/nvidiaProfileInspector
422
issue_to_patch
CSN File Update: Add Dynamic FG, Shader Pre-compile
- Add HexValue 0x000802A5 to OGL_DX_PRESENT_DEBUG. This is a hidden hexvalue to make the driver treat DXK as Native, a workaround for when the flag to promote to DXGI/DirectFlip doesn't work. - Remove the Override Defaults for reBAR - Size Limit, as it can cause confusion with the default values for some whitelist...
5e5ea303cb05b3dba657b536cf397a0540a6a096
7c6167d78c46d766adb7b3426cb7165ee32722dd
diff --git a/nvidiaProfileInspector/CustomSettingNames.xml b/nvidiaProfileInspector/CustomSettingNames.xml index 63dae80b..f4d739d7 100644 --- a/nvidiaProfileInspector/CustomSettingNames.xml +++ b/nvidiaProfileInspector/CustomSettingNames.xml @@ -77,6 +77,84 @@ </SettingValues> <SettingMasks/> </CustomSettin...
[ "nvidiaProfileInspector/CustomSettingNames.xml" ]
[]
true
Orbmu2k/nvidiaProfileInspector
416
issue_to_patch
Update to CSN file to include rBAR Size Limit and Descriptions
- Moved the "Forced Scaling Ratio" instructions to description - Added "rBAR - Size Limit" description and default size limits with friendly names - Minor tweaks
26979d28ace0a671a0080eb5f889c86a4d023f13
52e39baecf9ce53e5dce87a6d8702b99c54da652
diff --git a/nvidiaProfileInspector/CustomSettingNames.xml b/nvidiaProfileInspector/CustomSettingNames.xml index c4653639..63dae80b 100644 --- a/nvidiaProfileInspector/CustomSettingNames.xml +++ b/nvidiaProfileInspector/CustomSettingNames.xml @@ -6,14 +6,14 @@ <HexSettingID>0x10E41E01</HexSettingID> <GroupName>...
[ "nvidiaProfileInspector/CustomSettingNames.xml" ]
[]
true