Skip to content

Commit cd91a0f

Browse files
committed
Auto-generated commit
1 parent b70393e commit cd91a0f

6 files changed

Lines changed: 54 additions & 8 deletions

File tree

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,15 @@ indent_style = tab
165165
indent_style = space
166166
indent_size = 2
167167
168+
# Ignore generated lock files for GitHub Agentic Workflows:
169+
[*.lock.yml]
170+
charset = unset
171+
end_of_line = unset
172+
indent_style = unset
173+
indent_size = unset
174+
trim_trailing_whitespace = unset
175+
insert_final_newline = unset
176+
168177
# Set properties for GYP files:
169178
[binding.gyp]
170179
indent_style = space

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,5 @@ Makefile linguist-vendored
6464

6565
# Configure files which should be included in GitHub language statistics:
6666
docs/types/*.d.ts -linguist-documentation
67+
68+
.github/workflows/*.lock.yml linguist-generated=true merge=ours

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2026-04-19)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`1e7e03b`](https://github.com/stdlib-js/stdlib/commit/1e7e03b9a3b56da409994059f6dbf54d318bcc28) - **bench:** refactor to use string interpolation in `streams` [(#11589)](https://github.com/stdlib-js/stdlib/pull/11589) _(by Karan Anand)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Karan Anand
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.2.3">
640

741
## 0.2.3 (2026-02-07)

benchmark/benchmark.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
var Readable = require( 'readable-stream' ).Readable;
2424
var bench = require( '@stdlib/bench-harness' );
25+
var format = require( '@stdlib/string-format' );
2526
var pkg = require( './../package.json' ).name;
2627
var stridedArrayStream = require( './../lib' );
2728

@@ -50,7 +51,7 @@ bench( pkg, function benchmark( b ) {
5051
b.end();
5152
});
5253

53-
bench( pkg+':objectMode', function benchmark( b ) {
54+
bench( format( '%s:objectMode', pkg ), function benchmark( b ) {
5455
var arr;
5556
var s;
5657
var i;
@@ -72,7 +73,7 @@ bench( pkg+':objectMode', function benchmark( b ) {
7273
b.end();
7374
});
7475

75-
bench( pkg+'::factory', function benchmark( b ) {
76+
bench( format( '%s::factory', pkg ), function benchmark( b ) {
7677
var createStream;
7778
var arr;
7879
var s;

benchmark/benchmark.throughput.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ var WritableStream = require( 'readable-stream' ).Writable; // eslint-disable-li
2424
var bench = require( '@stdlib/bench-harness' );
2525
var inherit = require( '@stdlib/utils-inherit' );
2626
var nextTick = require( '@stdlib/utils-next-tick' );
27+
var format = require( '@stdlib/string-format' );
2728
var pkg = require( './../package.json' ).name;
2829
var stridedArrayStream = require( './../lib' );
2930

3031

3132
// MAIN //
3233

33-
bench( pkg+'::throughput,baseline', function benchmark( b ) {
34+
bench( format( '%s::throughput,baseline', pkg ), function benchmark( b ) {
3435
var i;
3536

3637
i = 0;
@@ -56,7 +57,7 @@ bench( pkg+'::throughput,baseline', function benchmark( b ) {
5657
}
5758
});
5859

59-
bench( pkg+'::throughput:highWaterMark=<default>', function benchmark( b ) {
60+
bench( format( '%s::throughput:highWaterMark=<default>', pkg ), function benchmark( b ) {
6061
var rStream;
6162
var wStream;
6263
var opts;
@@ -107,7 +108,7 @@ bench( pkg+'::throughput:highWaterMark=<default>', function benchmark( b ) {
107108
}
108109
});
109110

110-
bench( pkg+'::throughput:highWaterMark=0', function benchmark( b ) {
111+
bench( format( '%s::throughput:highWaterMark=0', pkg ), function benchmark( b ) {
111112
var rStream;
112113
var wStream;
113114
var opts;
@@ -160,7 +161,7 @@ bench( pkg+'::throughput:highWaterMark=0', function benchmark( b ) {
160161
}
161162
});
162163

163-
bench( pkg+'::throughput,object_mode:highWaterMark=<default>', function benchmark( b ) {
164+
bench( format( '%s::throughput,object_mode:highWaterMark=<default>', pkg ), function benchmark( b ) {
164165
var rStream;
165166
var wStream;
166167
var opts;
@@ -213,7 +214,7 @@ bench( pkg+'::throughput,object_mode:highWaterMark=<default>', function benchmar
213214
}
214215
});
215216

216-
bench( pkg+'::throughput,object_mode:highWaterMark=0', function benchmark( b ) {
217+
bench( format( '%s::throughput,object_mode:highWaterMark=0', pkg ), function benchmark( b ) {
217218
var rStream;
218219
var wStream;
219220
var opts;

0 commit comments

Comments
 (0)