Skip to content

Commit 6e38440

Browse files
authored
Merge branch 'master' into fix/bindings-cgo-windows
2 parents bf9e5aa + 6043588 commit 6e38440

4,243 files changed

Lines changed: 496411 additions & 8334 deletions

File tree

Some content is hidden

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

.all-contributorsrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"files": [
3-
"website/src/pages/credits.mdx"
3+
"website/src/pages/credits.mdx",
4+
"docs/src/assets/contributors.html"
45
],
56
"imageSize": 75,
67
"commit": false,

.beads/issues.jsonl

Lines changed: 55 additions & 0 deletions
Large diffs are not rendered by default.

.coderabbit.yaml

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
language: en-US
2+
tone_instructions: ''
3+
early_access: false
4+
enable_free_tier: true
5+
reviews:
6+
profile: chill
7+
request_changes_workflow: false
8+
high_level_summary: true
9+
high_level_summary_placeholder: '@coderabbitai summary'
10+
auto_title_placeholder: '@coderabbitai'
11+
review_status: true
12+
poem: true
13+
collapse_walkthrough: false
14+
sequence_diagrams: true
15+
path_filters: []
16+
path_instructions: []
17+
abort_on_close: true
18+
auto_review:
19+
enabled: true
20+
auto_incremental_review: true
21+
ignore_title_keywords: []
22+
labels: []
23+
drafts: false
24+
base_branches: ['v3-alpha', 'master']
25+
tools:
26+
shellcheck:
27+
enabled: true
28+
ruff:
29+
enabled: true
30+
markdownlint:
31+
enabled: true
32+
github-checks:
33+
enabled: true
34+
timeout_ms: 90000
35+
languagetool:
36+
enabled: true
37+
enabled_only: false
38+
level: default
39+
biome:
40+
enabled: true
41+
hadolint:
42+
enabled: true
43+
swiftlint:
44+
enabled: true
45+
phpstan:
46+
enabled: true
47+
level: default
48+
golangci-lint:
49+
enabled: true
50+
yamllint:
51+
enabled: true
52+
gitleaks:
53+
enabled: true
54+
checkov:
55+
enabled: true
56+
detekt:
57+
enabled: true
58+
eslint:
59+
enabled: true
60+
chat:
61+
auto_reply: true
62+
knowledge_base:
63+
opt_out: false
64+
learnings:
65+
scope: auto
66+
issues:
67+
scope: auto
68+
jira:
69+
project_keys: []
70+
linear:
71+
team_keys: []

.fossa.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 3
2+
3+
# Exclude documentation-site build tooling from license scanning.
4+
# Docusaurus (website/) pulls in webpack-dev-server → selfsigned → node-forge
5+
# whose dual SPDX expression (BSD-3-Clause OR GPL-2.0) trips the org
6+
# license policy. node-forge is build-time only for serving the docs
7+
# site locally; it is not distributed with the Wails Go module or the
8+
# @wailsio/runtime npm package, so it is out of scope for the license
9+
# compliance posture we want FOSSA to enforce.
10+
#
11+
# The Astro-based docs site (docs/) carries the same pattern: sharp pulls in
12+
# @img/sharp-libvips-* (LGPL-3.0-or-later) and astro-d2 pulls in
13+
# @terrastruct/d2 (MPL-2.0). Both are dev/build tools only and are never
14+
# distributed with the Wails module or npm package.
15+
targets:
16+
exclude:
17+
- type: npm
18+
path: website
19+
- type: npm
20+
path: docs

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
# Use bd merge for beads JSONL files
3+
.beads/issues.jsonl merge=beads

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ body:
77
- type: markdown
88
attributes:
99
value: |
10+
***Please note: No bug reports are currently being accepted for Wails v3***
11+
***Please note: No bug reports are currently being accepted for Wails v3***
1012
***Please note: No bug reports are currently being accepted for Wails v3***
1113
Before submitting this issue, please do the following:
1214
- Do a web search for your error. This usually leads to a much better understanding of the issue.

.github/pull_request_template.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66
* YOUR PR MAY BE REJECTED IF IT DOES NOT FOLLOW THESE STEPS *
77
*********************************************************************
88
9+
- *DO NOT* submit bugs for a source install of v3, ONLY tagged versions, e.g. v3.0.0-alpha.11
910
- *DO NOT* submit PRs for v3 alpha enhancements, unless you have opened a post on the discord channel.
1011
All enhancements must be discussed first.
11-
The feedback guide for v3 is here: https://v3alpha.wails.io/getting-started/feedback/
12+
The feedback guide for v3 is here: https://v3.wails.io/feedback/
1213
1314
- Before submitting your PR, please ensure you have created and linked the PR to an issue.
1415
- If a relevant issue already exists, please reference it in your PR by including `Fixes #<issue number>` in your PR description.
@@ -47,7 +48,7 @@ Please paste the output of `wails doctor`. If you are unable to run this command
4748

4849
# Checklist:
4950

50-
- [ ] I have updated `website/src/pages/changelog.mdx` with details of this PR
51+
- [ ] (v2 only) I have updated `website/src/pages/changelog.mdx` with details of this PR (v3 changelog entries are added automatically)
5152
- [ ] My code follows the general coding style of this project
5253
- [ ] I have performed a self-review of my own code
5354
- [ ] I have commented my code, particularly in hard-to-understand areas

.github/workflows/auto-changelog-v3.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Auto Changelog (v3)
22

33
on:
4-
pull_request:
5-
branches: [ v3-alpha ]
4+
pull_request_target:
5+
branches: [ master ]
66
types: [ closed ]
77
workflow_dispatch:
88
inputs:
@@ -15,6 +15,8 @@ jobs:
1515
auto-changelog:
1616
if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch'
1717
runs-on: ubuntu-latest
18+
env:
19+
GOWORK: "off"
1820

1921
permissions:
2022
contents: write
@@ -23,7 +25,7 @@ jobs:
2325
- name: Checkout v3-alpha
2426
uses: actions/checkout@v4
2527
with:
26-
ref: v3-alpha
28+
ref: master
2729
fetch-depth: 0
2830
token: ${{ secrets.CHANGELOG_PUSH_TOKEN || secrets.GITHUB_TOKEN }}
2931

@@ -59,7 +61,7 @@ jobs:
5961
if: steps.check.outputs.skip == 'false'
6062
uses: actions/setup-go@v5
6163
with:
62-
go-version: '1.23'
64+
go-version: '1.25'
6365

6466
- name: Auto-fill changelog entry
6567
if: steps.check.outputs.skip == 'false'
@@ -80,4 +82,4 @@ jobs:
8082
git config user.email "github-actions[bot]@users.noreply.github.com"
8183
git add v3/UNRELEASED_CHANGELOG.md
8284
git commit -m "chore(changelog): auto-add entry for PR #${PR_NUMBER} — ${PR_TITLE}"
83-
git push https://x-access-token:${{ secrets.CHANGELOG_PUSH_TOKEN || secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git v3-alpha
85+
git push https://x-access-token:${{ secrets.CHANGELOG_PUSH_TOKEN || secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git master

.github/workflows/auto-label-issues.yml

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

0 commit comments

Comments
 (0)