Skip to content

Commit ce3ab45

Browse files
committed
Auto-generated commit
1 parent 1c5b013 commit ce3ab45

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-04-16)
7+
## Unreleased (2025-04-27)
88

99
<section class="features">
1010

@@ -21,6 +21,7 @@
2121

2222
### Bug Fixes
2323

24+
- [`f3e3561`](https://github.com/stdlib-js/stdlib/commit/f3e3561a46cca1fbb13c0a1b5eb5f5475ef9b032) - address off-by-one error
2425
- [`cdc66ce`](https://github.com/stdlib-js/stdlib/commit/cdc66ce1876b95dd8c23aa2f869aebe9b842e86e) - remove unused parameters
2526
- [`0ede0da`](https://github.com/stdlib-js/stdlib/commit/0ede0dafa46ddea7dfce7be63250ca9ae0c1c546) - add missing imports in `ndarray/base/unary-reduce-subarray` [(#6642)](https://github.com/stdlib-js/stdlib/pull/6642)
2627
- [`f0d205d`](https://github.com/stdlib-js/stdlib/commit/f0d205d7073055c7a69f1ba7ccee95671ab762ba) - address indexing error
@@ -38,6 +39,7 @@
3839

3940
<details>
4041

42+
- [`f3e3561`](https://github.com/stdlib-js/stdlib/commit/f3e3561a46cca1fbb13c0a1b5eb5f5475ef9b032) - **fix:** address off-by-one error _(by Athan Reines)_
4143
- [`9d6cd84`](https://github.com/stdlib-js/stdlib/commit/9d6cd84404f09e09f22721d4e3bd1d083b8f83b1) - **chore:** add TODO _(by Athan Reines)_
4244
- [`999b4d7`](https://github.com/stdlib-js/stdlib/commit/999b4d7f258e8c9c20ef474b1839f62a9481c652) - **docs:** update note _(by Athan Reines)_
4345
- [`a032199`](https://github.com/stdlib-js/stdlib/commit/a03219903da3dce11a6a290890078a969841e582) - **docs:** update description _(by Athan Reines)_

CONTRIBUTORS

+3
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ Naveen Kumar <[email protected]>
106106
Neeraj Pathak <[email protected]>
107107
NirvedMishra <[email protected]>
108108
Nishant Shinde <[email protected]>
109+
Nishant singh <[email protected]>
109110
Nishchay Rajput <[email protected]>
110111
Nithin Katta <[email protected]>
111112
Nourhan Hasan <[email protected]>
@@ -178,9 +179,11 @@ Yaswanth Kosuru <[email protected]>
178179
Yernar Yergaziyev <[email protected]>
179180
Yugal Kaushik <[email protected]>
180181
Yuvi Mittal <[email protected]>
182+
devshree-bhati <[email protected]>
181183
182184
ekambains <[email protected]>
183185
fadiothman22 <[email protected]>
186+
iraandrushko <[email protected]>
184187
lohithganni <[email protected]>
185188
olenkabilonizhka <[email protected]>
186189
pranav-1720 <[email protected]>

dist/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ function unaryReduceSubarray( fcn, arrays, dims, options ) { // eslint-disable-l
334334

335335
// Verify that we've been provided a list of unique dimension indices...
336336
M = dims.length;
337-
d = normalizeIndices( dims, ndims );
337+
d = normalizeIndices( dims, ndims-1 );
338338
if ( d === null ) {
339339
throw new RangeError( format( 'invalid argument. Third argument contains an out-of-bounds dimension index. Value: [%s].', join( dims, ',' ) ) );
340340
}

0 commit comments

Comments
 (0)