Skip to content

Commit 001c647

Browse files
committed
Merge remote-tracking branch 'origin' into kevee/skip-redaction-non-string-console
2 parents 5e03cbc + 13010e1 commit 001c647

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
## [0.2.1] - 2025-07-16
10+
## [0.2.2] - 2025-07-16
1111

1212
### Fixed
1313

1414
- Error when trying to remove secrets from console logs that had non-string parameters.
1515

16+
## [0.2.1] - 2025-05-15
17+
18+
### Fixed
19+
20+
- Changed the redacted value of input secrets to match that in the Airtable editor.
21+
1622
## [0.2.0] - 2025-05-08
1723

1824
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-environment-airtable-script",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "A jest environment for testing Airtable scripts in extensions and automations",
55
"license": "Apache-2.0",
66
"author": "",

src/environment/console-aggregator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Airtable seems to just track all the secret values and redact them using a search
44
* when outputting the console.
55
*/
6-
const SECRET_VALUE_REDACTED: string = '[secret value redacted]'
6+
const SECRET_VALUE_REDACTED: string = '[secret value is hidden]'
77

88
type ConsoleMessage = {
99
type: 'log' | 'warn' | 'error'

0 commit comments

Comments
 (0)