Skip to content

Commit

Permalink
version bump to include python-jss changes for urllib3 and hidden shares
Browse files Browse the repository at this point in the history
  • Loading branch information
Graham authored and Graham committed Nov 7, 2019
1 parent 6441da4 commit 830dc2f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ All notable changes to this project will be documented in this file. This projec
- The above efforts to improve package upload reliability may conversely cause problems on setups with multiple DPs of different types. Scenarios involving Cloud plus Local DPs are not yet tested, and there probably needs to be a more intelligent method of treating each DP as a separate package upload process than currently exists.


## [1.0.5] - 2019-11-05 - 1.0.5

This is a bugfix release to incorporate an updates to the bundled `python-jss` - an update to `urllib3` and a fix to allow hidden shares (with `$` in the share name).


## [1.0.4] - 2019-10-15 - 1.0.4

This is a bugfix release to improve performance for Jamf Cloud customers using a local DP as the Master.
Expand Down
8 changes: 4 additions & 4 deletions JSSImporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@


__all__ = ["JSSImporter"]
__version__ = "1.0.4"
__version__ = "1.0.5"
REQUIRED_PYTHON_JSS_VERSION = StrictVersion("2.0.1")


Expand Down Expand Up @@ -479,8 +479,8 @@ def handle_package(self):
self.repo_type() == "AFP" or self.repo_type() == "Local"):
# For local DPs we check that the package is already on the distribution point and upload it if not
if self.jss.distribution_points.exists(os.path.basename(pkg_path)):
self.output("Package '{}' found, so copy to {} repo not required."
"(Delete package from repo and re-run recipe if you need to"
self.output("Package '{}' found, so copy to {} repo not required. "
"(Delete package from repo and re-run recipe if you need to "
"update it).".format(self.pkg_name, self.repo_type()))
self.upload_needed = False
else:
Expand All @@ -503,7 +503,7 @@ def handle_package(self):
else:
# repo type that is not supported
raise ProcessorError(
"JSSImporter can't upload the Package at '{}'! Repo type {} is not supported."
"JSSImporter can't upload the Package at '{}'! Repo type {} is not supported. "
"Please reconfigure your JSSImporter prefs.".format(pkg_path, self.repo_type()))

# only update the package object if an upload was carried out
Expand Down
2 changes: 1 addition & 1 deletion pkg/jssimporter/build-info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
<key>suppress_bundle_relocation</key>
<true/>
<key>version</key>
<string>1.0.4</string>
<string>1.0.5</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion version.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<plist version="1.0">
<dict>
<key>Version</key>
<string>1.0.4</string>
<string>1.0.5</string>
</dict>
</plist>

0 comments on commit 830dc2f

Please sign in to comment.