Skip to content

Commit 11eb15d

Browse files
committed
fix: matched redacted secrets to Airtable editor
1 parent fd49610 commit 11eb15d

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.2.1] - 2025-05-15
11+
12+
### Fixed
13+
14+
- Changed the redacted value of input secrets to match that in the Airtable editor.
15+
1016
## [0.2.0] - 2025-05-08
1117

1218
### 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.0",
3+
"version": "0.2.1",
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)