Skip to content

Commit 4436c60

Browse files
Merge pull request #207 from Chia-Network/develop
Release 1.2.0
2 parents f7e5517 + ac259a5 commit 4436c60

File tree

320 files changed

+13524
-34104
lines changed

Some content is hidden

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

320 files changed

+13524
-34104
lines changed

.babelrc

-7
This file was deleted.

.env

-2
This file was deleted.

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.config.js

.eslintrc.cjs

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
module.exports = {
2+
root: true,
3+
env: { browser: true, es2020: true },
4+
extends: [
5+
"eslint:recommended",
6+
"plugin:@typescript-eslint/recommended",
7+
"plugin:react-hooks/recommended",
8+
],
9+
ignorePatterns: ["dist", ".eslintrc.cjs"],
10+
parser: "@typescript-eslint/parser",
11+
plugins: ["react-refresh"],
12+
rules: {
13+
"react-refresh/only-export-components": [
14+
"warn",
15+
{ allowConstantExport: true },
16+
],
17+
// Disabling the rules related to enforcing types
18+
"@typescript-eslint/explicit-module-boundary-types": "off",
19+
"@typescript-eslint/no-explicit-any": "off",
20+
"@typescript-eslint/no-implicit-any-catch": "off",
21+
"@typescript-eslint/ban-ts-comment": "off",
22+
},
23+
};

.eslintrc.json

-30
This file was deleted.

.github/dependabot.yml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# This file is managed by the repo-content-updater project. Manual changes here will result in a PR to bring back
2+
# inline with the upstream template, unless you remove the dependabot managed file property from the repo
3+
4+
version: 2
5+
updates:
6+
- package-ecosystem: "gomod"
7+
directory: /
8+
schedule:
9+
interval: "weekly"
10+
day: "tuesday"
11+
open-pull-requests-limit: 10
12+
labels:
13+
- dependencies
14+
- go
15+
- "Changed"
16+
reviewers: ["cmmarslender", "starttoaster"]
17+
groups:
18+
global:
19+
patterns:
20+
- "*"
21+
22+
- package-ecosystem: "pip"
23+
directory: /
24+
schedule:
25+
interval: "weekly"
26+
day: "tuesday"
27+
open-pull-requests-limit: 10
28+
labels:
29+
- dependencies
30+
- python
31+
- "Changed"
32+
reviewers: ["emlowe", "altendky"]
33+
34+
- package-ecosystem: "github-actions"
35+
directory: /
36+
schedule:
37+
interval: "weekly"
38+
day: "tuesday"
39+
open-pull-requests-limit: 10
40+
labels:
41+
- dependencies
42+
- github_actions
43+
- "Changed"
44+
reviewers: ["cmmarslender", "Starttoaster", "pmaslana"]
45+
46+
- package-ecosystem: "npm"
47+
directory: /
48+
schedule:
49+
interval: "weekly"
50+
day: "tuesday"
51+
open-pull-requests-limit: 10
52+
labels:
53+
- dependencies
54+
- javascript
55+
- "Changed"
56+
reviewers: ["cmmarslender", "emlowe"]

.github/workflows/auto-release.yml

+8-7
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,27 @@ concurrency:
1111
group: main-release-check
1212

1313
jobs:
14-
tag-and-changelog:
15-
name: Create Changelog and tag release
14+
check-version:
15+
name: Check version increment
1616
runs-on: ubuntu-latest
1717
steps:
18-
- name: Clean Workspace
18+
- name: Clean workspace
1919
uses: Chia-Network/actions/clean-workspace@main
2020

2121
- name: Checkout current branch
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
with:
2424
# Need PACKAGE_ADMIN_PAT token so when the tag is created, the tag automation runs
2525
token: ${{ secrets.PACKAGE_ADMIN_PAT }}
2626
fetch-depth: 0
2727

28-
- name: Configure commit signing for ChiaAutomation
28+
- name: Setup commit signing for ChiaAutomation
2929
uses: Chia-Network/actions/commit-sign/gpg@main
3030
with:
3131
gpg_private_key: ${{ secrets.CHIA_AUTOMATION_PRIVATE_GPG_KEY }}
3232
passphrase: ${{ secrets.CHIA_AUTOMATION_PRIVATE_GPG_PASSPHRASE }}
3333

34-
- name: Check for current version tag. Create if it doesn't exist. Generate changelog
34+
- name: Check for current version tag. Create if it doesn't exist
3535
run: |
3636
version=$(cat $GITHUB_WORKSPACE/package.json | jq -r '.version')
3737
echo "Version is: $version"
@@ -44,7 +44,8 @@ jobs:
4444
npx conventional-changelog-cli -p angular -i CHANGELOG.md -s -r 0
4545
changes=$(npx conventional-changelog-cli -r 1 | tail -n +2)
4646
git add CHANGELOG.md
47-
git commit -m "chore: Updating changelog for $version"
47+
sed -i -e '/<s>/d' CHANGELOG.md
48+
git commit -m "Updating changelog for $version"
4849
git tag $version -m "Release $version $changes"
4950
git push origin $version
5051
git push origin main

0 commit comments

Comments
 (0)