Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e9e8acafe4 | |||
| c763db40bb |
@@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-11-05 - 4.1.34 - fix(connector)
|
||||||
|
Remove unused typedrequest implementation in cloudlyconnector
|
||||||
|
|
||||||
|
- Removed commented out code that initialized typedrequest in CloudlyConnector.
|
||||||
|
|
||||||
## 2024-11-05 - 4.1.33 - fix(core)
|
## 2024-11-05 - 4.1.33 - fix(core)
|
||||||
Updated dependencies and improved npm preparation logic.
|
Updated dependencies and improved npm preparation logic.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@ship.zone/npmci",
|
"name": "@ship.zone/npmci",
|
||||||
"version": "4.1.33",
|
"version": "4.1.34",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A tool to streamline Node.js and Docker workflows within CI environments, particularly GitLab CI, providing various CI/CD utilities.",
|
"description": "A tool to streamline Node.js and Docker workflows within CI environments, particularly GitLab CI, providing various CI/CD utilities.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@ship.zone/npmci',
|
name: '@ship.zone/npmci',
|
||||||
version: '4.1.33',
|
version: '4.1.34',
|
||||||
description: 'A tool to streamline Node.js and Docker workflows within CI environments, particularly GitLab CI, providing various CI/CD utilities.'
|
description: 'A tool to streamline Node.js and Docker workflows within CI environments, particularly GitLab CI, providing various CI/CD utilities.'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,14 +26,6 @@ export class CloudlyConnector {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const typedrequest =
|
// lets push to cloudly here
|
||||||
new plugins.typedrequest.TypedRequest<plugins.servezoneInterfaces.requests.IRequest_InformAboutNewContainerImage>(
|
|
||||||
`https://${cloudlyUrl}/typedrequest`,
|
|
||||||
'servezonestandard_InformAboutNewContainerVersion'
|
|
||||||
);
|
|
||||||
|
|
||||||
const response = await typedrequest.fire({
|
|
||||||
containerImageInfo: optionsArg,
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user