@resolution/jira-api-client 0.4.2 → 0.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/README.md +4 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.4.4](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/compare/v0.4.3...v0.4.4) (2024-06-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* add license information to all packages ([d771640](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/commits/d771640b39b4e9b8901a5d93bf8bec77496c957d))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.4.2](https://bitbucket.org/resolutiongmbh/atlassian-api-clients/compare/v0.4.1...v0.4.2) (2024-06-11)
|
|
7
18
|
|
|
8
19
|
|
package/README.md
CHANGED
|
@@ -132,3 +132,7 @@ export const handler = async ({ payload }) => {
|
|
|
132
132
|
* [Jira Software API](https://developer.atlassian.com/cloud/jira/software/rest/intro/)
|
|
133
133
|
* [Atlassian Connect for JIRA](https://developer.atlassian.com/cloud/jira/platform/getting-started-with-connect/)
|
|
134
134
|
* [Atlassian Forge for JIRA](https://developer.atlassian.com/cloud/jira/platform/getting-started-with-forge//)
|
|
135
|
+
|
|
136
|
+
## License
|
|
137
|
+
|
|
138
|
+
This repository is licensed under the [MIT License](./LICENSE.md).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@resolution/jira-api-client",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"description": "JIRA Platform & Software API Client based on OpenAPI Schema from Atlassian.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
},
|
|
36
36
|
"homepage": "https://bitbucket.org/resolutiongmbh/atlassian-api-clients#readme",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@resolution/atlassian-api-common": "^0.4.
|
|
38
|
+
"@resolution/atlassian-api-common": "^0.4.4"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "50f8d6611b4048dff84c30c74887058eabf0466b"
|
|
44
44
|
}
|