File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ 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-05-15
11
+
12
+ ### Fixed
13
+
14
+ - Changed the redacted value of input secrets to match that in the Airtable editor.
15
+
10
16
## [ 0.2.0] - 2025-05-08
11
17
12
18
### Added
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " jest-environment-airtable-script" ,
3
- "version" : " 0.2.0 " ,
3
+ "version" : " 0.2.1 " ,
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