Skip to content

Commit d341cf7

Browse files
committed
Merge remote-tracking branch 'origin/master' into fix-svg-filter-casing
2 parents 05de372 + 4ca16f9 commit d341cf7

File tree

125 files changed

+998
-663
lines changed

Some content is hidden

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

125 files changed

+998
-663
lines changed

.github/workflows/auto-approve-maintainer-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- name: Check if organization member
1818
id: is_organization_member
19-
uses: JamesSingleton/is-organization-member@1.0.1
19+
uses: JamesSingleton/is-organization-member@1.1.0
2020
with:
2121
organization: "yewstack"
2222
username: ${{ github.event.pull_request.user.login }}

.github/workflows/post-benchmark-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
run: echo "PR_NUMBER=$(cat benchmark-core/.PR_NUMBER)" >> $GITHUB_ENV
4747

4848
- name: Post Comment
49-
uses: actions/github-script@v6
49+
uses: actions/github-script@v7
5050
with:
5151
script: |
5252
const fs = require('fs');

.github/workflows/post-benchmark-ssr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: echo "PR_NUMBER=$(cat benchmark-ssr/.PR_NUMBER)" >> $GITHUB_ENV
3232

3333
- name: Post Comment
34-
uses: actions/github-script@v6
34+
uses: actions/github-script@v7
3535
with:
3636
script: |
3737
const commentInfo = {

.github/workflows/post-size-cmp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: python3 ci/make_example_size_cmt.py
3737

3838
- name: Post Comment
39-
uses: actions/github-script@v6
39+
uses: actions/github-script@v7
4040
with:
4141
script: |
4242
const commentInfo = {

.github/workflows/publish-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
shared-key: publish-examples
3030

31-
- uses: jetli/trunk-action@v0.5.0
31+
- uses: jetli/trunk-action@v0.5.1
3232
with:
3333
version: 'latest'
3434

.github/workflows/size-cmp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
shared-key: size-compare
5151

5252
- name: Setup Trunk
53-
uses: jetli/trunk-action@v0.5.0
53+
uses: jetli/trunk-action@v0.5.1
5454
with:
5555
version: "latest"
5656

Cargo.lock

Lines changed: 17 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
## About
3838

39-
**Yew** is a modern Rust framework for creating multi-threaded front-end web apps with WebAssembly.
39+
**Yew** is a modern Rust framework for creating multi-threaded, front-end web apps with WebAssembly.
4040

4141
* Features a macro for declaring interactive HTML with Rust expressions. Developers who have experience using JSX in React should feel quite at home when using Yew.
4242
* Achieves high performance by minimizing DOM API calls for each page render and by making it easy to offload processing to background web workers.
@@ -46,7 +46,7 @@
4646

4747
## Contributing
4848

49-
Yew is a community effort and we welcome all kinds of contributions, big or small, from developers of all backgrounds. We want the Yew community to be a fun and friendly place, so please review our [Code of Conduct](https://github.com/yewstack/yew/blob/master/CODE_OF_CONDUCT.md) to learn what behavior will not be tolerated.
49+
Yew is a community-driven effort and we welcome all kinds of contributions, big or small, from developers of all backgrounds. We want the Yew community to be a fun and friendly place, so please review our [Code of Conduct](https://github.com/yewstack/yew/blob/master/CODE_OF_CONDUCT.md) to learn what behavior will not be tolerated.
5050

5151
#### 🤠 New to Yew?
5252

@@ -58,7 +58,7 @@ Check out the community curated list of awesome things related to Yew / WebAssem
5858

5959
#### 🤔 Confused about something?
6060

61-
Feel free to drop into our [Discord chatroom](https://discord.gg/VQck8X4) or open a [new "Question" issue](https://github.com/yewstack/yew/issues/new/choose) to get help from contributors. Often questions lead to improvements to the ergonomics of the framework, better documentation, and even new features!
61+
Feel free to drop into our [Discord chatroom](https://discord.gg/VQck8X4) or open a [new "Question" issue](https://github.com/yewstack/yew/issues/new/choose) to get help from contributors. Often questions lead to improvements to the ergonomics of the framework, better documentation and even new features!
6262

6363
#### 🙂 Ready to dive into the code?
6464

examples/communication_grandchild_with_grandparent/src/child.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ impl Component for Child {
4545
let name = format!("I'm {my_name}.");
4646

4747
// Here we emit the callback to the grandparent component, whenever the button is clicked.
48-
let onclick = self.state.child_clicked.reform(move |_| (my_name.clone()));
48+
let onclick = self.state.child_clicked.reform(move |_| my_name.clone());
4949

5050
html! {
5151
<div class="child-body">

packages/yew-agent/src/oneshot/provider.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ where
8585
/// The Oneshot Agent Provider.
8686
///
8787
/// This component provides its children access to an oneshot agent.
88-
#[function_component]
88+
#[component]
8989
pub fn OneshotProvider<T, C = Bincode>(props: &WorkerProviderProps) -> Html
9090
where
9191
T: Oneshot + 'static,

0 commit comments

Comments
 (0)