Skip to content
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

chore(deps): update dependency @microsoft/applicationinsights-web to v3 #62

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Apr 17, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@microsoft/applicationinsights-web ^2.8.7 -> ^3.2.1 age adoption passing confidence

Release Notes

microsoft/ApplicationInsights-JS (@​microsoft/applicationinsights-web)

v3.2.1

Changelog
  • #​2333 [Main][Task]27749889: Change AISKU Sync Mode to Receive
  • #​2335 [Main][Task]27681441: Fix async tests for MsAzure Migration
  • #​2338 [Main][Task]27923018: Post Channel getOfflineSupport should set correct headers and url based on payload data
  • #​2342 [Main][Task]27923018: 1ds post getOffline support url fix

v3.2.0

Compare Source

!! CfgSync plugin is turned on. Throttling Ikey depreciation message is enabled with sampling rate 0.0001%
##​2317

!! Sender has breaking changes. The key used for session storage is changed and items stored in the storage now contain retry counts.
##​2324

Changelog
  • #​2371 [Main][Task]27365739 Turn on Ikey depreciation message with sampling rate 0.0001%
  • #​2319 [Main] Fix config release script overwrite flag and cache time
  • #​2321 [Main] Default request headers content-type for 1ds should be x-json-stream only ing
  • #​2324 [Main][Task]27079894 Add a max retry count for Sender
  • #​2325 [Main][Task]25716927: Change default CfgSync values to turn on the ikey deprecation message
  • #​2331 [Main] Resetting the DataCacheHelper version number back to current version (from 3.0.5)
  • #​2332 [Main][Task]27742145: Change nonOverrideCfgs to be added only during initialization
  • #​2333 [Main][Task]27749889: Change AISKU Sync Mode to Receive

v3.1.2

Compare Source

!! Critical Bug fix for Memoery Leak !!
#​2311

It also contains a packaging fix for webpack #​2307 (caused by [#​2306]][https://github.com/microsoft/ApplicationInsights-JS/issues/2306](https://togithub.com/microsoft/ApplicationInsights-JS/issues/2306)6) ) and

Changelog
  • #​2307 ApplicationInsights-JS latest version 3.1.1 giving TypeError: Cannot read properties of undefined (reading 'getCrypto')
  • #​2306 [BUG] Circular dependencies
  • #​2311 [BUG] Excessive memory usage for SPA where unload hooks keep accumulating
  • #​2299 [Main][Task]27156360: Add json config cdn details to tool folder
  • #​2308 [Main][Task]27221819: Remove node 14 (from ci.yml)

v3.1.1

Compare Source

Changelog
  • #​2296 [BUG] remove 403 as a “retriable” error code
  • #​2276 Update api-docs (typedoc) with the current 3.1.0 release details
  • #​2281 [Main][Task]26681188: Handle endpoint url change for offline channel and add notification mgr
  • #​2282 Addng two new PII Kind values for IPv6 scrubbing and dropping data.
  • #​2285 [Main][Task]25693679: Extract common sendPost implementation for online and offline sender
  • #​2197 [main] [BUG] using EndPointUrl (and IngestionEndpoint) results in Telemetry sent to incorrect urls
  • #​2288 [Main][Task]27064950: Add doc on adding offline support channel
  • #​2295 [Main][Task]27064983: Update post channel to use sender post common interfaces from core
  • #​2290 chore: remove extraneous console log from debug plugin
Web snippet additional update to 1.1.2 (March 1st, 2024)

Refer to #​2284 [Web-Snippet] [BUG] @​microsoft/applicationinsights-web-snippet version 1.1.1 type problem

Web snippet additional update to 1.1.1 (Feb 16th, 2024)

Refer to #​2277 [Web-Snippet] dependency chain issues

v3.1.0

Compare Source

Interface changes / Breaking changes

This release includes support for a new Offline Channel which has changed the IChannelsControls interface to include additional support for the new offline channel. This change is to support the new offline channel and is a breaking change for any custom channels that implement the IChannelsControls interface. If you have a custom channel that implements the IChannelsControls interface you will need to update your implementation to include the new offline channel.

Configuration default changes

As this is a minor version bump we have also change some default values for the following configuration options:

  • disableUserInitMessage is now true by default to disable the user init message.
Potential breaking change

This release contains a potential break change with 'tags' type change

While the interface changes are breaking changes, the changes are not expected to affect the majority of users as when the code attempted to serialize the tags property it would have failed due to the Tags[] type being used instead of the correct Tags type.

Old
    tags?: Tags & Tags[]; 
New
    tags?: Tags;
New Offline Channel

This release also includes the new offline channel which is a new channel that is designed to support offline scenarios. The offline channel is designed to store telemetry items in local storage and then send them when the user comes back online.
To take full advantage of the initial version you will need to implement your own IOfflineListener to handle situations where you may have "network" connectivity but not internet access. As the navigator.onLine property if available will only tell you if you have network connectivity and not internet access.

Changelog
  • #​2186 [main] offlineListener preparation
  • #​2241 [Main][Task]26451789: Add Offline Support
  • #​2259 [Main][Task]26694421: Add Offline Support Publish Group
  • #​2267 [Main][Task]26681220: Better handle timers in offline channel
  • #​2028 [BUG] AI (Internal): 72 tracking
    • Sets the default value for the disableUserInitMessage to true (was previously false since adding)
  • #​2193 [main] Add extra config in sender to let users define transports type
  • #​2200 [main] [doc] Highlight an issue with the default UMD module format when loading from the CDN into an environment that may have require.js
  • #​2208 [Main][Task]26079397: Add disableBeaconSplit sender config and fix potential duplicated events during unload/fallback sender
    • #​2236 [Main][Task]26396663: Set default disableBeaconSplit to true
  • #​2204 [BUG] Beacon sender reports error for success when diagnostics are enabled
  • #​2214 [main] Merge Release-3.0 to main
  • #​2221 [main] Fixup the ci.yml to address internal hash changes between different node versions
  • #​2216 [Main][Task]26138416: Fix FetchKeepAliveSender send duplicated events during unload
  • #​2228 [main] minor release preparation
  • #​2229 [main] [doc] add requireJs problem in SdkLoadFailure.md
  • #​2132 [BUG] Submitting NaN via trackEvent results in HTTP 400 Error Code
  • #​2238 [Main] Merge release-3.0 to main
  • #​2244 Internal Task: Update npm pack sequence
  • #​2249 [main][1ds] Enhance Retry Policy Testing for Alignment with Collector Policy
  • #​2245 [main] [snippet update] add functions to set configs of snippet
  • #​2250 [main] [doc] minor comment update for avoidOptions
  • #​2251 [Main][1DS][Post] Add support for the ext.metadata to NOT be included
  • #​2253 [Main] Update Tests to support upcoming change in nevware21/tsutils dumpObj to better support JSON stringify and handle PURE comments
  • #​2255 [main] #​2225 pass customer exception id into telemetry
  • #​2247 [main] [1ds-post] export add header func for auth-plugin to consume
  • #​2209 [BUG] stopTrackEvent requires property values to be strings
  • #​2258 [BUG] ITelemetryItem uses intersection type instead of union type for tags property
    • #​2269 [main] [Possible Break] Removed Tags[] from ITelemetryItem as this was breaking later versions of TypeScript by using the intersection type instead of union type for tags property
  • #​2272 [release 3.0.8] Fix channel test
  • #​2271 Cherry-pick from release-3.0 branch
    • [Release-3.0] [Release] Increase version to 3.0.8 ([Release-3.0] [Release] Increase version to 3.0.8 #​2264)
    • [Release-3.0] Update namespaced types (DTS) generation to include referenced bundles

v3.0.9

Compare Source

!! Critical Bug fix for Memory Leak !!
#​2311

It also contains a packaging fix for webpack #​2307 (caused by [#​2306]][https://github.com/microsoft/ApplicationInsights-JS/issues/2306](https://togithub.com/microsoft/ApplicationInsights-JS/issues/2306)6) ) and

Changelog
  • #​2307 ApplicationInsights-JS latest version 3.1.1 giving TypeError: Cannot read properties of undefined (reading 'getCrypto')
  • #​2306 [BUG] Circular dependencies
  • #​2311 [BUG] Excessive memory usage for SPA where unload hooks keep accumulating
    • #​2313 [release-3.0] [main->cherrypick] [BUG] Excessive memory usage for SPA where unload hooks keep accumulating #​2311 (#​2312)
  • #​2314 [Release-3.0][cherrypick:main] Internal Task: Update npm pack sequence (#​2244)
  • #​2265 [Release-3.0] Update namespaced types (DTS) generation to include referenced bundles
  • #​2296 [Release-3.0][BUG] remove 403 as a “retriable” error code

What's Changed

Full Changelog: microsoft/ApplicationInsights-JS@3.0.8...3.0.9

v3.0.8

Compare Source

This release changes the new beacon splitting code (added in 3.0.4) to be disabled by default. This change is to address the issue where the SDK was splitting the payload into multiple requests when the payload size exceeded the maximum allowed size for a single request. This issue was introduced in the 3.0.4 release and only affects the sendBeacon usage during page unload, it does not affect the fetch usage during page unload. This change is to address the issue where the SDK was splitting the payload into multiple requests when the payload size exceeded the maximum allowed size for a single request. This issue was introduced in the 3.0.4 release and only affects the sendBeacon usage during page unload, it does not affect the fetch usage during page unload.

Changelog
  • #​2235 [BUG] - CRITICAL - Application runs out of memory
    • #​2236 [release-3.0] Cherry-Pick: [Main][Task]26396663: Set default disableBeaconSplit to true
  • #​2242 [release-3.0] Update components
  • #​2254 [Release3.0] Update Tests to support upcoming change in nevware21/tsutils dumpObj to better support JSON stringify and handle PURE comments
  • [Release 3.0] Update components for release #​2261

v3.0.7

Compare Source

Changelog

This release is a hotfix for issue #​2216, which is simular to the issue fixed in 3.0.6 but for the fetch (with the keep-alive flag).

Changelog
  • #​2216 [release-3.0] Cherrypick (main): fix fetchkeepalive
  • #​2221 [release-3.0] Cherrypick (main): Fixup the ci.yml to address internal hash changes between different node versions

v3.0.6

Compare Source

This release fixes an issue with the sendBeacon usage during page unload, where the SDK was not correctly splitting the payload into multiple requests when the payload size exceeded the maximum allowed size for a single request. This issue was introduced in the 3.0.4 release and only affects the sendBeacon usage during page unload, it does not affect the fetch usage during page unload.

Changelog
  • #​2195 [BUG] Beacon sender causes flood of thousands of requests on page unload
  • #​2201 [BUG] applicationinsights.azure.com/v2/track making hundreds of thousands of requests when third party cookies are disabled
  • #​2205 [BUG] Duplicate customEvent entries
  • #​2204 [BUG] Beacon sender reports error for success when diagnostics are enabled

v3.0.5

Compare Source

Changelog
  • #​2184 [main] deactive send beacon when local storage is available
  • #​2185 [main] retrieve reponseText when fetch in HttpManager
  • #​2188 [main] generate typedoc
  • #​2190 [Main][Task]25648004: Export ISenderConfig from Sender
  • #​2191 [Main][Task]25649658: Update AISKU Light to add default baseType and baseData when calling track function

v3.0.4

Compare Source

Changelog
  • #​2162 [BUG] window is not defined at _getStackFromErrorObj
  • #​2163 [BUG] Using App Insights connection string leads to double slash
  • #​2164 [BUG] Fetch with empty string as first parameter does not include traceparent and does not successfully save dependency to Application Insights
  • #​2165 [main] use proper URL for tracking when fetch is passed an empty string
  • #​2180 [BUG] Same timestamp on multiple pageView-events after upgrade to 3.0.3
  • CfgSyncPlugin improvment
    • #​2166 [main] correct throttle configdefault setting in aisku
    • #​2168 [Main][Task]24499167: add cfgSync plugin doc
    • #​2171 [main] test aisku config could correctly merge new config fetch from cdn
    • #​2175 [main] Update Service Notifications to not send message twice
    • #​2177 [Main]Set CfgSync version to 3.0.3
    • #​2160 [Main] Include Config sync in publish group
  • Documentation update
    • #​2169 [Main][Task]24499172: add throttle manager doc
    • #​2170 [Main][Task]24499174: Add service notification doc
  • Github workflow improvement
    • #​2173 Add Issue state reporting script
  • Sender Update
    • #​2113 [Main][Task]16238553: Provide an override option for the Sender

v3.0.3

Compare Source

Changelog
  • #​2157 [Main] Bug New minified bundles are corrupting global scope

  • #​2120 Missing traceparent header when running multiple SDK instances

    • #​2144 [Main][Part 2] Missing traceparent header when running multiple SDK instances #​2120
    • #​2141 [Main][Bug] Missing traceparent header when running multiple SDK instances #​2120
  • #​2149 [BUG] Fetch with empty string as first parameter ignores second parameter when fetch tracking is enabled

    • #​2152 [main] allow empty string as first parameter to fetch
  • #​2127 [Main] Add automated ability to reset the npm latest tag to a specific build

  • #​2106 Consider export IClickAnalyticsConfiguration from the click plugin?

  • #​2086 [BUG] Field 'fileName' on type 'StackFrame' is too long. Expected: 1024 characters

    • #​2118 [Main] [BUG] Field 'fileName' on type 'StackFrame' is too long. Expected: 1024 characters #​2086
  • #​2094 _getVerifiedStorageObject - contentious sessionStorage element

    • #​2110 [main] add prefix before storage name when setting it
  • #​2137 [Main] Fix: edge case where the navigation entry is not present

  • #​2135 Update @​nevware21 base versions

  • #​2104 [main] Use the navigation entry timeing for page load event start time

  • #​2116 [Main] Fixup setVersion to support automated nightly release

  • #​2097 disablePageUnloadEvents lost somewhere #​2097

  • Internal Task 1575741: [VSCode] [1DS] Move 1DS Core and 1DS Post to GitHub #​2102

  • #​2089 [BUG] The v3.x exporting of the TelemetryContext does not export the sessionManager "type"

  • [BUG] Readme Issue for perfmarkmeasure @​microsoft/applicationinsights-applicationinsights-perfmarkmeasure-js@ #​2150

  • #​2139 V3 Public CDN URL

  • #​2093 Update project clean to make faster

  • Add support for service level notifications (disabled by default in this release, will be enabled by default in a future release)

    • #​2147 [main] throttle manager in aisku sending message
    • #​2133 [Main][Task]24841107: Refactor throttleMgr to support multiple message keys
    • #​2090 [Main][Task]17874465:Support Config sync across instances
    • #​2125 [Main][Task]24677395:add configurations for CDN to enable specific users opt-in implementation
    • #​2115 [Main][Task]24662146: cfgSync plugin improvement: timer handling for fetch/xhr
  • SDK Loader Updates (version 7 - will be published after this release is deployed to the CDN)

    • #​2091 rework web snippet (Convert to TypeScript)
    • #​2099 change loader src when detect IE
    • #​2098 Extend the config part in Min
    • #​2131 [main] Adding round robin retry for snippet script src loading

v3.0.2

Compare Source

Changelog
  • #​2068 [BUG] SDK fails to initialize when the config includes objects with properties that are not configurable
  • #​2075 [BUG] ClickAnalytics throwing errors in console
  • #​2065 Type 'T' does not satisfy the constraint 'IConfiguration'
  • #​2079 [BUG] The SDK is not limiting the sdkVersion length, which causes the night builds to cause an error
  • #​2061 [BUG] hasDocument should be invoked as function
  • #​2064 [Main] Task 2078823: [AI] Add ApplicationInsights namespace and workaround to support v2 and v3 loaded from the CDN
  • #​2070 [Main] Update Minify script to always sort imports

v3.0.1

Compare Source

Changelog
  • #​2057 [Main] Add ability to disable the pollInternalLogs via config and change to stop using setInterval #​2055
  • #​2051 [Main] Fix Perf Tests
  • #​2053 [Main] [BUG] Typing issue with generated types causing Type X is not assignable to type Y #​2052
  • #​2058 [Bug] Fix issues related to dynamic config listeners during unloading
    • Add Promise support during unloading

v3.0.0

Compare Source

Major release with breaking changes from v2.x see v3.x Breaking Changes for details.

Maintained from the main branch, v2.x is in maintenance mode on the master branch

Changelog
  • All code from 2.8.12 has been merged into the main branch and therefore this release
Major Changes
  • Removed ES3 (IE8) Support

  • Enabled dynamic config changes after initialization

    • #​1427 Dynamically updating config (for extensions in my case)
  • Too many individual commits to include as most revolve around the breaking changes and enabling dynamic configuration support for each extension

    • All Extensions now share the same configuration object core.config in previous releases each component maintained their own copy with their own default values, now all defaults and configuration values are exposed on the shared config.
    • By default the config object passed in during initialization is NOT the same object as that used as the shared config. Any previous assumptions around this being the same object will now be broken as this was a previously unsupported scenario.
    • All properties of the config object are now using get/set functions (via Object.defineProperty) to allow listeners to be registered (core.onCfgChange and internally onConfigChange) so that the callback function will be called if any referenced config property is changed. Yes, this means you can register your own configuration listener via core.onCfgChange see the AISku Manual Test for an example.
    • All properties present during initialization are converted into dynamic properties and may be monitored, properties added "after" creation (initialization) are not. This is to continue to support IE which does not support Proxy implementation which also means we are not using the Proxy class.
    • Extensions are now responsible for listening and responding to the configuration changes that they want to support
    • Updating the config extensions and channels is NOT supported, you must use the individual plugin add / remove functions if you want to dynamically add / remove extensions / channels
    • Support for parallel channels was removed from the Core and SKU's and extracted to the new TeeChannel, if you require this support you will need to use npm and include this module.
  • v2.x Extension support.

    • While the basic API and support for Backward compatibility for the v2.x extension (plugin) API was maintained, due to the breaking changes (specifically the removal of the namespaced helpers) this will only support self contained components (without recompiling). Any npm module that attempts to import and use a removed helper function will potentially break and will need to be updated to use the newer or replacement helper functions (see the v3.x Breaking Changes for details), if you find an issue and are not able to work around please raise an issue.

v2.8.18

Compare Source

Changelog
  • #​2296 [BUG] remove 403 as a “retriable” error code
  • #​2280 [Master] chore: Add packaging helper script

What's Changed

Full Changelog: microsoft/ApplicationInsights-JS@2.8.17...2.8.18

v2.8.17

Compare Source

Changelog

What's Changed

Full Changelog: microsoft/ApplicationInsights-JS@2.8.16...2.8.17

v2.8.16

Compare Source

Changelog
  • #​2155 [Master] Bug [AI/1DS] New minified bundles are corrupting global scope (p1 issue)
  • #​2151 Bug 2518279: [AI] Minified CDN version has an extra "use strict" outside of the closure
  • #​2120 Missing traceparent header when running multiple SDK instances
    • #​2140 [Master][Bug] Missing traceparent header when running multiple SDK instances #​2120
    • #​2143 [Master][Part 2] Missing traceparent header when running multiple SDK instances #​2120
  • #​2149 [BUG] Fetch with empty string as first parameter ignores second parameter when fetch tracking is enabled
    • #​2154 [Master][BUG] Fetch with empty string as first parameter ignores second parameter when fetch tracking is enabled #​2149
  • #​2128 [Master] Update publishing config to avoid resetting the "latest" version for older releases

What's Changed

Full Changelog: microsoft/ApplicationInsights-JS@2.8.15...2.8.16

v2.8.15

Compare Source

Changelog
  • #​2100 Update UMD and IIFE Bundle intro for Version 2 to avoid conflicting with other SDK versions
  • #​2106 [Master] Consider export IClickAnalyticsConfiguration from the click plugin?
  • #​2107 [Master][Task]24316375: add support for cfgSync plugin
  • #​2086 [BUG] Field 'fileName' on type 'StackFrame' is too long. Expected: 1024 characters
  • #​2094 _getVerifiedStorageObject - contentious sessionStorage element
  • #​2096 [Master] Create rollup base to unify bundling
    • #​2122 [Master] base rollup fix for version number

What's Changed

Full Changelog: microsoft/ApplicationInsights-JS@2.8.14...2.8.15

v2.8.14

Compare Source

Changelog
  • #​2061 [BUG] hasDocument should be invoked as function
  • #​2079 [Master] [BUG] The SDK is not limiting the sdkVersion length, which causes the nightly builds to throw error
  • #​2065 [Master] Type 'T' does not satisfy the constraint 'IConfiguration'
  • #​2075 [Master] [BUG] ClickAnalytics throwing errors in console
  • #​2071 [Master] Update Minify script to always sort imports

What's Changed

Full Changelog: microsoft/ApplicationInsights-JS@2.8.13...2.8.14

v2.8.13

Compare Source

Changelog
  • #​2052 [BUG] Typing issue with generated types causing Type X is not assignable to type Y
  • #​2055 Add ability to disable the pollInternalLogs via config and change to stop using setInterval
  • #​2049 [Master] Fix Perf Tests

v2.8.12

Compare Source

Changelog
  • #​2014 [BUG] The documentation for enableDebug is incorrect, it should reference enableDebugExceptions
  • #​2027 [BUG] SDK LOAD Failure reporting not working
  • #​2034 [BUG] Failed XHR request after ever tracked item when gathered logs exceed maxBatchSizeInBytes while offline
  • #​2037 [Master] Add local storage-based implementation #​1419
    • Add support for user provided storage option for Sender
  • #​2029 [Master] Add npm-pack and npm-publish tasks
  • #​2026 [Master] Fix examples, Throttle tests and export dependency types from Sku

v2.8.11

Compare Source

Changelog
  • #​1996 [BUG] SharedWorker does not Instrument fetch correctly
  • #​1995 [BUG] App Insights not auto-capturing from a Web Worker
    • Stops logging that workers can emit the PageView Performance event
  • #​1792 [BUG] Documentation should clarify that node apps should use applicationinsights, not this package
  • #​1794 [BUG] link on AISKULight goes to not found page
  • #​1990 Field 'assembly' on type 'StackFrame' is too long. Expected: 1024 characters [BUG]
  • Update documentation and tests to replace instrumentationKey usage with connectionString
  • #​1991 Internal Task 1713311: Add Policheck exclusion file
  • #​1989 [AI][Task]17099792: Add sample and doc to dependency plugin

v2.8.10

Compare Source

Changelog
  • #​1940 [BUG] Application Insights reports 'not_specified' to Azure when tracking unhandled browser exception
  • #​1979 [BUG][ThrottleMgr] Incorrectly fires based on the number of days past
  • #​1970 Add the Aborted flag to the dependency initializer / listeners
  • #​1981 [AI][Task]16961420: fix throttleMgr incorrectly fires based on the number of days past
  • #​1956 [AI Light][Task]14130466: Instrumentation key API is being deprecated - need to add support
  • #​1962 Add --no-sandbox to test runs

v2.8.9

Compare Source

  • Updates Chrome Debug Extension to 0.3.9
Changelog

v2.8.8

Compare Source

  • Updates Chrome Debug Extension to 0.3.8
Changelog
  • #​1679 [BUG] enableUnhandledPromiseRejectionTracking shows no error trace

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/microsoft-applicationinsights-web-3.x branch from f1f0d19 to 52170fe Compare May 28, 2023 09:36
@renovate renovate bot changed the title chore(deps): update dependency @microsoft/applicationinsights-web to v3 chore(deps): update dependency @microsoft/applicationinsights-web to v3 - autoclosed Aug 3, 2023
@renovate renovate bot closed this Aug 3, 2023
@renovate renovate bot deleted the renovate/microsoft-applicationinsights-web-3.x branch August 3, 2023 18:40
@renovate renovate bot changed the title chore(deps): update dependency @microsoft/applicationinsights-web to v3 - autoclosed chore(deps): update dependency @microsoft/applicationinsights-web to v3 Aug 4, 2023
@renovate renovate bot reopened this Aug 4, 2023
@renovate renovate bot restored the renovate/microsoft-applicationinsights-web-3.x branch August 4, 2023 18:45
@renovate renovate bot force-pushed the renovate/microsoft-applicationinsights-web-3.x branch from 52170fe to 3033ceb Compare August 4, 2023 18:45
@renovate renovate bot force-pushed the renovate/microsoft-applicationinsights-web-3.x branch from 3033ceb to 01833aa Compare September 20, 2023 23:12
@renovate renovate bot force-pushed the renovate/microsoft-applicationinsights-web-3.x branch from 01833aa to dd2bc98 Compare October 24, 2023 00:34
@renovate renovate bot force-pushed the renovate/microsoft-applicationinsights-web-3.x branch from dd2bc98 to f37a0eb Compare November 2, 2023 04:44
@renovate renovate bot force-pushed the renovate/microsoft-applicationinsights-web-3.x branch 2 times, most recently from eebbaab to 72a4ae2 Compare December 14, 2023 20:33
@renovate renovate bot force-pushed the renovate/microsoft-applicationinsights-web-3.x branch from 72a4ae2 to 41ce0ae Compare February 7, 2024 18:56
@renovate renovate bot force-pushed the renovate/microsoft-applicationinsights-web-3.x branch from 41ce0ae to 15400c8 Compare February 15, 2024 20:10
@renovate renovate bot force-pushed the renovate/microsoft-applicationinsights-web-3.x branch from 15400c8 to d36bce2 Compare March 13, 2024 04:00
@renovate renovate bot force-pushed the renovate/microsoft-applicationinsights-web-3.x branch from d36bce2 to f36e7ce Compare March 22, 2024 00:24
@renovate renovate bot force-pushed the renovate/microsoft-applicationinsights-web-3.x branch from f36e7ce to 2d82889 Compare April 23, 2024 21:35
@renovate renovate bot force-pushed the renovate/microsoft-applicationinsights-web-3.x branch from 2d82889 to 790e74c Compare May 10, 2024 04:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants