Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
0d87cc5
feat(resources-introspection): add support for resource metadata retr…
dertin Mar 3, 2025
041322e
misc: remove debug print
dertin Mar 3, 2025
819ee93
style: cargo fmt
dertin Mar 3, 2025
91fa813
fix(guards): replace take_guards with get_guards to prevent guard rem…
dertin Mar 3, 2025
176ea5d
ci: downgrade for msrv litemap to version 0.7.4 in justfile
dertin Mar 3, 2025
acd7c58
chore: update changelog and fix docs for CI
dertin Mar 3, 2025
c4be199
ci: downgrade for msrv zerofrom to version 0.1.5 in justfile
dertin Mar 3, 2025
a79dc9d
refactor: improve thread safety and add unit tests for introspection …
dertin Mar 4, 2025
2bb774a
fix(introspection): add conditional arbiter creation for io-uring sup…
dertin Mar 4, 2025
3b99f86
fix(introspection): add conditional arbiter creation for io-uring sup…
dertin Mar 4, 2025
7821ba9
Merge branch 'introspection' of https://github.com/dertin/actix-web i…
dertin Mar 4, 2025
0548b12
Merge branch 'introspection' of https://github.com/dertin/actix-web i…
dertin Mar 4, 2025
ee76215
Merge branch 'introspection' of https://github.com/dertin/actix-web i…
dertin Mar 4, 2025
ae08dcf
refactor(introspection): add GuardDetail enum and remove downcast_ref…
dertin Mar 5, 2025
aebab17
refactor(introspection): add GuardDetail enum and remove downcast_ref…
dertin Mar 5, 2025
a449695
Merge branch 'introspection' of https://github.com/dertin/actix-web i…
dertin Mar 5, 2025
3506512
Merge branch 'master' into introspection
dertin Mar 10, 2025
57b5937
Merge branch 'master' into introspection
dertin Mar 21, 2025
585552f
Merge branch 'master' into introspection
dertin Apr 2, 2025
c809ee8
Merge branch 'master' into introspection
dertin Apr 10, 2025
013a8ec
Merge branch 'master' into introspection
dertin Apr 22, 2025
d501102
feat(introspection): rename feature from `resources-introspection` to…
devdertin May 12, 2025
dcad1d9
Merge branch 'master' into introspection
devdertin May 12, 2025
2f64cdb
fix Cargo.lock
devdertin May 12, 2025
0a9f6c1
feat(introspection): enhance introspection feature with detailed rout…
devdertin May 19, 2025
c8a7271
optimize debug log and apply clippy/fmt suggestions
devdertin May 19, 2025
360baa3
Merge branch 'master' into introspection
dertin May 19, 2025
23fed22
feat(introspection): enhance introspection handlers for JSON and plai…
devdertin May 20, 2025
d1706dc
Merge branch 'introspection' of github.com:dertin/actix-web into intr…
devdertin May 20, 2025
7296f6f
Merge branch 'master' into introspection
dertin May 27, 2025
2b52a60
Merge branch 'master' into introspection
dertin Jun 10, 2025
7ff7768
feat(introspection): implement experimental introspection feature wit…
dertin Jun 11, 2025
dfb4aa3
Merge branch 'master' into introspection
dertin Jun 17, 2025
f3b64b0
Merge branch 'master' into introspection
dertin Jul 23, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 78 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions actix-web/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- Add `experimental-introspection` feature for retrieving configured route paths and HTTP methods.

## 4.11.0

- Add `Logger::log_level()` method.
Expand Down
3 changes: 3 additions & 0 deletions actix-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ compat = ["compat-routing-macros-force-pub"]
# Opt-out forwards-compatibility for handler visibility inheritance fix.
compat-routing-macros-force-pub = ["actix-web-codegen?/compat-routing-macros-force-pub"]

# Enabling the retrieval of metadata for initialized resources, including path and HTTP method.
experimental-introspection = []

[dependencies]
actix-codec = "0.5"
actix-macros = { version = "0.2.3", optional = true }
Expand Down
Loading
Loading