Skip to content

Commit f129e42

Browse files
committed
Auto-generated commit
1 parent 084b411 commit f129e42

14 files changed

Lines changed: 19 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-05-11)
7+
## Unreleased (2026-05-12)
88

99
<section class="features">
1010

@@ -932,6 +932,7 @@ A total of 49 issues were closed in this release:
932932

933933
<details>
934934

935+
- [`65f9d6f`](https://github.com/stdlib-js/stdlib/commit/65f9d6fd963809f82e54cdfd06ed15e15b51525e) - **refactor:** align `ndarray/*` errors and remove `namespace` self-ref [(#12102)](https://github.com/stdlib-js/stdlib/pull/12102) _(by Philipp Burckhardt)_
935936
- [`c77fbd9`](https://github.com/stdlib-js/stdlib/commit/c77fbd9a0ea702e373b40173007fcb4c0639c24e) - **refactor:** align `ndarray/base/diagonal` error message and remove `namespace` self-refs [(#12096)](https://github.com/stdlib-js/stdlib/pull/12096) _(by Philipp Burckhardt, Athan Reines)_
936937
- [`c534f97`](https://github.com/stdlib-js/stdlib/commit/c534f971488b2a5ebacca4dccf73a9d9b4e09bc7) - **docs:** update namespace table of contents [(#12092)](https://github.com/stdlib-js/stdlib/pull/12092) _(by stdlib-bot)_
937938
- [`25ae5aa`](https://github.com/stdlib-js/stdlib/commit/25ae5aa59b431b6b562e4fe36b69b3186111af12) - **refactor:** update error message _(by Athan Reines)_

base/fill-diagonal/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var fill = require( './../../../base/fill' );
4141
* @param {IntegerArray} dims - dimension indices defining the plane in which to fill the diagonal
4242
* @param {integer} k - diagonal offset
4343
* @throws {RangeError} must provide exactly two dimension indices
44-
* @throws {RangeError} input ndarray must have at least two dimensions
44+
* @throws {RangeError} input ndarray must have two or more dimensions
4545
* @throws {RangeError} must provide valid dimension indices
4646
* @throws {Error} must provide unique dimension indices
4747
* @throws {TypeError} second argument cannot be safely cast to the input array data type

base/rot90/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ var format = require( '@stdlib/string/format' );
4747
* @param {integer} k - number of times to rotate by 90 degrees
4848
* @param {boolean} writable - boolean indicating whether the returned ndarray should be writable
4949
* @throws {RangeError} must provide exactly two dimension indices
50-
* @throws {RangeError} input ndarray must have at least two dimensions
50+
* @throws {RangeError} input ndarray must have two or more dimensions
5151
* @throws {RangeError} must provide valid dimension indices
5252
* @throws {Error} must provide unique dimension indices
5353
* @returns {ndarray} ndarray view

base/to-rot180/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var assign = require( './../../../base/assign' );
3737
* @param {ndarray} x - input array
3838
* @param {IntegerArray} dims - dimension indices defining the plane of rotation
3939
* @throws {RangeError} must provide exactly two dimension indices
40-
* @throws {RangeError} input ndarray must have at least two dimensions
40+
* @throws {RangeError} input ndarray must have two or more dimensions
4141
* @throws {RangeError} must provide valid dimension indices
4242
* @throws {Error} must provide unique dimension indices
4343
* @returns {ndarray} output array

base/to-rot90/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var assign = require( './../../../base/assign' );
4040
* @param {IntegerArray} dims - dimension indices defining the plane of rotation
4141
* @param {integer} k - number of times to rotate by 90 degrees
4242
* @throws {RangeError} must provide exactly two dimension indices
43-
* @throws {RangeError} input ndarray must have at least two dimensions
43+
* @throws {RangeError} input ndarray must have two or more dimensions
4444
* @throws {RangeError} must provide valid dimension indices
4545
* @throws {Error} must provide unique dimension indices
4646
* @returns {ndarray} output array

diagonal/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ var format = require( '@stdlib/string/format' );
4949
* @throws {TypeError} `k` option must be an integer
5050
* @throws {TypeError} `dims` option must be an array of integers
5151
* @throws {RangeError} must provide exactly two dimension indices
52-
* @throws {RangeError} input ndarray must have at least two dimensions
52+
* @throws {RangeError} input ndarray must have two or more dimensions
5353
* @throws {RangeError} must provide valid dimension indices
5454
* @throws {Error} must provide unique dimension indices
5555
* @returns {ndarray} ndarray view

iter/column-entries/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var format = require( '@stdlib/string/format' );
4545
* @param {Options} [options] - function options
4646
* @param {boolean} [options.readonly=true] - boolean indicating whether returned views should be read-only
4747
* @throws {TypeError} first argument must be an ndarray
48-
* @throws {TypeError} first argument must have at least two dimensions
48+
* @throws {TypeError} first argument must have two or more dimensions
4949
* @throws {TypeError} options argument must be an object
5050
* @throws {TypeError} must provide valid options
5151
* @throws {Error} cannot write to a read-only array
@@ -120,7 +120,7 @@ function nditerColumnEntries( x ) {
120120

121121
// Ensure that the input array has sufficient dimensions...
122122
if ( ndims < 2 ) {
123-
throw new TypeError( 'invalid argument. First argument must be an ndarray having at least two dimensions.' );
123+
throw new TypeError( 'invalid argument. First argument must be an ndarray having two or more dimensions.' );
124124
}
125125

126126
// Check whether the input array is empty...

iter/columns/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var format = require( '@stdlib/string/format' );
4545
* @param {Options} [options] - function options
4646
* @param {boolean} [options.readonly=true] - boolean indicating whether returned views should be read-only
4747
* @throws {TypeError} first argument must be an ndarray
48-
* @throws {TypeError} first argument must have at least two dimensions
48+
* @throws {TypeError} first argument must have two or more dimensions
4949
* @throws {TypeError} options argument must be an object
5050
* @throws {TypeError} must provide valid options
5151
* @throws {Error} cannot write to a read-only array
@@ -120,7 +120,7 @@ function nditerColumns( x ) {
120120

121121
// Ensure that the input array has sufficient dimensions...
122122
if ( ndims < 2 ) {
123-
throw new TypeError( 'invalid argument. First argument must be an ndarray having at least two dimensions.' );
123+
throw new TypeError( 'invalid argument. First argument must be an ndarray having two or more dimensions.' );
124124
}
125125
// Check whether the input array is empty...
126126
N = numel( shape );

iter/row-entries/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var format = require( '@stdlib/string/format' );
4545
* @param {Options} [options] - function options
4646
* @param {boolean} [options.readonly=true] - boolean indicating whether returned views should be read-only
4747
* @throws {TypeError} first argument must be an ndarray
48-
* @throws {TypeError} first argument must have at least two dimensions
48+
* @throws {TypeError} first argument must have two or more dimensions
4949
* @throws {TypeError} options argument must be an object
5050
* @throws {TypeError} must provide valid options
5151
* @throws {Error} cannot write to a read-only array
@@ -120,7 +120,7 @@ function nditerRowEntries( x ) {
120120

121121
// Ensure that the input array has sufficient dimensions...
122122
if ( ndims < 2 ) {
123-
throw new TypeError( 'invalid argument. First argument must be an ndarray having at least two dimensions.' );
123+
throw new TypeError( 'invalid argument. First argument must be an ndarray having two or more dimensions.' );
124124
}
125125

126126
// Check whether the input array is empty...

iter/rows/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var format = require( '@stdlib/string/format' );
4545
* @param {Options} [options] - function options
4646
* @param {boolean} [options.readonly=true] - boolean indicating whether returned views should be read-only
4747
* @throws {TypeError} first argument must be an ndarray
48-
* @throws {TypeError} first argument must have at least two dimensions
48+
* @throws {TypeError} first argument must have two or more dimensions
4949
* @throws {TypeError} options argument must be an object
5050
* @throws {TypeError} must provide valid options
5151
* @throws {Error} cannot write to a read-only array
@@ -120,7 +120,7 @@ function nditerRows( x ) {
120120

121121
// Ensure that the input array has sufficient dimensions...
122122
if ( ndims < 2 ) {
123-
throw new TypeError( 'invalid argument. First argument must be an ndarray having at least two dimensions.' );
123+
throw new TypeError( 'invalid argument. First argument must be an ndarray having two or more dimensions.' );
124124
}
125125
// Check whether the input array is empty...
126126
N = numel( shape );

0 commit comments

Comments
 (0)