Skip to content

Commit 558998b

Browse files
committed
Add checks for MunkiOptionalReceiptEditor processor
1 parent f093f23 commit 558998b

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ All notable changes to this project will be documented in this file. This projec
1212

1313
## [Unreleased]
1414

15-
Nothing yet.
15+
### Added
16+
17+
- Added compatibility checks for MunkiOptionalReceiptEditor processor, included in AutoPkg 2.7+.
1618

1719
## [1.12.3] - 2022-04-09
1820

pre_commit_hooks/check_autopkg_recipes.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ def validate_minimumversion(process, min_vers, ignore_min_vers_before, filename)
208208
"MunkiCatalogBuilder": "0.1.0",
209209
"MunkiImporter": "0.1.0",
210210
"MunkiInstallsItemsCreator": "0.1.0",
211+
"MunkiOptionalReceiptEditor": "2.7",
211212
"MunkiPkginfoMerger": "0.1.0",
212213
"MunkiSetDefaultCatalog": "0.4.2",
213214
"PackageRequired": "0.5.1",
@@ -376,7 +377,7 @@ def validate_proc_type_conventions(process, filename):
376377
"""Ensure that processors used align with recipe type conventions."""
377378

378379
# For each processor type, this is the list of processors that
379-
# we only expect to see in that type.
380+
# we only expect to see in that type. List order is unimportant.
380381
proc_type_conventions = {
381382
"download": [
382383
"SparkleUpdateInfoProvider",
@@ -390,6 +391,7 @@ def validate_proc_type_conventions(process, filename):
390391
"MunkiPkginfoMerger",
391392
"MunkiCatalogBuilder",
392393
"MunkiSetDefaultCatalog",
394+
"MunkiOptionalReceiptEditor",
393395
"MunkiImporter",
394396
],
395397
"pkg": ["AppPkgCreator", "PkgCreator"],

0 commit comments

Comments
 (0)