Skip to content

Commit 3e5c5b6

Browse files
committed
Add PkgSigner and GPGSignatureVerifier conventions
1 parent d65b57d commit 3e5c5b6

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

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

5-
## [1.10.2] - 2021-11-20
5+
## [1.11.0] - 2021-11-20
66

77
### Added
8+
- 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.
89
- `BrewCaskInfoProvider` has been added to the list of deprecated AutoPkg processors.
910
- More output when `check-git-config-email` fails.
10-
- Added processor type conventions for [JamfUploader](https://grahamrpugh.com/2020/12/14/introducing-jamf-upload.html) (`.jamf`) family of recipes.
1111

1212
## [1.10.1] - 2021-02-21
1313

pre_commit_hooks/check_autopkg_recipes.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,8 +401,15 @@ def validate_required_proc_for_types(process, filename):
401401
"munki": ["MunkiImporter"],
402402
"pkg": ["AppPkgCreator", "PkgCreator", "PkgCopier"],
403403
"install": ["InstallFromDMG", "Installer"],
404+
# https://github.com/jssimporter/JSSImporter
404405
"jss": ["JSSImporter"],
406+
# https://github.com/autopkg/filewave
405407
"filewave": ["com.github.autopkg.filewave.FWTool/FileWaveImporter"],
408+
# https://derflounder.wordpress.com/2021/07/30/signing-autopkg-built-packages-using-a-sign-recipe/
409+
"sign": ["com.github.rtrouton.SharedProcessors/PkgSigner"],
410+
"verify": [
411+
"com.github.autopkg.gerardkok-recipes.SharedProcessors/GPGSignatureVerifier"
412+
],
406413
}
407414

408415
passed = True

0 commit comments

Comments
 (0)