• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

golang-migrate / migrate / 12980147626

27 Jan 2025 01:06AM UTC coverage: 56.319%. Remained the same
12980147626

Pull #1195

github

web-flow
Bump github.com/golang-jwt/jwt/v4 from 4.4.2 to 4.5.1

Bumps [github.com/golang-jwt/jwt/v4](https://github.com/golang-jwt/jwt) from 4.4.2 to 4.5.1.
- [Release notes](https://github.com/golang-jwt/jwt/releases)
- [Changelog](https://github.com/golang-jwt/jwt/blob/main/VERSION_HISTORY.md)
- [Commits](https://github.com/golang-jwt/jwt/compare/v4.4.2...v4.5.1)

---
updated-dependencies:
- dependency-name: github.com/golang-jwt/jwt/v4
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #1195: Bump github.com/golang-jwt/jwt/v4 from 4.4.2 to 4.5.1

4559 of 8095 relevant lines covered (56.32%)

51.7 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/database/error.go
1
package database
2

3
import (
4
        "fmt"
5
)
6

7
// Error should be used for errors involving queries ran against the database
8
type Error struct {
9
        // Optional: the line number
10
        Line uint
11

12
        // Query is a query excerpt
13
        Query []byte
14

15
        // Err is a useful/helping error message for humans
16
        Err string
17

18
        // OrigErr is the underlying error
19
        OrigErr error
20
}
21

22
func (e Error) Error() string {
×
23
        if len(e.Err) == 0 {
×
24
                return fmt.Sprintf("%v in line %v: %s", e.OrigErr, e.Line, e.Query)
×
25
        }
×
26
        return fmt.Sprintf("%v in line %v: %s (details: %v)", e.Err, e.Line, e.Query, e.OrigErr)
×
27
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc