Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Tags: keploy/keploy

Tags

v3.0.3

Toggle v3.0.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: synchronous mocking relative to test cases (#3403)

* fix: fixed sync recording by dialing server sequentially

Signed-off-by: kapish <upadhyaykapish@gmail.com>

* chore: improved code quality, removed commented code

Signed-off-by: kapish <upadhyaykapish@gmail.com>

* chore: added comments and removed print statement

Signed-off-by: kapish <upadhyaykapish@gmail.com>

* chore: synchronous mock recording with test case

Signed-off-by: kapish <upadhyaykapish@gmail.com>

* chore: synchronous json bson correction

Signed-off-by: kapish <upadhyaykapish@gmail.com>

* chore: addressed review comments and improved code clarity

Signed-off-by: kapish <upadhyaykapish@gmail.com>

* chore: improve code quality

Signed-off-by: kapish <upadhyaykapish@gmail.com>

---------

Signed-off-by: kapish <upadhyaykapish@gmail.com>
Signed-off-by: Kapish Upadhyay <92024461+kapishupadhyay22@users.noreply.github.com>

v3.0.2

Toggle v3.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
ci: make docker publish for v3 (#3394)

Signed-off-by: Sarthak160 <rocksarthak45@gmail.com>

v2.11.34

Toggle v2.11.34's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: url templatize in case of encoded string (#3373)

* fix: url templatize in case of encoded string

Signed-off-by: kapish <upadhyaykapish@gmail.com>

* fix: url templatize in case of encoded string in grpc

Signed-off-by: kapish <upadhyaykapish@gmail.com>

---------

Signed-off-by: kapish <upadhyaykapish@gmail.com>

v2.11.33

Toggle v2.11.33's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: test execution order with response timestamp fallback (#3364) (#…

…3365)

Signed-off-by: gouravkrosx <gouravgreatkr@gmail.com>

v2.11.32

Toggle v2.11.32's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: fixing passthrough function by enabling looping, for long lived …

…connections (#3327)

Signed-off-by: kapish <upadhyaykapish@gmail.com>

v2.11.31

Toggle v2.11.31's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: noise filteration for nested fields and report noise detection (#…

…3312)

* fix: noise filteration for nested fields and report noise detection

Signed-off-by: Asish Kumar <officialasishkumar@gmail.com>

* fix: noise filteration for nested fields in grpc and common util func

Signed-off-by: Asish Kumar <officialasishkumar@gmail.com>

* fix: add debug logs for grpc global noise filteration

Signed-off-by: Asish Kumar <officialasishkumar@gmail.com>

* fix: skip the noise instead of removing it

Signed-off-by: Asish Kumar <officialasishkumar@gmail.com>

---------

Signed-off-by: Asish Kumar <officialasishkumar@gmail.com>
Co-authored-by: Gourav kumar <44055698+gouravkrosx@users.noreply.github.com>

v2.11.30

Toggle v2.11.30's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: ignore content-length and message length mismatches when body …

…content is identical (#3308)

Signed-off-by: gouravkrosx <gouravgreatkr@gmail.com>

v2.11.29

Toggle v2.11.29's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: mysql prepare statement id mapping (#3301)

* fix: stmt collision for different queries on same connection

* fix: no matching in stmt execute if query matching is not there

Signed-off-by: gouravkrosx <gouravgreatkr@gmail.com>

* chore: add debug logs

Signed-off-by: gouravkrosx <gouravgreatkr@gmail.com>

* chore: add debug logs

Signed-off-by: gouravkrosx <gouravgreatkr@gmail.com>

* fix: updating modified mock issues for stmt-prep-ok response

Signed-off-by: gouravkrosx <gouravgreatkr@gmail.com>

* chore: consumed logs will print for each test result

Signed-off-by: gouravkrosx <gouravgreatkr@gmail.com>

* debug: mock manager issue with app restart

Signed-off-by: gouravkrosx <gouravgreatkr@gmail.com>

* chore: remove unnecessary code

Signed-off-by: gouravkrosx <gouravgreatkr@gmail.com>

---------

Signed-off-by: gouravkrosx <gouravgreatkr@gmail.com>

v2.11.28

Toggle v2.11.28's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: cherry-pick transfer-encoding fix to v2 (#3304)

* fix(http): make Transfer-Encoding detection case-insensitive

The HTTP response decoder was checking for "Transfer-Encoding: chunked"
using a case-sensitive substring match on the raw header block.

Some upstream services (e.g. the Java-based config service) emit
"Transfer-encoding: chunked", which caused our code to skip the
chunked-body handling path entirely and treat the response as if it
had no proper body.

As a result, Keploy would:
- only capture the headers in the reconstructed response buffer
- log "failed to read the http response body: unexpected EOF" in Capture
- save testcases with empty or truncated response bodies for those endpoints

The fix normalizes header names before checking for transfer-encoding,
so both "Transfer-Encoding" and "Transfer-encoding" (and any other
case variants) correctly trigger chunked-response handling.

Signed-off-by: Anju Pathak <anjupathak9810@gmail.com>

* Improve chunked response handling in chunk.go

Refactor logic for handling chunked responses in HTTP.

Signed-off-by: Anju <168076172+anjupathak03@users.noreply.github.com>

---------

Signed-off-by: Anju Pathak <anjupathak9810@gmail.com>
Signed-off-by: Anju <168076172+anjupathak03@users.noreply.github.com>

v3.0.1-beta3

Toggle v3.0.1-beta3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: run docker compose hook ent hook (#3297)

calls a hook to update the docker compose file for enterprise use case. 

Signed-off-by: Asish Kumar <officialasishkumar@gmail.com>
Morty Proxy This is a proxified and sanitized view of the page, visit original site.