This is the first full supported release of the 3.4.x version line. While a 3.4.0-beta was previously released for early testing and validation, version 3.4.0 was not released as a standard supported version — 3.4.1 is the first production-ready release in this series. The @microsoft/1ds-post-js channel is numbered 4.4.1 and requires v3.4.1.
Significant Changes (since 3.3.11)
The following are the significant changes since the previous full release (3.3.11). Some of these changes were previously included in the 3.4.0-beta release.
-
W3C Trace State Support: Added full support for managing W3C Trace State and sending headers in distributed tracing, including new distributed tracing modes
AI_AND_W3C_TRACEandW3C_TRACEthat enable thetracestateheader to be sent with requests when trace state information is available, the existing states will continue to not send the header. -
New Distributed Tracing Modes: Added new
eDistributedTracingModesenum values:AI_AND_W3C_TRACE(17): Sends Application Insights headers + W3Ctraceparent+ W3Ctracestateheaders (if state value is present)W3C_TRACE(18): Sends only W3Ctraceparent+ W3Ctracestateheaders (if state value is present)
-
Enhanced Distributed Tracing: Refactored the distributed tracing implementation to provide better support for the W3C Trace Context specification and prepare for future OpenTelemetry Span-style API integration.
-
New W3C TraceState API: Introduced the
IW3cTraceStateinterface that provides a mutable, ordered list of key/value pairs for trace state information with proper parent-child relationships. -
OpenTelemetry Integration Preparation: Added foundational OpenTelemetry interfaces (
IOTelSpanContext,IOTelTraceState) to provide OpenTelemetry API compatibility. -
Additional Configuration: Added new configuration properties for W3C trace state support:
traceHdrMode: Controls if the SDK should look for thetraceparentand/ortracestatevalues from service timing headers or meta tags from the initial page load (inIConfiguration)- Enhanced
distributedTracingModeproperty to support the new W3C trace state modes (inICorrelationConfig)
-
Dependencies Extension: The dependency tracking extension now includes additional logic for W3C trace state handling, which may affect custom dependency listeners or initializers. The following interfaces and functions have been enhanced with W3C trace state support:
IDependencyListenerDetailsinterface now also includes a readonlytraceStatealong with the previoustraceId,spanId,traceFlagspropertiesaddDependencyListener()function now provides access to W3C trace state information through the enhanced details objectaddDependencyInitializer()function continues to work with existing dependency telemetry processing- Custom dependency listeners can now access and modify W3C trace state information before requests are sent
-
Enhanced Cookie Management: Cookie values are now cached in memory when cookies are disabled instead of being lost, enabling support for consent banner workflows where cookies must be temporarily disabled until user approval. Automatic flushing occurs when cookies are re-enabled.
-
OsPlugin Reliability Improvements: Improved OsPlugin with proactive OS retrieval, unload handling, and session caching for more reliable OS detection.
-
URL Redaction Enhancements: Made URL redaction more dynamic for improved flexibility in field redaction scenarios.
Package Deprecation
The following packages have been merged into @microsoft/applicationinsights-core-js and are now deprecated. They continue to be published as backward-compatible shims (re-exporting from Core) so existing code will not break, but they are no longer used as dependencies by the main SDK packages. You should stop importing from these packages and migrate to @microsoft/applicationinsights-core-js directly.
-
@microsoft/applicationinsights-common— All exports have been merged into@microsoft/applicationinsights-core-js. The package is now a compatibility shim that re-exports from Core. See the Migration Guide for details on updating your imports. This package will be removed in a future major release (4.0.0). -
@microsoft/1ds-core-js— All exports have been merged into@microsoft/applicationinsights-core-js. The package is now a compatibility shim that re-exports from Core. See the 1DS Core Migration Guide for class/import name changes and migration steps. Consumers should update their imports to reference@microsoft/applicationinsights-core-jsdirectly. This package will be removed in a future major release (4.0.0).
Breaking Changes
The following is a list of known breaking changes for anyone attempting to implement the interfaces, for end-users / consumers of the existing interface this is considered to be only a potential breaking change as the existing functions are still provided and provide the same level of functionality. The breaking nature of these changes is for anyone attempting to provide their own implementation of these changes.
Interface Changes
- The
IDistributedTraceContextinterface has been significantly expanded to include W3C trace state management capabilities, which may affect custom telemetry processors that interact with distributed tracing context.- Added additional "required" property accessors which update ONLY the current trace context instance and DO NOT update any parent context instances (
pageName,traceId,spanIdandtraceFlags).- The previous set functions continue to also update (replace) any parent context values for existing backward compatability, but have been marked as depracted and will be removed in a future release due to their side-effects of overwriting the parent values.
- Added additional "required" property accessors which update ONLY the current trace context instance and DO NOT update any parent context instances (
Potential Breaking Changes
-
Class Removal: The
TelemetryTraceclass has been removed and is no longer exported as part of the distributed tracing refactoring, with its functionality integrated into the new W3C trace state implementation.- The properties
telemetryTraceis now a complete adpater to the existingcore.getTraceCtx()value and as such is now marked as deprecated and will be removed in a future release. - The value of the
appInsights.context.telemetryTraceis no longer an instance of this removed class.
- The properties
-
Trace Context Initialization: Due to the distributed tracing refactoring, the core instance and SDK will now always have a valid
traceIdavailable throughcore.getTraceCtx(). ThetraceIdwill be either a newly generated random value or inherited from any detected parent trace context. This ensures consistent trace context availability but may affect applications that previously relied on the absence of atraceIdto determine if distributed tracing was active. -
Dependencies Extension - ajaxRecord Class Removal: The internal
ajaxRecordclass has been removed and is no longer exported from the dependencies extension (@microsoft/applicationinsights-dependencies-js). The internal implementation now implements the newIAjaxRecordDatainterface. This class was previously used internally for AJAX request tracking and was referenced in theIInstrumentationRequirements.includeCorrelationHeaders()function signature. Important: The previous exporting of theajaxRecordclass was unintentional and was never meant to be part of the public API - it was an internal implementation detail that inadvertently became accessible to external code.- Previous Signature:
includeCorrelationHeaders(ajaxData: ajaxRecord, input?: Request | string, init?: RequestInit, xhr?: XMLHttpRequestInstrumented): any - New Signature:
includeCorrelationHeaders(ajaxData: IAjaxRecordData, input?: Request | string, init?: RequestInit, xhr?: XMLHttpRequestInstrumented): any - New Interface: The
IAjaxRecordDatainterface has been introduced to replace theajaxRecordclass in public API signatures and provides access to essential AJAX request properties:getAbsoluteUrl(): string | null- Gets the absolute URL for the requestgetPathName(): string | null- Gets the sanitized path name for the request URLtraceCtx: IDistributedTraceContext- The distributed trace context for the requestrequestHeaders: { [key: string]: string }- Object containing request headersaborted?: number- Indicates whether the request was abortedcontext?: { [key: string]: any }- Optional context object for dependency listeners
- Impact: This change only affects custom implementations that directly referenced the
ajaxRecordclass or implemented theIInstrumentationRequirementsinterface. Standard SDK usage and most custom dependency listeners/initializers are unaffected. - Migration: If your code previously referenced
ajaxRecordor implementedIInstrumentationRequirements, update it to use the newIAjaxRecordDatainterface, which provides the same essential properties with proper TypeScript definitions and comprehensive JSDoc documentation. - Need Help?: If you discover that your code depends on other functions or properties from the dependencies extension that are no longer exported and you believe should be part of the public API, please raise an issue with details about your use case so we can review and potentially provide a proper public API alternative.
- Previous Signature:
-
Flush Method Signature Change: Renamed
flushmethod parameter fromasynctoisAsyncinIChannelControlsinterface to avoid potential keyword conflicts (only affects code that relies on named parameters).- Fixed return type of
flushmethod to properly includebooleanwhen callbacks complete synchronously
- Fixed return type of
Potential behavioral changes
This release enhances the cookie management behavior when cookies are disabled. Previously, when cookies were disabled, calls to cookieMgr.set() would return false and cookie values would be lost. Now, these operations are cached in memory and automatically applied when cookies are re-enabled to allow for cookie compliance banners and delayed approval.
Behavior changes:
cookieMgr.set()now returnstruewhen cookies are disabled (because values are cached), instead offalsecookieMgr.get()now returns cached values when cookies are disabled, instead of empty stringscookieMgr.del()operations are now cached and applied when cookies are re-enabled- Applications can now recover cookie state after temporary cookie blocking scenarios
These changes improve data persistence and are considered enhancements rather than breaking changes. If your application logic depends on the previous behavior of set() returning false when cookies are disabled, you may need to check cookieMgr.isEnabled() instead, or configure disableCookieCache: true in your cookieCfg to maintain the previous behavior.
Known Limitations
- SDK Loader (Snippet) automatically downgrades to v2.x on Internet Explorer: When the SDK Loader detects that Internet Explorer is being used (via the
msieortrident/user agent strings), it automatically rewrites the CDN URL to load the v2.x SDK instead of v3.x (e.g.ai.3.gbl.min.jsbecomesai.2.gbl.min.js). This means any v3.x-only APIs — including the new OpenTelemetry-based APIs — will not be available for users on Internet Explorer. If your code uses these newer APIs, you should check for their existence before calling them. This fallback does not apply when using the NPM package directly.
Changelog
- #2719 Improve OsPlugin reliability: proactive OS retrieval, unload handling, and session caching
- #2718 Address issue with the AppInsightsExtCore using the wrong version number
- #2716 Make URL Redaction more dynamic
- #2712 [Main] Merge 1ds-core-js into applicationinsights-core-js
- #2710 [Main] Merge Trace API Features from Beta
- #2628 Fix flush method root cause - handle async callbacks in _doSend with proper error handling
- Potential breaking change: Renamed
flushmethod parameter fromasynctoisAsyncinIChannelControlsinterface to avoid potential keyword conflicts (only affects code that relies on named parameters) - Fixed return type of
flushmethod to properly includebooleanwhen callbacks complete synchronously - Fixed root cause where
_doSend()couldn't handle asynchronous callbacks frompreparePayload()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
- Potential breaking change: Renamed
- #2631 [Feature] Update the ICookieMgr implementation to write cookies after being enabled
- Enhancement: Cookie values are now cached in memory when cookies are disabled instead of being lost, enabling support for consent banner workflows where cookies must be temporarily disabled until user approval
- Enhancement: Automatic flushing occurs when cookies are re-enabled via
setEnabled(true)or dynamic configuration changes - Enhancement: Added
disableCookieDeferconfiguration option to maintain backward compatibility with previous behavior (defaults to false) - Behavior change:
cookieMgr.set()now returnstruewhen disabled (cached) instead offalse - Behavior change:
cookieMgr.get()now returns cached values when disabled instead of empty strings
- [Beta] Add W3c Trace State support / handling and refactor distributed trace handling to prepare for OpenTelemetry Span style API / management
Full Changelog: 3.3.11...3.4.1