You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update development branch with current proposed updates (#22)
* Add Support for Passwords API
With the release of API v1.8.0, a new Passwords endpoint was added.
This update uncovers that endpoint in the PowerShell module with the
addition of the following functions:
- `New-ITGluePasswords`
- `Get-ITGluePasswords`
- `Set-ITGluePasswords`
Release notes for the Passwords api are available
[here](https://kb.itglue.com/hc/en-us/articles/360001797531-Release-Note
s-1-8-0-API).
——————
The Module Version was also updated to reflect the API version it
supports.
* Add support for EU API endpoints
API endpoints have been added for deployments in the EU datacenter.
This update uncovers the ability to use the EU API links by use of a
`-data_center` (or `-dc`) option on the `Add-ITGlueBaseURI` function.
This optional argument takes `EU` and `US` as options, however the US
datacenter is still kept as the default even if no arguments are given.
—
HTTPS is also set by default for both the US and EU data centers.
* Added enhanced filtering capability
Most endpoints (especially Index/Show, and Update) now allow for
expanded filtering capabilities. This updated exposes those new
capabilities as command parameters.
* Fixed Configurations Return Data
Fixed a bug that was pointed out that caused incorrect data to be
returned from the `Get-ITGlueConfigurations’ function.
* Compatability Update
All resources now match the current API spec given at
https://api.itglue.com/developer.
This includes enhanced bulk update, bulk destroy, and filtering
capabilities.
Thanks to @TheMattCollins0 for changes to make adding an API key via
command line easier.
* Added file to resolve Import-Module HRESULT: 0x8013104
* Support Nested Relationships Route for Show
* Update Documents in Development branch (#25)
* Markdown formatting edits and update doc for additional commands
* Markdown formatting edits
* Update to Current API Standards
This update overhauls all endpoints to bring them current with the IT Glue API. Any and all filtering, options, and endpoints are covered.
:warning: This is a **breaking** update. In order to better match the API docs that IT Glue presents at https://api.itglue.com/development, the `$data` input taken for module functions will *only* consist of the information present in the `data` array, rather than requiring what was effectively a `$body` request with a data array nested as a value.
Some other styalistic choices were propogated throughout the code as well. For example, the `-important` parameter that some functions support now is a boolean. You no longer have to pass `0` or `1`, but can also pass `$true`, `$false`, or any other PowerShell boolean equivalent.
* Minor ITGlueAPI.psd1 file edits (#27)
* Markdown formatting edits and update doc for additional commands
* Markdown formatting edits
* Intial check in of basic tests for the module
* Expanded testing
* Minor edits
* Revert "Expanded testing"
This reverts commit 6c8f31e.
* Revert "Intial check in of basic tests for the module"
This reverts commit ead9f25.
* Update to 2.0.0
The module version has been updated to `2.0.0`.
From now on, Semantic Versioning (https://semver.org) should be followed on the module.
Given a version number MAJOR.MINOR.PATCH, increment the:
MAJOR version when you make incompatible API changes,
MINOR version when you add functionality in a backwards-compatible manner, and
PATCH version when you make backwards-compatible bug fixes.
* Implement Error Handling on REST Headers
This implements the fix suggested by @ecspresso (thanks!!) and closes#29.
Co-Authored-By: Emile <[email protected]>
***Ensure the bug was not already reported** by searching on GitHub under [Issues](https://github.com/itglue/powershellwrapper/issues).
6
6
7
7
* If you're unable to find an open issue addressing the problem, [open a new one](https://github.com/itglue/powershellwrapper/issues/new). Be sure to include a **title and clear description**, as much relevant information as possible, and a **code sample** or an **executable test case** demonstrating the expected behavior that is not occurring.
8
8
9
-
####**Did you write a patch that fixes a bug?**
9
+
## **Did you write a patch that fixes a bug?**
10
10
11
-
* Open a new GitHub pull request with the patch.
11
+
* Open a new GitHub pull request (PR) with the patch.
12
12
13
13
* Ensure the PR description clearly describes the problem and solution. Include the relevant issue number if applicable.
14
14
15
-
####**Do you intend to add a new feature or change an existing one?**
15
+
## **Do you intend to add a new feature or change an existing one?**
16
16
17
17
* Suggest your change by creating a GitHub issue tagged with "Enhancement"
18
18
19
19
* Create a branch and start working on your new feature, following feedback from the community.
20
20
21
21
* Once the new feature is ready, submit a pull request. If the feature is accepted and has passed all CI testing, the pull request will be approved.
22
22
23
-
24
23
Thanks! :heart:
25
24
26
25
---
27
26
28
-
> Based off of the Ruby on Rails project [contribution guide](https://github.com/rails/rails/blob/master/CONTRIBUTING.md).
27
+
> Based off of the Ruby on Rails project [contribution guide](https://github.com/rails/rails/blob/master/CONTRIBUTING.md).
0 commit comments