Skip to content

Commit 0a993a1

Browse files
committed
Auto-generated commit
1 parent f50639b commit 0a993a1

6 files changed

Lines changed: 21 additions & 7 deletions

File tree

.github/.keepalive

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

.npmrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,16 @@ save = false
2929

3030
# Do not generate provenance metadata:
3131
provenance = false
32+
33+
# Prefer cached dependencies during install:
34+
prefer-offline = true
35+
36+
# Require signing Git commits and tags when using `npm version`:
37+
sign-git-commit = true
38+
sign-git-tag = true
39+
40+
# Run Git commit hooks when using `npm version`:
41+
commit-hooks = true
42+
43+
# Require that dependencies within the dependency tree have a minimum release age (in days) in order to guard against supply chain attacks:
44+
min-release-age = 90

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-04-28)
7+
## Unreleased (2026-06-02)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`839bce5`](https://github.com/stdlib-js/stdlib/commit/839bce5a620d57010f1a6e1094eb81913cc1059a) - **refactor:** align iterator-validation error construction in three `@stdlib/iter` packages [(#12440)](https:-/github.com/stdlib-js/stdlib/pull/12440) _(by Philipp Burckhardt)_
1516
- [`0287136`](https://github.com/stdlib-js/stdlib/commit/0287136074eb89eede83a3cae5c5b51a7760a57e) - **bench:** refactor to use string interpolation in `iter` [(#11612)](https://github.com/stdlib-js/stdlib/pull/11612) _(by Karan Anand)_
1617

1718
</details>
@@ -24,9 +25,10 @@
2425

2526
### Contributors
2627

27-
A total of 1 person contributed to this release. Thank you to this contributor:
28+
A total of 2 people contributed to this release. Thank you to the following contributors:
2829

2930
- Karan Anand
31+
- Philipp Burckhardt
3032

3133
</section>
3234

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ function iterIntersectionByHash() {
199199
}
200200
if ( arguments.length > niter+2 ) {
201201
// Addresses the case: fcn( it, it, null, it, it, hashFcn )
202-
throw new TypeError( 'invalid argument. Iterator arguments must be iterator protocol-compliant objects.' );
202+
throw new TypeError( format( 'invalid argument. Must provide an iterator protocol-compliant object. Argument: `%u`. Value: `%s`.', i, arguments[ i ] ) );
203203
}
204204
hashFcn = arguments[ i ];
205205
if ( !isFunction( hashFcn ) ) {

0 commit comments

Comments
 (0)