File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
- ## [ 0.2.1 ] - 2025-07-16
10
+ ## [ 0.2.2 ] - 2025-07-16
11
11
12
12
### Fixed
13
13
14
14
- Error when trying to remove secrets from console logs that had non-string parameters.
15
15
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
+
16
22
## [ 0.2.0] - 2025-05-08
17
23
18
24
### Added
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " jest-environment-airtable-script" ,
3
- "version" : " 0.2.1 " ,
3
+ "version" : " 0.2.2 " ,
4
4
"description" : " A jest environment for testing Airtable scripts in extensions and automations" ,
5
5
"license" : " Apache-2.0" ,
6
6
"author" : " " ,
Original file line number Diff line number Diff line change 3
3
* Airtable seems to just track all the secret values and redact them using a search
4
4
* when outputting the console.
5
5
*/
6
- const SECRET_VALUE_REDACTED : string = '[secret value redacted ]'
6
+ const SECRET_VALUE_REDACTED : string = '[secret value is hidden ]'
7
7
8
8
type ConsoleMessage = {
9
9
type : 'log' | 'warn' | 'error'
You can’t perform that action at this time.
0 commit comments