Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
Release 2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
cconard96 committed Jun 4, 2021
1 parent f5ad32b commit db88d75
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 1 deletion.
54 changes: 54 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,59 @@
# Jamf Plugin for GLPI Changelog

## [2.1.5]

### Fixes

- Fixed PHP warning regarding Session variables when using GLPI CLI tool
- Fixed Marketplace compatibility for some AJAX urls
- Added missing rights for "Jamf Computers" addition in the 2.1.2 migration. If this is a new installation, the new rights will be added automatically. If this is an upgrade, the rights will need added to Profiles manually.
- Fixed missing dashboard cards

## [2.1.4]

### Changes

- Improved dark mode colors on MDM Commands tab

### Fixes

- Fixed some table names in queries which was causing sync and discovery to fail.


## [2.1.3]

### Fixes

- Prevent orphaned software links after purging software in GLPI. Existing orphans will be cleaned as a part of the upgrade.
- Avoid double encryption on the JSS server password.
- Fix table name causing automatic sync issues.

## [2.1.2]

### Fixes

- Fix some random property access issues where a field is a common device field (Mostly during import/sync) instead of a specific device type such as Mobile Device or Computer.
- Fix User matching
- Fix/Implement Old Software installation cleanup

## [2.1.1]

### Fixes

- Some asset form fixes


## [2.1.0]

### Added

- Computer syncing support
- New plugin update/migration system to make it easier to manage changes between versions

### Changed
- JSS password will now be encrypted using Sodium (GLPI's new encryption after they moved away from a shared key). This password will be re-encrypted automatically.


## [2.0.0]

### Added
Expand Down
25 changes: 25 additions & 0 deletions jamf.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,31 @@ Versioning/Support
<author>Curtis Conard</author>
</authors>
<versions>
<version>
<num>2.1.5</num>
<compatibility>~9.5.0</compatibility>
<download_url>https://github.com/cconard96/jamf/releases/download/v2.1.5/jamf-2.1.5.zip</download_url>
</version>
<version>
<num>2.1.4</num>
<compatibility>~9.5.0</compatibility>
<download_url>https://github.com/cconard96/jamf/releases/download/v2.1.4/jamf-2.1.4.zip</download_url>
</version>
<version>
<num>2.1.3</num>
<compatibility>~9.5.0</compatibility>
<download_url>https://github.com/cconard96/jamf/releases/download/v2.1.3/jamf-2.1.3.zip</download_url>
</version>
<version>
<num>2.1.2</num>
<compatibility>~9.5.0</compatibility>
<download_url>https://github.com/cconard96/jamf/releases/download/v2.1.2/jamf-2.1.2.zip</download_url>
</version>
<version>
<num>2.1.1</num>
<compatibility>~9.5.0</compatibility>
<download_url>https://github.com/cconard96/jamf/releases/download/v2.1.1/jamf-2.1.1.zip</download_url>
</version>
<version>
<num>2.1.0</num>
<compatibility>~9.5.0</compatibility>
Expand Down
2 changes: 1 addition & 1 deletion setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
--------------------------------------------------------------------------
*/

define('PLUGIN_JAMF_VERSION', '2.1.3');
define('PLUGIN_JAMF_VERSION', '2.1.5');
define('PLUGIN_JAMF_MIN_GLPI', '9.5.0');
define('PLUGIN_JAMF_MAX_GLPI', '9.6.0');

Expand Down

0 comments on commit db88d75

Please sign in to comment.