gatus/vendor/gopkg.in/square/go-jose.v2/json
dependabot[bot] e503dd3861
chore(deps): bump github.com/coreos/go-oidc/v3 from 3.1.0 to 3.4.0 (#383)
Bumps [github.com/coreos/go-oidc/v3](https://github.com/coreos/go-oidc) from 3.1.0 to 3.4.0.
- [Release notes](https://github.com/coreos/go-oidc/releases)
- [Commits](https://github.com/coreos/go-oidc/compare/v3.1.0...v3.4.0)

---
updated-dependencies:
- dependency-name: github.com/coreos/go-oidc/v3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-08 23:20:27 -05:00
..
decode.go chore(deps): bump github.com/coreos/go-oidc/v3 from 3.1.0 to 3.4.0 (#383) 2022-12-08 23:20:27 -05:00
encode.go #205: Work on supporting OpenID Connect for auth 2022-01-02 21:14:01 -05:00
indent.go #205: Work on supporting OpenID Connect for auth 2022-01-02 21:14:01 -05:00
LICENSE #205: Work on supporting OpenID Connect for auth 2022-01-02 21:14:01 -05:00
README.md #205: Work on supporting OpenID Connect for auth 2022-01-02 21:14:01 -05:00
scanner.go #205: Work on supporting OpenID Connect for auth 2022-01-02 21:14:01 -05:00
stream.go chore(deps): bump github.com/coreos/go-oidc/v3 from 3.1.0 to 3.4.0 (#383) 2022-12-08 23:20:27 -05:00
tags.go #205: Work on supporting OpenID Connect for auth 2022-01-02 21:14:01 -05:00

Safe JSON

This repository contains a fork of the encoding/json package from Go 1.6.

The following changes were made:

  • Object deserialization uses case-sensitive member name matching instead of case-insensitive matching. This is to avoid differences in the interpretation of JOSE messages between go-jose and libraries written in other languages.
  • When deserializing a JSON object, we check for duplicate keys and reject the input whenever we detect a duplicate. Rather than trying to work with malformed data, we prefer to reject it right away.