diff --git a/CHANGELOG.md b/CHANGELOG.md index d41d51e1..85da6f0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ - -## [1.0.1] (2016-12-21) +# Change Log + +All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + + +# 1.1.0 (2017-01-25) ### Bug Fixes @@ -9,14 +13,18 @@ * **api:** fix error message ([c721a07](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/c721a07)) * **api:** geolocation always rejected ([4c70781](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/4c70781)) * **documentation:** add installation instructions ([a288e1b](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/a288e1b)), closes [#4](https://github.com/flyve-mdm/flyve-mdm-glpi/issues/4) +* **documentation:** enhance installation documentation ([ad9dd6d](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/ad9dd6d)) * **documentation:** github template for issues ([d9ad78f](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/d9ad78f)) * **enrollment:** use login isntead of email to find a user ([617425f](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/617425f)) +* **install:** add check for gd extension for PHP ([64a2682](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/64a2682)), closes [#9](https://github.com/flyve-mdm/flyve-mdm-glpi/issues/9) * **install:** prevent warning ([13a5283](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/13a5283)) * **policy:** fix error 500 when parsing a bad UPK file ([c71d434](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/c71d434)) +* **user account:** use constant for default agent application download URL ([c746a9f](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/c746a9f)) ### Features +* add demo mode ([949f7c2](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/949f7c2)) * **api:** expose configuration settings ([e9cd70d](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/e9cd70d)) * **ci:** add webhooks ([8c04079](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/8c04079)) * **device communication:** log inventory errors ([9fc734f](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/9fc734f)) @@ -27,6 +35,3 @@ * **policy:** log filesystem permission issues when saving a file or an app ([b491bcc](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/b491bcc)) * **policy:** prevent conflicting policies to be applied at the same time ([b9a881a](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/b9a881a)) * **policy:** queue mqtt mssage instead of sending it immediately ([8508b85](https://github.com/flyve-mdm/flyve-mdm-glpi/commit/8508b85)) - - - diff --git a/package.json b/package.json new file mode 100644 index 00000000..65788e6c --- /dev/null +++ b/package.json @@ -0,0 +1,31 @@ +{ + "name": "@teclib/flyve-mdm-glpi", + "version": "1.1.0", + "description": "Flyve MDM plugin for GLPI", + "main": "config.js", + "directories": { + "test": "tests" + }, + "scripts": { + "test": "phpunit --verbose", + "release": "standard-version --sign --message 'chore(release): bump to %s and new changelog'" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/flyve-mdm/flyve-mdm-glpi.git" + }, + "keywords": [ + "glpi", + "flyve", + "mdm" + ], + "author": "Thierry Bugier Pineau (https://flyve-mdm.com/)", + "license": "GPL-3.0", + "bugs": { + "url": "https://github.com/flyve-mdm/flyve-mdm-glpi/issues" + }, + "homepage": "https://github.com/flyve-mdm/flyve-mdm-glpi#readme", + "devDependencies": { + "standard-version": "^4.0.0" + } +}