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.17.1-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.17.2-beta.1
Choose a head ref
  • 3 commits
  • 9 files changed
  • 2 contributors

Commits on Jul 23, 2019

  1. docs: Incorporates changes from version v0.17.1-beta.1

    ORY Continuous Integration committed Jul 23, 2019
    Copy the full SHA
    64d180f View commit details
  2. docs: Updates issue and pull request templates (#226)

    Signed-off-by: aeneasr <aeneas@ory.sh>
    aeneasr authored Jul 23, 2019
    Copy the full SHA
    007d491 View commit details

Commits on Aug 2, 2019

  1. Copy the full SHA
    92b769b View commit details
Showing with 731 additions and 268 deletions.
  1. +0 −10 .github/ISSUE_TEMPLATE/security.md
  2. +33 −0 .github/stale.yml
  3. +580 −215 CHANGELOG.md
  4. +1 −1 Dockerfile
  5. +0 −1 README.md
  6. +0 −1 UPGRADE.md
  7. +1 −1 internal/driver.go
  8. +59 −39 rule/fetcher_default.go
  9. +57 −0 rule/fetcher_default_test.go
10 changes: 0 additions & 10 deletions .github/ISSUE_TEMPLATE/security.md

This file was deleted.

33 changes: 33 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 1
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 2
# Issues with these labels will never be considered stale
exemptLabels:
- pinned
- security
# Label to use when marking an issue as stale
staleLabel: stale
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
Thank you for your contribution, we value it! However, this issue
has been marked as stale because it has not had recent activity, or
because it does not comply with our contribution guidelines. If it
is the latter, please follow the instructions from the comment above
to comply with our guidelines.
It will be closed if no further activity occurs. Thank you for your
contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false

# Set to true to ignore issues in a project (defaults to false)
exemptProjects: false

# Set to true to ignore issues in a milestone (defaults to false)
exemptMilestones: false

# Set to true to ignore issues with an assignee (defaults to false)
exemptAssignees: false

onlyLabels:
- needs-context
Loading