Skip to content

Commit fecdc48

Browse files
committed
merge latest master
2 parents 85e9735 + 79049b0 commit fecdc48

59 files changed

Lines changed: 3240 additions & 1489 deletions

Some content is hidden

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

.devcontainer/Dockerfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# renovate: datasource=github-tags depName=devbox packageName=jetify-com/devbox
2-
ARG DEVBOX_VERSION=0.16.0
2+
ARG DEVBOX_VERSION=0.17.0
33
FROM jetpackio/devbox:${DEVBOX_VERSION}
44

55
WORKDIR /code
@@ -9,7 +9,3 @@ COPY --chown=${DEVBOX_USER}:${DEVBOX_USER} devbox.lock devbox.lock
99

1010
# Install the Devbox environment
1111
RUN devbox install && nix-store --gc
12-
13-
# Configure the project's virtual env path to be outside the mounted workspace
14-
# to avoid conflicts with the host env.
15-
ENV UV_PROJECT_ENVIRONMENT=/code/.venv

.github/workflows/autofix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
env:
1111
# renovate: datasource=github-tags depName=devbox packageName=jetify-com/devbox
12-
DEVBOX_VERSION: "0.16.0"
12+
DEVBOX_VERSION: "0.17.0"
1313

1414
jobs:
1515
autofix:

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ env:
1919
PYTEST_ADDOPTS: ${{ github.event.inputs.pytest_addopts }}
2020
PYTHONIOENCODING: "UTF-8"
2121
# renovate: datasource=devbox depName=uv
22-
UV_VERSION: "0.9.26"
22+
UV_VERSION: "0.10.10"
2323
# renovate: datasource=github-tags depName=devbox packageName=jetify-com/devbox
24-
DEVBOX_VERSION: "0.16.0"
24+
DEVBOX_VERSION: "0.17.0"
2525

2626
jobs:
2727
build:

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
env:
99
# renovate: datasource=devbox depName=uv
10-
UV_VERSION: "0.9.26"
10+
UV_VERSION: "0.10.10"
1111

1212
jobs:
1313
build:
@@ -39,7 +39,7 @@ jobs:
3939
run: uv build
4040

4141
- name: Upload artifact containing distribution files
42-
uses: actions/upload-artifact@v6
42+
uses: actions/upload-artifact@v7
4343
with:
4444
name: dist
4545
path: dist/
@@ -58,7 +58,7 @@ jobs:
5858

5959
steps:
6060
- name: Download artifact containing distribution files
61-
uses: actions/download-artifact@v7
61+
uses: actions/download-artifact@v8
6262
with:
6363
name: dist
6464
path: dist/
@@ -82,7 +82,7 @@ jobs:
8282

8383
steps:
8484
- name: Download artifact containing distribution files
85-
uses: actions/download-artifact@v7
85+
uses: actions/download-artifact@v8
8686
with:
8787
name: dist
8888
path: dist/

.pre-commit-config.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,18 @@ repos:
6060
language: system
6161
types: [toml]
6262
require_serial: true
63+
64+
- id: rumdl
65+
name: rumdl
66+
entry: uv run rumdl check --fix
67+
language: system
68+
types: [markdown]
69+
require_serial: true
70+
exclude: |
71+
(?x)(
72+
# Those files have wrong syntax and would fail
73+
^tests/demo_invalid/copier\.yml$|
74+
^tests/demo_transclude_invalid(_multi)?/demo/copier\.yml$|
75+
# HACK https://github.com/prettier/prettier/issues/9430
76+
^tests/demo
77+
)

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Markdown is formatted by `rumdl`
2+
*.md

0 commit comments

Comments
 (0)