Skip to content

Commit 6dd7e9e

Browse files
author
Intuit SVC
committed
Update CHANGELOG.md [skip ci]
1 parent 52282be commit 6dd7e9e

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

CHANGELOG.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
1+
# v2.0.1 (Fri Aug 22 2025)
2+
3+
### Release Notes
4+
5+
#### allow `kt_jvm` configuration to be overridden for `kt_player_plugin_wrapper` ([#85](https://github.com/player-ui/rules_player/pull/85))
6+
7+
`kt_player_plugin_wrapper` now accepts arbitrary parameters (via `kwargs`) that are passed into `kt_jvm` for granular configuration control — see [`kt_jvm` documentation](https://github.com/player-ui/rules_player/blob/main/docs/kotlin.md#kt_jvm) for information on what parameters are accepted.
8+
9+
```python
10+
kt_player_plugin_wrapper(
11+
# main params (required)
12+
name = "example-plugin",
13+
package = "com.intuit.playerui.plugins.example",
14+
plugin_name = "ExamplePlugin",
15+
plugin_source = "plugins/example/core/dist/ExamplePlugin.native.js",
16+
resources = ["//plugins/example/core:core_native_bundle"],
17+
18+
# override dependencies (optional)
19+
main_exports = ["//jvm/core"],
20+
main_deps = ["//jvm/core"],
21+
test_deps = ["//jvm/testutils"],
22+
23+
# enable publishing (optional)
24+
group = GROUP,
25+
version = VERSION,
26+
pom_template = "//jvm:pom.tpl",
27+
28+
# provide compiler opts (optional)
29+
main_opts = "//jvm:main_options",
30+
test_opts = "//jvm:test_options",
31+
)
32+
```
33+
34+
---
35+
36+
#### 🐛 Bug Fix
37+
38+
- allow `kt_jvm` configuration to be overridden for `kt_player_plugin_wrapper` [#85](https://github.com/player-ui/rules_player/pull/85) ([@sugarmanz](https://github.com/sugarmanz))
39+
40+
#### Authors: 1
41+
42+
- Jeremiah Zucker ([@sugarmanz](https://github.com/sugarmanz))
43+
44+
---
45+
146
# v2.0.0 (Thu Jul 31 2025)
247

348
#### 💥 Breaking Change

0 commit comments

Comments
 (0)