Skip to content

Commit f339b7f

Browse files
committed
Auto-generated commit
1 parent c7c1e26 commit f339b7f

File tree

24 files changed

+20
-2054
lines changed

24 files changed

+20
-2054
lines changed

CHANGELOG.md

Lines changed: 14 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 (2025-06-24)
7+
## Unreleased (2025-06-26)
88

99
<section class="features">
1010

@@ -31,6 +31,16 @@
3131

3232
### BREAKING CHANGES
3333

34+
- [`d27d963`](https://github.com/stdlib-js/stdlib/commit/d27d963735240594f5b51a460c68e31493370a4a): remove `utils/some-in-by`
35+
36+
- To migrate, users should update their require/import paths to use
37+
`@stdlib/object/some-in-by` which provides the same API and implementation.
38+
39+
- [`4817aff`](https://github.com/stdlib-js/stdlib/commit/4817affe594ef1e952c523e8d3aa0911e8fa0983): remove `utils/every-own-by`
40+
41+
- To migrate, users should update their require/import paths to use
42+
`@stdlib/object/every-own-by` which provides the same API and implementation.
43+
3444
- [`81f72df`](https://github.com/stdlib-js/stdlib/commit/81f72df6f72639f05f25466ae294e59a4a44d36d): remove `utils/every-in-by`
3545

3646
- To migrate, users should update their require/import paths to use
@@ -142,6 +152,7 @@ A total of 5 issues were closed in this release:
142152

143153
<details>
144154

155+
- [`d27d963`](https://github.com/stdlib-js/stdlib/commit/d27d963735240594f5b51a460c68e31493370a4a) - **remove:** remove `utils/some-in-by` _(by Neeraj Pathak)_
145156
- [`edef1e2`](https://github.com/stdlib-js/stdlib/commit/edef1e298a551ed453c4edc3d769746baf5dbde1) - **chore:** minor clean-up _(by Philipp Burckhardt)_
146157
- [`379c3c6`](https://github.com/stdlib-js/stdlib/commit/379c3c63f58517995deb3367e26c6f10bdf6f2eb) - **chore:** fix JavaScript lint errors [(#7355)](https://github.com/stdlib-js/stdlib/pull/7355) _(by Lokesh Ranjan, Athan Reines)_
147158
- [`b81fb3c`](https://github.com/stdlib-js/stdlib/commit/b81fb3cdb78fb07ec80ad7daf3503f769557508d) - **chore:** fix JavaScript lint errors [(#7065)](https://github.com/stdlib-js/stdlib/pull/7065) _(by Uday Kakade, Philipp Burckhardt)_
@@ -150,6 +161,8 @@ A total of 5 issues were closed in this release:
150161
- [`805f439`](https://github.com/stdlib-js/stdlib/commit/805f439579204a004b3ff7cb040d5dca166c3205) - **chore:** minor clean-up _(by Philipp Burckhardt)_
151162
- [`ed9a036`](https://github.com/stdlib-js/stdlib/commit/ed9a036b50dd520e8090f047928e6e45611d0b46) - **docs:** fix typo _(by Philipp Burckhardt)_
152163
- [`5f73301`](https://github.com/stdlib-js/stdlib/commit/5f73301a8509cc423a06b02140c4e316fd02ff49) - **docs:** minor clean-up _(by Philipp Burckhardt)_
164+
- [`4817aff`](https://github.com/stdlib-js/stdlib/commit/4817affe594ef1e952c523e8d3aa0911e8fa0983) - **remove:** remove `utils/every-own-by` _(by Neeraj Pathak)_
165+
- [`35b2819`](https://github.com/stdlib-js/stdlib/commit/35b281999025fcd8236f7ca446cf44572cbb00f5) - **refactor:** update paths _(by Neeraj Pathak)_
153166
- [`878adf9`](https://github.com/stdlib-js/stdlib/commit/878adf9c25bc91bcacbe564234de5d1893402f5d) - **chore:** fix README lint error _(by Neeraj Pathak)_
154167
- [`81f72df`](https://github.com/stdlib-js/stdlib/commit/81f72df6f72639f05f25466ae294e59a4a44d36d) - **remove:** remove `utils/every-in-by` _(by Neeraj Pathak)_
155168
- [`cdd16a5`](https://github.com/stdlib-js/stdlib/commit/cdd16a535943832d7f227215467826e0924546ce) - **refactor:** update paths _(by Neeraj Pathak)_

any-own-by/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ bool = anyOwnBy( obj, threshold );
191191

192192
- <span class="package-name">[`@stdlib/utils/any-by`][@stdlib/utils/any-by]</span><span class="delimiter">: </span><span class="description">test whether at least one element in a collection passes a test implemented by a predicate function.</span>
193193
- <span class="package-name">[`@stdlib/utils/any-in-by`][@stdlib/utils/any-in-by]</span><span class="delimiter">: </span><span class="description">test whether at least one property in an object passes a test implemented by a predicate function.</span>
194-
- <span class="package-name">[`@stdlib/utils/every-own-by`][@stdlib/utils/every-own-by]</span><span class="delimiter">: </span><span class="description">test whether all own properties of an object pass a test implemented by a predicate function.</span>
194+
- <span class="package-name">[`@stdlib/object/every-own-by`][@stdlib/object/every-own-by]</span><span class="delimiter">: </span><span class="description">test whether all own properties of an object pass a test implemented by a predicate function.</span>
195195
- <span class="package-name">[`@stdlib/utils/some-own-by`][@stdlib/utils/some-own-by]</span><span class="delimiter">: </span><span class="description">test whether some `own` properties of a provided object satisfy a predicate function for at least `n` properties.</span>
196196

197197
</section>
@@ -210,7 +210,7 @@ bool = anyOwnBy( obj, threshold );
210210

211211
[@stdlib/utils/any-in-by]: https://github.com/stdlib-js/utils/tree/main/any-in-by
212212

213-
[@stdlib/utils/every-own-by]: https://github.com/stdlib-js/utils/tree/main/every-own-by
213+
[@stdlib/object/every-own-by]: https://github.com/stdlib-js/object-every-own-by
214214

215215
[@stdlib/utils/some-own-by]: https://github.com/stdlib-js/utils/tree/main/some-own-by
216216

every-own-by/README.md

Lines changed: 0 additions & 223 deletions
This file was deleted.

every-own-by/benchmark/benchmark.js

Lines changed: 0 additions & 97 deletions
This file was deleted.

0 commit comments

Comments
 (0)