Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 38 additions & 43 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,51 +89,46 @@ jobs:
fi

# Format PRs for release notes
{
echo "formatted_prs<<EOF"
while IFS='|' read -r number title body labels; do
echo "### PR #$number: $title"
echo "Labels: $labels"
echo ""
echo "$body"
echo ""
done < prs.txt
echo "EOF"
} >> $GITHUB_OUTPUT

# Format commits by type - use %s (subject) where conventional types live
# Wrap in block to redirect all output to GITHUB_OUTPUT
{
echo "formatted_commits<<EOF"
echo "### Breaking Changes"
if [ "$latest_tag" = "0.0.0" ]; then
git log --pretty=format:"- %s" | grep -E "^- (feat!|BREAKING CHANGE)" || echo "None"
else
git log $latest_tag..HEAD --pretty=format:"- %s" | grep -E "^- (feat!|BREAKING CHANGE)" || echo "None"
fi
echo "formatted_prs<<EOF" >> $GITHUB_OUTPUT
while IFS='|' read -r number title body labels; do
echo "### PR #$number: $title"
echo "Labels: $labels"
echo ""
echo "### Features"
if [ "$latest_tag" = "0.0.0" ]; then
git log --pretty=format:"- %s" | grep -E "^- feat[^!]" || echo "None"
else
git log $latest_tag..HEAD --pretty=format:"- %s" | grep -E "^- feat[^!]" || echo "None"
fi
echo "$body"
echo ""
echo "### Fixes"
if [ "$latest_tag" = "0.0.0" ]; then
git log --pretty=format:"- %s" | grep -E "^- fix" || echo "None"
else
git log $latest_tag..HEAD --pretty=format:"- %s" | grep -E "^- fix" || echo "None"
fi
echo ""
echo "### Other Changes"
if [ "$latest_tag" = "0.0.0" ]; then
git log --pretty=format:"- %s" | grep -E "^- (chore|docs|style|refactor|perf|test|ci|build|revert)" || echo "None"
else
git log $latest_tag..HEAD --pretty=format:"- %s" | grep -E "^- (chore|docs|style|refactor|perf|test|ci|build|revert)" || echo "None"
fi
echo "EOF"
} >> $GITHUB_OUTPUT
done < prs.txt
echo "EOF" >> $GITHUB_OUTPUT

# Format commits by type - use full commit messages for display
echo "formatted_commits<<EOF" >> $GITHUB_OUTPUT
echo "### Breaking Changes"
if [ "$latest_tag" = "0.0.0" ]; then
git log --pretty=format:"%B" | grep -E "^(feat!|BREAKING CHANGE)" || echo "None"
else
git log $latest_tag..HEAD --pretty=format:"%B" | grep -E "^(feat!|BREAKING CHANGE)" || echo "None"
fi
echo ""
echo "### Features"
if [ "$latest_tag" = "0.0.0" ]; then
git log --pretty=format:"%B" | grep -E "^(feat|\[minor\])" || echo "None"
else
git log $latest_tag..HEAD --pretty=format:"%B" | grep -E "^(feat|\[minor\])" || echo "None"
fi
echo ""
echo "### Fixes"
if [ "$latest_tag" = "0.0.0" ]; then
git log --pretty=format:"%B" | grep -E "^(fix)" || echo "None"
else
git log $latest_tag..HEAD --pretty=format:"%B" | grep -E "^(fix)" || echo "None"
fi
echo ""
echo "### Other Changes"
if [ "$latest_tag" = "0.0.0" ]; then
git log --pretty=format:"%B" | grep -E "^(chore|docs|style|refactor|perf|test|ci|build|revert)" || echo "None"
else
git log $latest_tag..HEAD --pretty=format:"%B" | grep -E "^(chore|docs|style|refactor|perf|test|ci|build|revert)" || echo "None"
fi
echo "EOF" >> $GITHUB_OUTPUT

- name: Generate new version
id: new_version
Expand Down
39 changes: 0 additions & 39 deletions __tests__/calculateCorrectedTotalBalance.test.ts

This file was deleted.

3 changes: 1 addition & 2 deletions app/api/aggregator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ export const fetchRate = async ({
currency,
providerId,
network,
signal,
}: RatePayload): Promise<RateResponse> => {
const startTime = Date.now();

Expand All @@ -72,7 +71,7 @@ export const fetchRate = async ({
params.network = network;
}

const response = await axios.get(endpoint, { params, signal });
const response = await axios.get(endpoint, { params });
const { data } = response;

// Track successful response
Expand Down
183 changes: 0 additions & 183 deletions app/api/v1/wallets/deprecate/route.ts

This file was deleted.

Loading