Skip to content

Commit 5bc19e5

Browse files
committed
Auto-generated commit
1 parent 5217a02 commit 5bc19e5

File tree

44 files changed

+128
-82
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+128
-82
lines changed

CHANGELOG.md

Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,17 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-05-20)
7+
## Unreleased (2025-05-21)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`79efa56`](https://github.com/stdlib-js/stdlib/commit/79efa566515a8c7453fb59b9e18050be37969830) - add `anyHasOwnProp`, `anyHasProp`, `anyIsEntry`, and `anyIsEntryIn` to namespace
14+
- [`9d04faf`](https://github.com/stdlib-js/stdlib/commit/9d04fafb8ff8cbba366950b2659de2c652953597) - add `array/base/any-is-entry-in`
15+
- [`1090b61`](https://github.com/stdlib-js/stdlib/commit/1090b61370d43c7224595f0038a086257fdb0113) - add `array/base/any-is-entry`
16+
- [`4226d6d`](https://github.com/stdlib-js/stdlib/commit/4226d6d1dc95edfc037489a444cc8300cedfad2e) - add `array/base/any-has-property`
17+
- [`73cfffd`](https://github.com/stdlib-js/stdlib/commit/73cfffd015cbde73fed35b630512c71752bf4934) - add `array/base/any-has-own-property`
1318
- [`0f6d4e7`](https://github.com/stdlib-js/stdlib/commit/0f6d4e7694d458f76dc077d5b618e405f6cfed37) - add `anyIsEntry` to namespace
1419
- [`fbffea0`](https://github.com/stdlib-js/stdlib/commit/fbffea0a7be15b6013111fd0b613548d7c09a1b7) - add `array/base/assert/any-is-entry`
1520
- [`dc8942d`](https://github.com/stdlib-js/stdlib/commit/dc8942da05af3ed631f67fc679c7c1730954e1be) - add `anyIsEntryIn` to namespace
@@ -141,6 +146,35 @@
141146

142147
### BREAKING CHANGES
143148

149+
- [`b0f11b1`](https://github.com/stdlib-js/stdlib/commit/b0f11b1a4ba47bed9c52c7825e27023223d4d9f4): remove `array/base/assert/any-is-entry-in`
150+
151+
- To migrate, users should update their require/import paths to use
152+
`@stdlib/array/base/any-is-entry-in` which provides the same API and
153+
implementation.
154+
155+
- [`05f79b6`](https://github.com/stdlib-js/stdlib/commit/05f79b6d47b81a2193101ee6476877c4ae860cce): remove `array/base/assert/any-is-entry`
156+
157+
- To migrate, users should update their require/import paths to use
158+
`@stdlib/array/base/any-is-entry` which provides the same API and
159+
implementation.
160+
161+
- [`87f46a0`](https://github.com/stdlib-js/stdlib/commit/87f46a023aab832c4adb03b772ffa8d3fd114406): remove `array/base/assert/any-has-property`
162+
163+
- To migrate, users should update their require/import paths to use
164+
`@stdlib/array/base/any-has-property` which provides the same API and
165+
implementation.
166+
167+
- [`44e6405`](https://github.com/stdlib-js/stdlib/commit/44e64052156d8f89c2701616e0e2bf267746329b): remove `array/base/assert/any-has-own-property`
168+
169+
- To migrate, users should update their require/import paths to use
170+
`@stdlib/array/base/any-has-own-property` which provides the same API and
171+
implementation.
172+
173+
- [`23e8953`](https://github.com/stdlib-js/stdlib/commit/23e89539dc1a96e17f06ab1bde7a11e76fddd83b): remove `anyHasOwnProp`, `anyHasProp`, `anyIsEntry`, `anyIsEntryIn`
174+
175+
- To migrate, users should access the same symbols via the
176+
`@stdlib/array/base` namespace.
177+
144178
- [`82ee31f`](https://github.com/stdlib-js/stdlib/commit/82ee31f3193dc0854b0767ddf9e9effed62ba878): remove `equalNaNs` support
145179

146180
- To migrate, users should use `array/base/last-index-of-same-value`
@@ -177,6 +211,16 @@ A total of 32 issues were closed in this release:
177211

178212
<details>
179213

214+
- [`b0f11b1`](https://github.com/stdlib-js/stdlib/commit/b0f11b1a4ba47bed9c52c7825e27023223d4d9f4) - **remove:** remove `array/base/assert/any-is-entry-in` _(by Athan Reines)_
215+
- [`05f79b6`](https://github.com/stdlib-js/stdlib/commit/05f79b6d47b81a2193101ee6476877c4ae860cce) - **remove:** remove `array/base/assert/any-is-entry` _(by Athan Reines)_
216+
- [`87f46a0`](https://github.com/stdlib-js/stdlib/commit/87f46a023aab832c4adb03b772ffa8d3fd114406) - **remove:** remove `array/base/assert/any-has-property` _(by Athan Reines)_
217+
- [`44e6405`](https://github.com/stdlib-js/stdlib/commit/44e64052156d8f89c2701616e0e2bf267746329b) - **remove:** remove `array/base/assert/any-has-own-property` _(by Athan Reines)_
218+
- [`23e8953`](https://github.com/stdlib-js/stdlib/commit/23e89539dc1a96e17f06ab1bde7a11e76fddd83b) - **remove:** remove `anyHasOwnProp`, `anyHasProp`, `anyIsEntry`, `anyIsEntryIn` from namespace _(by Athan Reines)_
219+
- [`79efa56`](https://github.com/stdlib-js/stdlib/commit/79efa566515a8c7453fb59b9e18050be37969830) - **feat:** add `anyHasOwnProp`, `anyHasProp`, `anyIsEntry`, and `anyIsEntryIn` to namespace _(by Athan Reines)_
220+
- [`9d04faf`](https://github.com/stdlib-js/stdlib/commit/9d04fafb8ff8cbba366950b2659de2c652953597) - **feat:** add `array/base/any-is-entry-in` _(by Athan Reines)_
221+
- [`1090b61`](https://github.com/stdlib-js/stdlib/commit/1090b61370d43c7224595f0038a086257fdb0113) - **feat:** add `array/base/any-is-entry` _(by Athan Reines)_
222+
- [`4226d6d`](https://github.com/stdlib-js/stdlib/commit/4226d6d1dc95edfc037489a444cc8300cedfad2e) - **feat:** add `array/base/any-has-property` _(by Athan Reines)_
223+
- [`73cfffd`](https://github.com/stdlib-js/stdlib/commit/73cfffd015cbde73fed35b630512c71752bf4934) - **feat:** add `array/base/any-has-own-property` _(by Athan Reines)_
180224
- [`89d9dc3`](https://github.com/stdlib-js/stdlib/commit/89d9dc316985aa3c194222afbf8146e58ff6d761) - **docs:** update namespace table of contents [(#7046)](https://github.com/stdlib-js/stdlib/pull/7046) _(by stdlib-bot)_
181225
- [`99f515d`](https://github.com/stdlib-js/stdlib/commit/99f515d651fe793e13b1df6ff95f39200fad0ff1) - **docs:** update parameter types _(by Athan Reines)_
182226
- [`02109aa`](https://github.com/stdlib-js/stdlib/commit/02109aa28a0c48a2d6b92de3423614204a39431e) - **chore:** address commit comments for commit `fbffea0` [(#7038)](https://github.com/stdlib-js/stdlib/pull/7038) _(by Sachin Raj, Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ Ryan Seal <[email protected]>
146146
Rylan Yang <[email protected]>
147147
SAHIL KUMAR <[email protected]>
148148
SHIVAM YADAV <[email protected]>
149+
Sachin Raj <[email protected]>
149150
Sahil Goyal <[email protected]>
150151
Sai Avinash <[email protected]>
151152
Sai Srikar Dumpeti <[email protected]>
@@ -170,6 +171,7 @@ Tanishq Ahuja <[email protected]>
170171
Tirtadwipa Manunggal <[email protected]>
171172
Tudor Pagu <[email protected]>
172173
Tufailahmed Bargir <[email protected]>
174+
Uday Kakade <[email protected]>
173175
Utkarsh <http://[email protected]>
174176
Utkarsh Raj <[email protected]>
175177
UtkershBasnet <[email protected]>

base/assert/any-has-own-property/README.md renamed to base/any-has-own-property/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ limitations under the License.
3737
## Usage
3838

3939
```javascript
40-
var anyHasOwnProp = require( '@stdlib/array/base/assert/any-has-own-property' );
40+
var anyHasOwnProp = require( '@stdlib/array/base/any-has-own-property' );
4141
```
4242

4343
#### anyHasOwnProp( arr, property )
@@ -89,7 +89,7 @@ bool = anyHasOwnProp( [ o1, o2, o3 ], 'toString' );
8989
var fromCodePoint = require( '@stdlib/string/from-code-point' );
9090
var discreteUniform = require( '@stdlib/random/base/discrete-uniform' );
9191
var filledBy = require( '@stdlib/array/filled-by' );
92-
var anyHasOwnProp = require( '@stdlib/array/base/assert/any-has-own-property' );
92+
var anyHasOwnProp = require( '@stdlib/array/base/any-has-own-property' );
9393

9494
function randomObject() {
9595
var o = {};

base/assert/any-has-own-property/benchmark/benchmark.length.js renamed to base/any-has-own-property/benchmark/benchmark.length.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
var bench = require( '@stdlib/bench' );
2424
var pow = require( '@stdlib/math/base/special/pow' );
2525
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
26-
var filled = require( './../../../../filled' );
26+
var filled = require( './../../../filled' );
2727
var pkg = require( './../package.json' ).name;
2828
var anyHasOwnProp = require( './../lib' );
2929

base/assert/any-has-own-property/docs/types/test.ts renamed to base/any-has-own-property/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
import toAccessorArray = require( './../../../../../base/to-accessor-array' );
19+
import toAccessorArray = require( './../../../../base/to-accessor-array' );
2020
import anyHasOwnProp = require( './index' );
2121

2222

base/assert/any-has-own-property/examples/index.js renamed to base/any-has-own-property/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
var fromCodePoint = require( '@stdlib/string/from-code-point' );
2222
var discreteUniform = require( '@stdlib/random/base/discrete-uniform' );
23-
var filledBy = require( './../../../../filled-by' );
23+
var filledBy = require( './../../../filled-by' );
2424
var anyHasOwnProp = require( './../lib' );
2525

2626
function randomObject() {

base/assert/any-has-own-property/lib/index.js renamed to base/any-has-own-property/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
/**
2222
* Test whether at least one element in a provided array has a specified own property.
2323
*
24-
* @module @stdlib/array/base/assert/any-has-own-property
24+
* @module @stdlib/array/base/any-has-own-property
2525
*
2626
* @example
27-
* var anyHasOwnProp = require( '@stdlib/array/base/assert/any-has-own-property' );
27+
* var anyHasOwnProp = require( '@stdlib/array/base/any-has-own-property' );
2828
*
2929
* var o1 = {
3030
* 'a': 1

base/assert/any-has-own-property/lib/main.js renamed to base/any-has-own-property/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
// MODULES //
2222

23-
var isAccessorArray = require( './../../../../base/assert/is-accessor-array' );
24-
var resolveGetter = require( './../../../../base/resolve-getter' );
23+
var isAccessorArray = require( './../../../base/assert/is-accessor-array' );
24+
var resolveGetter = require( './../../../base/resolve-getter' );
2525
var hasOwnProp = require( '@stdlib/assert/has-own-property' );
2626

2727

0 commit comments

Comments
 (0)