Skip to content

Commit

Permalink
Merge branch 'dev' into chris/merge-master-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisSchinnerl committed Dec 4, 2024
2 parents 5c7e857 + 9742d26 commit 0a09249
Show file tree
Hide file tree
Showing 245 changed files with 13,618 additions and 14,843 deletions.
5 changes: 5 additions & 0 deletions .changeset/add_host_sectors_table.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: minor
---

# Add host_sectors table
5 changes: 5 additions & 0 deletions .changeset/automate_changelog_generation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: patch
---

# Automate changelog generation
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: patch
---

# Check for existing migration '00027_remove_directories' and skip both '00020_idx_db_directory' and '00020_remove_directories' if already applied.
5 changes: 5 additions & 0 deletions .changeset/fix_migration_00030_host_sectors.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: minor
---

# Fix 00030_host_sectors migration on DBs that have a host_sectors table
5 changes: 5 additions & 0 deletions .changeset/fix_testscoredhostsrandselectbyscore_ndf.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: patch
---

# Fix NDF in TestScoredHostsRandSelectByScore
9 changes: 9 additions & 0 deletions .changeset/move_autopilots_into_autopilot_state.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
default: major
---

# Move `autopilots` into `autopilot_state`

#1657 by @peterjan

This migrates the `autopilots` to a single `autopilot_state` table, effectively removing the concept of multiple autopilots.
5 changes: 5 additions & 0 deletions .changeset/move_hosts_allowredundantips_config.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: minor
---

# Move hosts allowRedundantIPs config
5 changes: 5 additions & 0 deletions .changeset/remove_contract_sets.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: major
---

# Remove contract sets
5 changes: 5 additions & 0 deletions .changeset/remove_current_period.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: minor
---

# Remove current period
5 changes: 5 additions & 0 deletions .changeset/remove_event_webhooks.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: major
---

# Remove event webhooks
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: minor
---

# Remove migrationSurchargeMultiplier from the gouging settings.
5 changes: 5 additions & 0 deletions .changeset/remove_partial_setting_updates.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: major
---

# Remove partial setting updates
5 changes: 5 additions & 0 deletions .changeset/track_contract_elements.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: patch
---

# Track accumulator state elements for file contracts in a new contract_elements table
22 changes: 5 additions & 17 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ body:
description: |
The configuration of your autopilot
```bash
curl -u ":[YOUR_PASSWORD]" http://localhost:9980/api/autopilot/config
curl -u ":[YOUR_PASSWORD]" http://localhost:9980/api/bus/autopilot
```
placeholder: Paste the output of the above command here ```
validations:
Expand All @@ -66,26 +66,14 @@ body:
description: |
The configuration of your bus
```bash
curl -u ":[YOUR_PASSWORD]" http://localhost:9980/api/bus/setting/contractset
curl -u ":[YOUR_PASSWORD]" http://localhost:9980/api/bus/setting/gouging
curl -u ":[YOUR_PASSWORD]" http://localhost:9980/api/bus/setting/redundancy
curl -u ":[YOUR_PASSWORD]" http://localhost:9980/api/bus/setting/uploadpacking
curl -u ":[YOUR_PASSWORD]" http://localhost:9980/api/bus/settings/gouging
curl -u ":[YOUR_PASSWORD]" http://localhost:9980/api/bus/settings/pinned
curl -u ":[YOUR_PASSWORD]" http://localhost:9980/api/bus/settings/s3
curl -u ":[YOUR_PASSWORD]" http://localhost:9980/api/bus/settings/uploads
```
placeholder: Paste the output of the above commands here
validations:
required: true
- type: input
id: csContracts
attributes:
label: Contract Set Contracts
description: |
The number of contracts in your contract set
```bash
curl -u ":[YOUR_PASSWORD]" "http://localhost:9980/api/bus/contracts?contractset=autopilot" | grep '"id"' | wc -l
```
placeholder: Paste the output of the above command here ```
validations:
required: true
- type: textarea
attributes:
label: Anything else?
Expand Down
26 changes: 26 additions & 0 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on:
push:
branches: [master]

permissions:
contents: write
pull-requests: write

name: Create Release PR
jobs:
prepare-release:
if: "!contains(github.event.head_commit.message, 'chore: prepare release')" # Skip merges from releases
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Configure Git
run: |
git config --global user.name github-actions[bot]
git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: knope-dev/action@407e9ef7c272d2dd53a4e71e39a7839e29933c48
- run: knope prepare-release --verbose
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true
Loading

0 comments on commit 0a09249

Please sign in to comment.