Skip to content

Commit

Permalink
Deprecate k6/experimental/tracing (#3854)
Browse files Browse the repository at this point in the history
Closes #3212


Co-authored-by: Ivan <2103732+codebien@users.noreply.github.com>
  • Loading branch information
mstoykov and codebien authored Jul 18, 2024
1 parent 111985b commit 9c7f93f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion js/jsmodules.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ func getInternalJSModules() map[string]interface{} {
"The exports of `k6/experimental/timers` are globally available, so no need to import them."+
" The module will be removed after September 23rd, 2024 (v0.54.0). Ensure your scripts are migrated by then."+
" There are no API changes, so this is a drop-in replacement and is also available under `k6/timers`."),
"k6/experimental/tracing": tracing.New(),
"k6/experimental/tracing": newWarnExperimentalModule(tracing.New(),
"k6/experimental/tracing is now deprecated. All of its functionality is available as pure javascript module."+
" More info available at the docs:"+
" https://grafana.com/docs/k6/latest/javascript-api/jslib/http-instrumentation-tempo"+
" The module will be removed after November 11th, 2024 (v0.55.0). Ensure your scripts are migrated by then."),
"k6/experimental/browser": newWarnExperimentalModule(browser.NewSync(),
"Please update your imports to use k6/browser instead of k6/experimental/browser,"+
" which will be removed after September 23rd, 2024 (v0.54.0). Ensure your scripts are migrated by then."+
Expand Down

0 comments on commit 9c7f93f

Please sign in to comment.