Skip to content

Commit 9c168a2

Browse files
committed
deps: widen cheroot version range; update
1 parent a27f2ca commit 9c168a2

File tree

10 files changed

+190
-197
lines changed

10 files changed

+190
-197
lines changed

.github/workflows/docs-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
2222
with:
2323
python-version: "3.13"
24-
- uses: astral-sh/setup-uv@ed21f2f24f8dd64503750218de024bcf64c7250a # v7.1.5
24+
- uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
2525
with:
2626
enable-cache: false
2727
- run: touch src/fava/static/app.js

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
node-version: "lts/*"
3131
package-manager-cache: false
3232
- run: cd frontend && npm ci
33-
- uses: astral-sh/setup-uv@ed21f2f24f8dd64503750218de024bcf64c7250a # v7.1.5
33+
- uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
3434
with:
3535
enable-cache: false
3636
- run: uv build

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
3838
with:
3939
python-version: ${{ matrix.py }}
40-
- uses: astral-sh/setup-uv@ed21f2f24f8dd64503750218de024bcf64c7250a # v7.1.5
40+
- uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
4141
with:
4242
enable-cache: false
4343
- run: touch src/fava/static/app.js
@@ -87,7 +87,7 @@ jobs:
8787
with:
8888
node-version: "lts/*"
8989
package-manager-cache: false
90-
- uses: astral-sh/setup-uv@ed21f2f24f8dd64503750218de024bcf64c7250a # v7.1.5
90+
- uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
9191
with:
9292
enable-cache: false
9393
- run: cd frontend && npm ci
@@ -103,7 +103,7 @@ jobs:
103103
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
104104
with:
105105
python-version: "3.13"
106-
- uses: astral-sh/setup-uv@ed21f2f24f8dd64503750218de024bcf64c7250a # v7.1.5
106+
- uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
107107
with:
108108
enable-cache: false
109109
- run: touch src/fava/static/app.js

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ repos:
3030
require_serial: true
3131
additional_dependencies:
3232
33-
33+
3434
3535
- id: stylelint
3636
name: stylelint

frontend/eslint.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ export default defineConfig(
8181
},
8282
},
8383
rules: {
84+
"@typescript-eslint/no-useless-default-assignment": OFF,
8485
"svelte/button-has-type": ON,
8586
},
8687
},

frontend/package-lock.json

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

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,6 @@
7777
"d3-time": "^3.0.0",
7878
"d3-time-format": "^4.1.0",
7979
"svelte": "^5.11.3",
80-
"web-tree-sitter": "^0.25.1"
80+
"web-tree-sitter": "^0.26"
8181
}
8282
}

frontend/src/codemirror/beancount-language.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import {
88
import { highlightTrailingWhitespace, keymap } from "@codemirror/view";
99
import { styleTags, tags } from "@lezer/highlight";
1010
import { Language as TSLanguage, Parser as TSParser } from "web-tree-sitter";
11+
import ts_wasm from "web-tree-sitter/web-tree-sitter.wasm";
1112

12-
import ts_wasm from "../../node_modules/web-tree-sitter/tree-sitter.wasm";
1313
import { beancount_completion } from "./beancount-autocomplete.ts";
1414
import { beancount_fold } from "./beancount-fold.ts";
1515
import { beancount_format } from "./beancount-format.ts";

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dependencies = [
4141
"beancount>=2,<4",
4242
"beanquery>=0.1,<0.3",
4343
"beangulp>=0.1",
44-
"cheroot>=8,<11",
44+
"cheroot>=8,<12",
4545
"click>=7,<9",
4646
"markdown2>=2.3.0,<3",
4747
"ply>=3.4",

0 commit comments

Comments
 (0)