Skip to content

Commit 8463a01

Browse files
authored
axios bump (#90)
1 parent 148de1f commit 8463a01

File tree

4 files changed

+52
-33
lines changed

4 files changed

+52
-33
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 3.2.2 (March 21, 2025)
2+
* Updated maester-client to 6.0.0
3+
14
## 3.2.1 (September 11, 2024)
25
* Updated maester-client
36

package-lock.json

+44-28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elastic.io/component-commons-library",
3-
"version": "3.2.1",
3+
"version": "3.2.2-dev.1",
44
"description": "Library for most common component development cases",
55
"author": {
66
"name": "elastic.io GmbH",
@@ -29,11 +29,11 @@
2929
},
3030
"dependencies": {
3131
"@elastic.io/jsonata-moment": "^1.1.6",
32-
"@elastic.io/maester-client": "^5.0.3",
32+
"@elastic.io/maester-client": "^6.0.0",
3333
"@elastic.io/ntlm-client": "^1.0.0",
3434
"better-npm-audit": "^3.11.0",
3535
"async": "^3.2.6",
36-
"axios": "^0.27.2",
36+
"axios": "^1.8.2",
3737
"bunyan": "^1.8.15",
3838
"bunyan-format": "^0.2.1",
3939
"bunyan-serializers": "^0.0.2",

src/platformApi/PlatformApiRestClient.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ export class PlatformApiRestClient extends BasicAuthRestClient {
3030
super(emitter, myCfg);
3131
this.usingTaskUser = !cfg.email;
3232
if (this.usingTaskUser) {
33-
this.emitter.logger.info(`Will connect to ${baseUrl} as task user`);
33+
this.emitter.logger.debug(`Will connect to ${baseUrl} as task user`);
3434
} else {
35-
this.emitter.logger.info(`Will connect to ${baseUrl} as specified user`);
35+
this.emitter.logger.debug(`Will connect to ${baseUrl} as specified user`);
3636
}
3737
this.userAgent = userAgent;
3838
this.msgId = msgId;

0 commit comments

Comments
 (0)