Skip to content

Commit 0905833

Browse files
committed
Auto-generated commit
1 parent be15c0d commit 0905833

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-09-13)
7+
## Unreleased (2025-09-16)
88

99
<section class="issues">
1010

1111
### Closed Issues
1212

13-
A total of 5 issues were closed in this release:
13+
A total of 6 issues were closed in this release:
1414

15-
[#5791](https://github.com/stdlib-js/stdlib/issues/5791), [#7019](https://github.com/stdlib-js/stdlib/issues/7019), [#7744](https://github.com/stdlib-js/stdlib/issues/7744), [#7993](https://github.com/stdlib-js/stdlib/issues/7993), [#8058](https://github.com/stdlib-js/stdlib/issues/8058)
15+
[#5791](https://github.com/stdlib-js/stdlib/issues/5791), [#6956](https://github.com/stdlib-js/stdlib/issues/6956), [#7019](https://github.com/stdlib-js/stdlib/issues/7019), [#7744](https://github.com/stdlib-js/stdlib/issues/7744), [#7993](https://github.com/stdlib-js/stdlib/issues/7993), [#8058](https://github.com/stdlib-js/stdlib/issues/8058)
1616

1717
</section>
1818

@@ -24,6 +24,7 @@ A total of 5 issues were closed in this release:
2424

2525
<details>
2626

27+
- [`6b4d430`](https://github.com/stdlib-js/stdlib/commit/6b4d4306def168bf7fccd9ca1eeb719b169c1dce) - **chore:** address JavaScript lint errors [(#8081)](https://github.com/stdlib-js/stdlib/pull/8081) _(by Anshumancanrock, Athan Reines)_
2728
- [`f5d1741`](https://github.com/stdlib-js/stdlib/commit/f5d1741e71dac9dc829551c86109d18590515e01) - **chore:** address lint errors in `plot/unicode/stemleaf` [(#8066)](https://github.com/stdlib-js/stdlib/pull/8066) _(by Vara Rahul Rajana)_
2829
- [`5f2a8e1`](https://github.com/stdlib-js/stdlib/commit/5f2a8e17d446397ce2c93e683a3187ec63a38ded) - **chore:** address EditorConfig lint errors [(#7999)](https://github.com/stdlib-js/stdlib/pull/7999) _(by DUDHAT HEMIL PRAVINKUMAR)_
2930
- [`dbc0f86`](https://github.com/stdlib-js/stdlib/commit/dbc0f86a129ad6d1bc89b4dc6a30948f2ba8e85f) - **chore:** fix JavaScript lint errors [(#7952)](https://github.com/stdlib-js/stdlib/pull/7952) _(by Vara Rahul Rajana)_
@@ -42,9 +43,10 @@ A total of 5 issues were closed in this release:
4243

4344
### Contributors
4445

45-
A total of 6 people contributed to this release. Thank you to the following contributors:
46+
A total of 7 people contributed to this release. Thank you to the following contributors:
4647

4748
- Anshu Kumar
49+
- Anshumancanrock
4850
- Athan Reines
4951
- DUDHAT HEMIL PRAVINKUMAR
5052
- Philipp Burckhardt

components/svg/clip-path/lib/main.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,9 @@ function ClipPath( options ) {
131131
var args;
132132
var i;
133133
debug( 'Received a render event. Re-emitting...' );
134-
args = new Array( arguments.length+1 );
135-
args[ 0 ] = 'render';
134+
args = [ 'render' ];
136135
for ( i = 0; i < arguments.length; i++ ) {
137-
args[ i+1 ] = arguments[ i ];
136+
args.push( arguments[ i ] );
138137
}
139138
self.emit.apply( self, args );
140139
}

0 commit comments

Comments
 (0)