Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ory/oathkeeper
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.32.0-beta.1
Choose a base ref
...
head repository: ory/oathkeeper
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.32.1-beta.1
Choose a head ref
  • 14 commits
  • 35 files changed
  • 4 contributors

Commits on Oct 20, 2019

  1. docs: Incorporates changes from version v0.32.0-beta.1 [ci skip]

    ORY Continuous Integration committed Oct 20, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f3a0e53 View commit details
  2. docs: Add notes for 0.32.0

    aeneasr authored Oct 20, 2019
    Copy the full SHA
    40e3b89 View commit details

Commits on Oct 26, 2019

  1. Dereference config schema and resolve issues (#282)

    Resolves several documentation issues, see also: ory/docs#217
    
    Closes #234
    Closes #281
    aeneasr authored Oct 26, 2019
    Copy the full SHA
    8cf6868 View commit details
  2. docs: Incorporates changes from version v0.32.0-beta.1-3-g8cf6868 [ci…

    … skip]
    ORY Continuous Integration committed Oct 26, 2019
    Copy the full SHA
    2c8fbf7 View commit details

Commits on Oct 27, 2019

  1. vendor: Update ory/x/viperx dependency (#285)

    This patch automatically binds environment variables to configuration keys. This patch resolves several issues:
    
    - closes #276
    - closes #270
    - closes #279
    - closes #280
    
    Aösp resolves fsnotify permission test issues on macOS
    aeneasr authored Oct 27, 2019
    Copy the full SHA
    0ef3bce View commit details

Commits on Oct 28, 2019

  1. Copy the full SHA
    eaad598 View commit details
  2. Fix broken readme headlines

    aeneasr committed Oct 28, 2019
    Copy the full SHA
    2e8109a View commit details
  3. Copy the full SHA
    aa8deef View commit details
  4. Copy the full SHA
    08d42da View commit details
  5. docs: Incorporates changes from version v0.32.0-beta.1-9-g08d42da [ci…

    … skip]
    ORY Continuous Integration committed Oct 28, 2019
    Copy the full SHA
    6ce3344 View commit details
  6. Copy the full SHA
    7892d2f View commit details
  7. docs: Incorporates changes from version v0.32.0-beta.1-11-g7892d2f [c…

    …i skip]
    ORY Continuous Integration committed Oct 28, 2019
    Copy the full SHA
    c41ecd4 View commit details

Commits on Oct 30, 2019

  1. Copy the full SHA
    1910bbe View commit details
  2. docs: Incorporates changes from version v0.32.0-beta.1-13-g1910bbe [c…

    …i skip]
    ORY Continuous Integration committed Oct 30, 2019
    Copy the full SHA
    d45e1a0 View commit details
Showing with 1,141 additions and 422 deletions.
  1. +824 −98 .schemas/config.schema.json
  2. +5 −0 .schemas/pipeline/authenticators.anonymous.schema.json
  3. +5 −0 .schemas/pipeline/authenticators.cookie_session.schema.json
  4. +5 −0 .schemas/pipeline/authenticators.jwt.schema.json
  5. +5 −0 .schemas/pipeline/authenticators.noop.schema.json
  6. +5 −0 .schemas/pipeline/authenticators.oauth2_client_credentials.schema.json
  7. +5 −0 .schemas/pipeline/authenticators.oauth2_introspection.schema.json
  8. +5 −0 .schemas/pipeline/authenticators.unauthorized.schema.json
  9. +4 −0 .schemas/pipeline/authorizers.allow.schema.json
  10. +4 −0 .schemas/pipeline/authorizers.deny.schema.json
  11. +5 −0 .schemas/pipeline/authorizers.keto_engine_acp_ory.schema.json
  12. +5 −0 .schemas/pipeline/mutators.cookie.schema.json
  13. +5 −0 .schemas/pipeline/mutators.header.schema.json
  14. +5 −0 .schemas/pipeline/mutators.hydrator.schema.json
  15. +5 −0 .schemas/pipeline/mutators.id_token.schema.json
  16. +4 −0 .schemas/pipeline/mutators.noop.schema.json
  17. +79 −123 CHANGELOG.md
  18. +5 −5 LICENSE
  19. +36 −126 README.md
  20. +5 −0 UPGRADE.md
  21. +0 −1 cmd/root.go
  22. +1 −1 docs/.oathkeeper.yaml
  23. +17 −36 driver/configuration/provider_viper.go
  24. +1 −3 driver/configuration/provider_viper_public_test.go
  25. +10 −5 go.mod
  26. +21 −2 go.sum
  27. +2 −1 helper/bearer_test.go
  28. +4 −3 pipeline/authn/authenticator_oauth2_introspection_test.go
  29. +9 −0 pipeline/authz/keto_engine_acp_ory.go
  30. +2 −0 pipeline/authz/keto_engine_acp_ory_test.go
  31. +8 −6 rule/fetcher_default_test.go
  32. +20 −1 test/e2e/run.sh
  33. +1 −1 test/reload/config.1.yaml
  34. +1 −1 test/reload/config.6.yaml
  35. +23 −9 test/reload/run.sh
Loading