Skip to content

Commit

Permalink
Merge branch 'rc-2024.10.2' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
jacderida committed Oct 7, 2024
2 parents 8c3baee + c865132 commit 412b998
Show file tree
Hide file tree
Showing 46 changed files with 1,185 additions and 382 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/memcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@ jobs:

- name: Set SAFE_PEERS
run: |
safe_peers=$(rg "Local node is listening .+ on \".+\"" $BOOTSTRAP_NODE_DATA_PATH -u | \
rg '/ip4.*$' -m1 -o | rg '"' -r '')
safe_peers=$(rg "Local node is listening .+ on .+" $BOOTSTRAP_NODE_DATA_PATH -u | \
rg '/ip4.*$' -m1 -o)
echo $safe_peers
echo "SAFE_PEERS=$safe_peers" >> $GITHUB_ENV
- name: Check SAFE_PEERS was set
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: release

on:
workflow_dispatch:
inputs:
chunk-size:
description: Specify the chunk size in bytes. If not used, the current default is 1048576.
type: number
required: false

# The key variables also need to be passed to `cross`, which runs in a container and does not
# inherit variables from the parent environment. The `cross` tool is used in the `build`
Expand Down Expand Up @@ -49,6 +54,12 @@ jobs:
- shell: bash
run: cargo binstall --no-confirm just

- name: Set chunk size if applicable
if: ${{ inputs.chunk-size != '' }}
shell: bash
run: |
echo "MAX_CHUNK_SIZE=${{ inputs.chunk-size }}" >> $GITHUB_ENV
- name: build release artifacts
shell: bash
run: |
Expand Down
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,31 @@ 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-10-07

### Network

#### Changed

- Increase chunk size to 4MB with node size remaining at 32GB
- Bootstrap peer parsing in CI was changed to accommodate new log format in libp2p

### Node Manager

#### Added

- The `add` command has new `--max-log-files` and `--max-archived-log-files` arguments to support capping node log output

#### Fixed

- The Discord username on the `--owner` argument will always be converted to lower case

#### Launchpad

### Added

- Increased logging related to app configuration. This could help solving issues on launchpad start up.

## 2024-10-03

### Launchpad
Expand Down
Loading

0 comments on commit 412b998

Please sign in to comment.