UNCLASSIFIED - NO CUI

Skip to content

Master: Renovate: Automerge Update dependency without new findings

Ghost User requested to merge development into master

This MR contains the following updates:

Package Type Update Change
grafana/k6 ironbank-github minor v0.44.1 -> v0.45.0
grafana/k6 minor v0.44.1 -> v0.45.0

Release Notes

grafana/k6

v0.45.0

Compare Source

k6 v0.45.0 is here 🎉! This release includes:

  • Experimental gRPC streaming support.
  • Update scripts in the cloud without running tests.
  • JS Metadata API.
  • A lot of internal changes and bugfixes.
Breaking changes
New features
Experimental gRPC module with streaming support #​3107

There is a new experimental module k6/experimental/grpc. It is a copy of the k6/net/grpc module with added stream support #​2020.

Expand to see an example of the new functionality.

This example shows server streaming:

import { Client, Stream } from 'k6/experimental/grpc';
import { sleep } from 'k6';

const COORD_FACTOR = 1e7;
// to run this sample, you need to start the grpc server first.
// to start the grpc server, run the following command in k6 repository's root:
// go run -mod=mod examples/grpc_server/*.go
// (golang should be installed)
const GRPC_ADDR = __ENV.GRPC_ADDR || '127.0.0.1:10000';
const GRPC_MROTO_PATH = __ENV.GRPC_MROTO_PATH ||

Merge request reports