Skip to content

Commit 20cdf19

Browse files
committed
Auto-generated commit
1 parent 13df9c0 commit 20cdf19

7 files changed

Lines changed: 61 additions & 14 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

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)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
308308
[npm-image]: http://img.shields.io/npm/v/@stdlib/streams-node-from-array.svg
309309
[npm-url]: https://npmjs.org/package/@stdlib/streams-node-from-array
310310

311-
[test-image]: https://github.com/stdlib-js/streams-node-from-array/actions/workflows/test.yml/badge.svg?branch=v0.2.3
312-
[test-url]: https://github.com/stdlib-js/streams-node-from-array/actions/workflows/test.yml?query=branch:v0.2.3
311+
[test-image]: https://github.com/stdlib-js/streams-node-from-array/actions/workflows/test.yml/badge.svg?branch=main
312+
[test-url]: https://github.com/stdlib-js/streams-node-from-array/actions/workflows/test.yml?query=branch:main
313313

314314
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/streams-node-from-array/main.svg
315315
[coverage-url]: https://codecov.io/github/stdlib-js/streams-node-from-array?branch=main

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 arrayStream = 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 arrayStream = 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;

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
"@stdlib/assert-is-nonnegative-number": "^0.2.3",
4747
"@stdlib/assert-is-plain-object": "^0.2.3",
4848
"@stdlib/assert-is-string": "^0.2.3",
49-
"@stdlib/buffer-ctor": "^0.2.2",
50-
"@stdlib/buffer-from-string": "^0.2.2",
49+
"@stdlib/buffer-ctor": "^0.2.3",
50+
"@stdlib/buffer-from-string": "^0.2.3",
5151
"@stdlib/object-assign": "^0.2.3",
5252
"@stdlib/string-format": "^0.2.3",
5353
"@stdlib/types": "^0.4.3",
@@ -60,14 +60,14 @@
6060
"@stdlib/error-tools-fmtprodmsg": "^0.2.3"
6161
},
6262
"devDependencies": {
63-
"@stdlib/array-float64": "^0.2.2",
64-
"@stdlib/random-base-randu": "^0.2.2",
63+
"@stdlib/array-float64": "^0.2.3",
64+
"@stdlib/random-base-randu": "^0.2.3",
6565
"@stdlib/streams-node-inspect-sink": "^0.2.3",
6666
"@stdlib/utils-parse-json": "^0.2.3",
6767
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
6868
"istanbul": "^0.4.1",
6969
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
70-
"@stdlib/bench-harness": "^0.2.2"
70+
"@stdlib/bench-harness": "^0.2.3"
7171
},
7272
"engines": {
7373
"node": ">=0.10.0",

0 commit comments

Comments
 (0)