Skip to content

Commit

Permalink
Improvements for Future breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
codebien committed Oct 9, 2023
1 parent b54af8c commit 014e885
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions release notes/v0.47.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ This way, we will also be able to have most of our users test these changes from

There are several changes in the next release that are entering the final stage of their deprecation period. That means the next release will include the following breaking changes:

- [#3065](https://github.com/grafana/k6/issues/3065) Limit the length of metric names to 128 characters and the set of the allowed symbols.
- [#3065](https://github.com/grafana/k6/issues/3065) Metric names will be limited to 128 characters and a set of allowed symbols. This was going to be changed to a 63 character limit to ensure compatibility with OpenTelemetry standards, but since then, the OTel limit has been updated to 255 characters. You can find more details about the changes in the linked issue.
- [#3365](https://github.com/grafana/k6/pull/3365) The `k6 converter` command will be removed.
- [#3350](https://github.com/grafana/k6/pull/3350) The `headers` param for the gRPC module will be deprecated. Users should use the `metadata` property instead.
- [#3350](https://github.com/grafana/k6/pull/3350) The `headers` param for the gRPC module will be removed. Users should use the [metadata](https://k6.io/docs/javascript-api/k6-experimental/grpc/params) property instead.
- [#3287](https://github.com/grafana/k6/issues/3287) Loading remote modules will require users to include the `https://` protocol in their URLs, otherwise it will return an error.
- CSV output no longer accepts arguments in snake case (for example, `fileName` should be used instead of `file_name`).
- The `--logformat` flag for defining the Log format option will be removed. `--log-format` should be used instead.
- CSV output no longer accepts arguments in snake case (for example, [fileName](https://k6.io/docs/results-output/real-time/csv/#csv-options) should be used instead of `file_name`).
- The `--logformat` flag for defining the Log format option will be removed. [--log-format](https://k6.io/docs/using-k6/k6-options/reference/#logformat) should be used instead.

We recommend checking this list to see if you are impacted, and updating your scripts or CI/CD processes to avoid any issues. If you have any feedback, please open an issue.

0 comments on commit 014e885

Please sign in to comment.