mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-07 07:06:56 +00:00
Update to v2.7.3 (#479)
This commit is contained in:
parent
0010502df7
commit
cb841f2c86
2 changed files with 6 additions and 11 deletions
|
|
@ -2,6 +2,12 @@
|
||||||
|
|
||||||
* Add changes here
|
* Add changes here
|
||||||
|
|
||||||
|
## 2.7.3 (July 13, 2023)
|
||||||
|
|
||||||
|
Bugs:
|
||||||
|
|
||||||
|
* Revert to the handling of secrets in JSON format since v2.1.2 [GH-478](https://github.com/hashicorp/vault-action/pull/478)
|
||||||
|
|
||||||
## 2.7.2 (July 6, 2023)
|
## 2.7.2 (July 6, 2023)
|
||||||
|
|
||||||
Bugs:
|
Bugs:
|
||||||
|
|
|
||||||
11
dist/index.js
vendored
11
dist/index.js
vendored
|
|
@ -19019,18 +19019,7 @@ async function selectData(data, selector) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (result.startsWith(`"`)) {
|
if (result.startsWith(`"`)) {
|
||||||
// Support multi-line secrets like JSON strings and ssh keys, see https://github.com/hashicorp/vault-action/pull/173
|
|
||||||
// Deserialize the value so that newlines and special characters are
|
|
||||||
// not escaped in our return value.
|
|
||||||
result = JSON.parse(result);
|
result = JSON.parse(result);
|
||||||
} else {
|
|
||||||
// Support secrets stored in Vault as pure JSON, see https://github.com/hashicorp/vault-action/issues/194
|
|
||||||
// Serialize the value so that any special characters in the data are
|
|
||||||
// properly escaped.
|
|
||||||
result = JSON.stringify(result);
|
|
||||||
// strip the surrounding quotes added by stringify because the data did
|
|
||||||
// not have them in the first place
|
|
||||||
result = result.substring(1, result.length - 1);
|
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue