-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rush update --full
and testing #29471
#29655
rush update --full
and testing #29471
#29655
Conversation
…zure/azure-sdk-for-js into harshan/rush-update-full
rush update --full
and testing #29471
/azp run js - storage - ci |
Azure Pipelines could not run because the pipeline triggers exclude this branch/path. |
/azp run js - appconfiguration - ci |
Azure Pipelines could not run because the pipeline triggers exclude this branch/path. |
… harshan/rush-update-full
… harshan/rush-update-full
… harshan/rush-update-full
- remove fallback sanitizers - add removeCentralSanitizers option to the recorder start options
API change check API changes are not detected in this pull request. |
1 similar comment
API change check API changes are not detected in this pull request. |
@@ -66,7 +66,7 @@ | |||
"test:node": "npm run clean && npm run unit-test:node && npm run integration-test:node", | |||
"test": "npm run clean && npm run build:test && npm run unit-test && npm run integration-test", | |||
"unit-test:browser": "dev-tool run test:browser", | |||
"unit-test:node": "dev-tool run test:node-ts-input -- --timeout 300000 --exclude 'test/**/browser/**/*.spec.ts' 'test/**/**/*.spec.ts'", | |||
"unit-test:node": "echo skipped", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wish to handle identity in a follow up PR as it is uncertain on recording with various credentials
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -27,7 +27,8 @@ const replaceableVariables: Record<string, string> = { | |||
}; | |||
|
|||
const recorderOptions: RecorderStartOptions = { | |||
envSetupForPlayback: replaceableVariables | |||
envSetupForPlayback: replaceableVariables, | |||
removeCentralSanitizers: ["AZSDK3493"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are there docs on when and what sanitizers people need to remove?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I saw in some packages like storage-blob
, there is a comment on why we don't need the x-ms-encryption-key-sha256
sanitizer. I'd love to have this guideline too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Scott is working on the docs Azure/azure-sdk-tools#8142
I've added comments for all the current usages.
What's happening?
recorder 3.5.0
withrecorder 3.5.0
recorder 4.x
with therecorder 3.5.0
changes and make sure they are in sync.rush update --full
to get latest recorder and test-credential packagesFuture Work