An open index of dependabot pull requests across open source projects.

github.com/go-chi/chi/v5

Ecosystem:
go
Package URL:
pkg:golang/github.com/go-chi/chi/v5
Total PRs:
1,530 Dependabot PRs
Latest PR:
1 day ago
Unique Repositories:
1,135 repositories
Unique Repos (30 days):
19 repositories
Recent PRs
Package Details
Name: github.com/go-chi/chi/v5
Ecosystem: go
PURL Type: golang
Package URL: pkg:golang/github.com/go-chi/chi/v5
JSON API: View JSON
Security Advisories

1

Active advisories
MODERATE 1
View All golang Advisories
Package Information
Description:

Package chi is a small, idiomatic and composable router for building HTTP services. chi requires Go 1.14 or newer. Example: See github.com/go-chi/chi/_examples/ for more in-depth examples. URL patterns allow for easy matching of path components in HTTP requests. The matching components can then be accessed using chi.URLParam(). All patterns must begin with a slash. A simple named placeholder {name} matches any sequence of characters up to the next / or the end of the URL. Trailing slashes on paths must be handled explicitly. A placeholder with a name followed by a colon allows a regular expression match, for example {number:\\d+}. The regular expression syntax is Go's normal regexp RE2 syntax, except that regular expressions including { or } are not supported, and / will never be matched. An anonymous regexp pattern is allowed, using an empty string before the colon in the placeholder, such as {:\\d+} The special placeholder of asterisk matches the rest of the requested URL. Any trailing characters in the pattern are ignored. This is the only placeholder which will match / characters. Examples:

Repository: https://github.com/go-chi/chi
Homepage: https://github.com/go-chi/chi
Latest Release: v5.2.1
10 months ago
Dependent Repos: 8,374
Dependent Packages: 6,010
Ranking: Top 0.0855% by dependent repos Top 0.0612% by dependent pkgs
PR Status
Open 917 (59.9%)
Merged 374 (24.4%)
Closed 230 (15.0%)
PR Types
Minor 521 (34.1%)
Patch 1,000 (65.4%)