Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Dec 5, 2025

Bumps @microsoft/applicationinsights-web from 3.3.6 to 3.3.10.

Release notes

Sourced from @​microsoft/applicationinsights-web's releases.

3.3.10

Changelog

This release includes:

  • Support for custom providers for Offline Channel which has added customProvider and customUnloadProvider to the IOfflineChannelConfiguration.
  • IAnalyticsConfig is exported for Analytics extension.
  • redactUrls and redactQueryParams are added to IConfiguration to support URL redaction.

#2649 [Main][Task] 27922617: Provide Custom Provider Under Web Worker for Offline Channel #2638 [Main][Task] 34470593: Update Async Tests Under Dependencies Extension To Use the Modern AsyncQueue Pattern #2637 [Main][Task] 34470593: Update AISKU Async Tests To Use the Modern AsyncQueue Pattern #2636 Fix TypeError in Click Analytics Data Collector #2633 Fix flush method root cause - handle async callbacks in _doSend with proper error handling #2632 [Feature] Implement cookie caching when disabled and automatic flushing when enabled with backward compatibility option #2625 Add Azure API Management proxy documentation to FAQ sections #2607 Update Async Tests Under AISKULight to Use the Modern AsyncQueue Pattern #2597 Fix TypeScript compatibility issue with ITelemetryPlugin interface #2595 Fix trackPageView not resetting maxAjaxCallsPerView counter #2583 Create IAnalyticsConfig interface to properly define AnalyticsPlugin configuration subset #2625 Add Azure API Management proxy documentation to FAQ sections #2627 Add weekly GitHub action to delete closed and merged branches #2635 Fix issue #2634 moving the conditional check for filtering #2549 Redacting urls before sending to telemetry data #2622 Suppressed credentials inline to avoid credscan false positive

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from @​microsoft/applicationinsights-web's changelog.

3.3.10 (Sept 22nd, 2025)

Changelog

  • #2649 [Main][Task] 27922617: Provide Custom Provider Under Web Worker for Offline Channel
  • #2638 [Main][Task] 34470593: Update Async Tests Under Dependencies Extension To Use the Modern AsyncQueue Pattern
  • #2637 [Main][Task] 34470593: Update AISKU Async Tests To Use the Modern AsyncQueue Pattern
  • #2636 Fix TypeError in Click Analytics Data Collector
  • #2633 Fix flush method root cause - handle async callbacks in _doSend with proper error handling
  • #2632 [Feature] Implement cookie caching when disabled and automatic flushing when enabled with backward compatibility option
  • #2625 Add Azure API Management proxy documentation to FAQ sections
  • #2607 Update Async Tests Under AISKULight to Use the Modern AsyncQueue Pattern
  • #2597 Fix TypeScript compatibility issue with ITelemetryPlugin interface
  • #2595 Fix trackPageView not resetting maxAjaxCallsPerView counter
  • #2583 Create IAnalyticsConfig interface to properly define AnalyticsPlugin configuration subset
  • #2625 Add Azure API Management proxy documentation to FAQ sections
  • #2627 Add weekly GitHub action to delete closed and merged branches
  • #2635 Fix issue #2634 moving the conditional check for filtering
  • #2549 Redacting urls before sending to telemetry data
  • #2622 Suppressed credentials inline to avoid credscan false positive

Potential breaking changes

Renamed flush method parameter from async to isAsync in IChannelControls interface to avoid potential keyword conflicts (only affects code that relies on named parameters)

  • Fixed return type of flush method to properly include boolean when callbacks complete synchronously
  • Fixed root cause where _doSend() couldn't handle asynchronous callbacks from preparePayload() when compression is enabled
  • await applicationInsights.flush() now works correctly with compression enabled
  • Added proper error handling and promise rejection propagation through async callback chains
  • Improved handling of both synchronous and asynchronous callback execution patterns
  • No polling overhead - uses direct callback invocation for better performance

Interfaces change:

// Before:
flush(async: boolean = true, callBack?: (flushComplete?: boolean) => void): void | IPromise<boolean>;
// After:
flush(isAsync: boolean = true, callBack?: (flushComplete?: boolean) => void, sendReason?: SendRequestReason): boolean | void | IPromise<boolean>;

This is only a breaking change if you rely on named parameters. If you have custom channels or plugins that implement the IChannelControls interface directly and rely on passing named parameters, you will need to update the parameter name from async to isAsync in your implementation.

This release also includes:

  • Support for custom providers for Offline Channel which has added customProvider and customUnloadProvider interfaces to the IOfflineChannelConfiguration.
  • IAnalyticsConfig is exported for Analytics extension.
  • redactUrls and redactQueryParams are added to IConfiguration to support URL redaction.

Potential behavioral changes

... (truncated)

Commits
  • 4835556 [Release] Increase version to 3.3.10 (#2650)
  • a17c60d [Main][Task] 27922617: Provide Custom Provider Under Web Worker for Offline C...
  • f7a8f9d [Main][Task] 34470593: Update Async Tests Under Dependencies Extension To Use...
  • 1ab8a0f [Main][Task] 34470593: Update AISKU Async Tests To Use the Modern AsyncQueue ...
  • 388ad52 [Feature] Implement cookie caching when disabled and automatic flushing when ...
  • d92db5c Ensure parent is defined before checking length in getImageHref function (#2636)
  • 01c7177 Fix issue #2634 moving the conditional check for filtering (#2635)
  • 8edf49b Fix flush method root cause - handle async callbacks in _doSend with proper e...
  • 9b8a82a Update Async Tests Under AISKULight to Use the Modern AsyncQueue Pattern (#2607)
  • 79f4585 Fix jq syntax error in Delete Merged Branches workflow (#2630)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@microsoft/applicationinsights-web](https://github.com/microsoft/ApplicationInsights-JS) from 3.3.6 to 3.3.10.
- [Release notes](https://github.com/microsoft/ApplicationInsights-JS/releases)
- [Changelog](https://github.com/microsoft/ApplicationInsights-JS/blob/main/RELEASES.md)
- [Commits](microsoft/ApplicationInsights-JS@3.3.6...3.3.10)

---
updated-dependencies:
- dependency-name: "@microsoft/applicationinsights-web"
  dependency-version: 3.3.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Dec 5, 2025

Labels

The following labels could not be found: frontend. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant