Skip to content

Commit

Permalink
Merge branch 'main' into data_refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
dirvine authored Dec 24, 2024
2 parents f874335 + 4e671d7 commit 8d54824
Show file tree
Hide file tree
Showing 33 changed files with 231 additions and 825 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@7f0a61df502599e1f1f50880aaa7ec1e2c0592f2
- uses: wagoid/commitlint-github-action@0184f5a228ee06430bb9e67d65f73a1a6767496a

checks:
if: "!startsWith(github.event.head_commit.message, 'chore(release):')"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ jobs:
- name: create release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.VERSION_BUMP_COMMIT_PAT }}
GITHUB_TOKEN: ${{ secrets.AUTONOMI_PAT }}
with:
tag_name: ${{ env.RELEASE_PREFIX }}-${{ env.PACKAGE_VERSION }}
release_name: ${{ env.PACKAGE_VERSION }}
Expand All @@ -226,7 +226,7 @@ jobs:

- name: upload artifacts as assets
env:
GITHUB_TOKEN: ${{ secrets.VERSION_BUMP_COMMIT_PAT }}
GITHUB_TOKEN: ${{ secrets.AUTONOMI_PAT }}
shell: bash
run: |
(
Expand All @@ -250,7 +250,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: "0"
token: ${{ secrets.VERSION_BUMP_COMMIT_PAT }}
token: ${{ secrets.AUTONOMI_PAT }}
- uses: dtolnay/rust-toolchain@stable

# Required for the creation of tags
Expand All @@ -269,7 +269,7 @@ jobs:
cargo login "${{ secrets.CRATES_IO_TOKEN }}"
# The use of 'awk' suppresses the annoying instrumentation output that makes the log
# difficult to read.
release-plz release --git-token ${{ secrets.VERSION_BUMP_COMMIT_PAT }} | \
release-plz release --git-token ${{ secrets.AUTONOMI_PAT }} | \
awk '{ if (!/^\s*in release with input/ && !/^\s{4}/) print }'
- name: post notification to slack on failure
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

*When editing this file, please respect a line length of 100.*

## 2024-12-21

### Network

#### Fixed

- Do not dial back when a new peer is detected. This resulted in a large number of open connections,
in turn causing increased CPU usage.

### Client

#### Changed

- Remove the 'dial error' output on the `file upload` command

## 2024-12-18

### General
Expand Down
Loading

0 comments on commit 8d54824

Please sign in to comment.