Skip to content

Commit

Permalink
Add PkgSigner and GPGSignatureVerifier conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
homebysix committed Nov 20, 2021
1 parent d65b57d commit 3e5c5b6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).

## [1.10.2] - 2021-11-20
## [1.11.0] - 2021-11-20

### Added
- Added processor type conventions for [JamfUploader](https://grahamrpugh.com/2020/12/14/introducing-jamf-upload.html) (`.jamf`), [PkgSigner](https://derflounder.wordpress.com/2021/07/30/signing-autopkg-built-packages-using-a-sign-recipe/) (`.sign`), and [GPGSignatureVerifier](https://github.com/autopkg/gerardkok-recipes/blob/master/SharedProcessors/GPGSignatureVerifier.py) (`.verify`) families of recipes.
- `BrewCaskInfoProvider` has been added to the list of deprecated AutoPkg processors.
- More output when `check-git-config-email` fails.
- Added processor type conventions for [JamfUploader](https://grahamrpugh.com/2020/12/14/introducing-jamf-upload.html) (`.jamf`) family of recipes.

## [1.10.1] - 2021-02-21

Expand Down
7 changes: 7 additions & 0 deletions pre_commit_hooks/check_autopkg_recipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,8 +401,15 @@ def validate_required_proc_for_types(process, filename):
"munki": ["MunkiImporter"],
"pkg": ["AppPkgCreator", "PkgCreator", "PkgCopier"],
"install": ["InstallFromDMG", "Installer"],
# https://github.com/jssimporter/JSSImporter
"jss": ["JSSImporter"],
# https://github.com/autopkg/filewave
"filewave": ["com.github.autopkg.filewave.FWTool/FileWaveImporter"],
# https://derflounder.wordpress.com/2021/07/30/signing-autopkg-built-packages-using-a-sign-recipe/
"sign": ["com.github.rtrouton.SharedProcessors/PkgSigner"],
"verify": [
"com.github.autopkg.gerardkok-recipes.SharedProcessors/GPGSignatureVerifier"
],
}

passed = True
Expand Down

0 comments on commit 3e5c5b6

Please sign in to comment.