Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!--
A new scriv changelog fragment.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is scriv?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the tooling we use to create changelog !

This is the "basic" template and everything is commented appart from


- New `honeytokens:check` token scope for prefix-based honeytoken lookup.```


Uncomment the section that is right (remove the HTML comment wrapper).
For top level release notes, leave all the headers commented out.
-->

<!--
### Removed

- A bullet item for the Removed category.

-->

### Added

- New `honeytokens:check` token scope for prefix-based honeytoken lookup.

<!--
### Changed

- A bullet item for the Changed category.

-->
<!--
### Deprecated

- A bullet item for the Deprecated category.

-->
<!--
### Fixed

- A bullet item for the Fixed category.

-->
<!--
### Security

- A bullet item for the Security category.

-->
1 change: 1 addition & 0 deletions pygitguardian/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -762,6 +762,7 @@ class TokenScope(str, Enum):
AUDIT_LOGS_READ = "audit_logs:read"
HONEYTOKENS_READ = "honeytokens:read"
HONEYTOKENS_WRITE = "honeytokens:write"
HONEYTOKENS_CHECK = "honeytokens:check"
API_TOKENS_READ = "api_tokens:read"
API_TOKENS_WRITE = "api_tokens:write"
IP_ALLOWLIST_READ = "ip_allowlist:read"
Expand Down
Loading