Skip to content

Commit 30b588e

Browse files
authored
Merge pull request #2 from citusdata/upgrade/12.2.1
Update to upstream v12.2.1
2 parents 2fd18ef + 66594bb commit 30b588e

1,201 files changed

Lines changed: 98285 additions & 53763 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.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 19 deletions
This file was deleted.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Bug Report
2+
description: File a bug report to help us improve.
3+
labels: ["kind/triage"]
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: Problem Description
8+
value: |
9+
A clear and concise description of what the bug is.
10+
11+
#### Steps to reproduce the behavior:
12+
1.
13+
2.
14+
3.
15+
validations:
16+
required: true
17+
- type: textarea
18+
attributes:
19+
label: System Information
20+
description: Paste the output of "mitmproxy --version" here.
21+
render: raw
22+
- type: checkboxes
23+
attributes:
24+
label: 'Checklist'
25+
options:
26+
- label: This bug affects the [latest mitmproxy release](https://github.com/mitmproxy/mitmproxy/releases).
27+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Support
4-
url: https://stackoverflow.com/questions/tagged/mitmproxy
5-
about: Please do not use GitHub for support requests.
6-
If you have questions on how to use mitmproxy, please ask them on StackOverflow!
4+
url: https://github.com/mitmproxy/mitmproxy/discussions
5+
about: If you have questions on how to use mitmproxy, ask them on the discussions page!

.github/dependabot.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
groups:
8+
"github actions":
9+
patterns:
10+
- "*"
11+
- package-ecosystem: pip
12+
directory: "/"
13+
schedule:
14+
interval: "monthly"
15+
open-pull-requests-limit: 10
16+
groups:
17+
pytest:
18+
patterns:
19+
- "pytest*"
20+
- "hypothesis"
21+
pyinstaller:
22+
patterns:
23+
- "pyinstaller*"
24+
mypy:
25+
patterns:
26+
- "types-*"
27+
- "mypy"
28+
openssl:
29+
patterns:
30+
- "pyopenssl"
31+
- "cryptography"
32+
tox:
33+
patterns:
34+
- "tox*"
35+
deploy:
36+
patterns:
37+
- "awscli"
38+
- "twine"

.github/node-version.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
24

.github/workflows/autofix.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: autofix.ci
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
autofix:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: mhils/workflows/checkout@481eaf3cc2ad8eb664a4c9a20cc635d46e02b5c6
17+
- uses: mhils/workflows/setup-uv@481eaf3cc2ad8eb664a4c9a20cc635d46e02b5c6
18+
19+
# If we need to update the lockfile (--check returns an error),
20+
# make sure to upgrade everything.
21+
- run: uv lock --check || uv lock --upgrade
22+
23+
- uses: mhils/workflows/uv-sync@481eaf3cc2ad8eb664a4c9a20cc635d46e02b5c6
24+
25+
- run: ruff check --fix-only .
26+
- run: ruff format .
27+
28+
- run: web/gen/all
29+
30+
- uses: actions/setup-node@v6
31+
with:
32+
node-version-file: .github/node-version.txt
33+
- run: npm ci
34+
working-directory: web
35+
- run: npm run eslint
36+
working-directory: web
37+
continue-on-error: true
38+
- run: npm run prettier
39+
working-directory: web
40+
41+
- uses: mhils/add-pr-ref-in-changelog@main
42+
43+
- uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27

0 commit comments

Comments
 (0)