Skip to content

Commit

Permalink
Merge branch 'main' into import-token-beta-2024-09-06
Browse files Browse the repository at this point in the history
  • Loading branch information
mstrasinskis authored Sep 10, 2024
2 parents b7c8630 + 8c4bb3f commit ad450fe
Show file tree
Hide file tree
Showing 56 changed files with 420 additions and 485 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update-aggregator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Create Pull Request
id: cpr
# Note: If there were no changes, this step creates no PR.
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GIX_CREATE_PR_PAT }}
commit-message: Update aggregator
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-didc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
# If `dfx.json` was updated, create a PR.
- name: Create Pull Request
if: ${{ steps.update.outputs.updated == '1' }}
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GIX_CREATE_PR_PAT }}
base: main
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update-ic-cargo-deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
name: Update IC Cargo Dependencies
on:
schedule:
# Check for new IC releases every wednesday at 7:30.
- cron: '30 7 * * MON'
# Check for new IC releases every Sunday at 7:30am UTC.
- cron: '30 7 * * SUN'
workflow_dispatch:
jobs:
update-ic-cargo-deps:
Expand All @@ -23,7 +23,7 @@ jobs:
run: if git diff --quiet --exit-code; then echo "updated=0" >> "$GITHUB_OUTPUT"; else echo "updated=1" >> "$GITHUB_OUTPUT"; fi
- name: Create Pull Request
if: ${{ steps.update.outputs.updated == '1' }}
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GIX_CREATE_PR_PAT }}
base: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Create Pull Request
id: cpr
# Note: If there were no changes, this step creates no PR.
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GIX_CREATE_PR_PAT }}
commit-message: Bump
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-proposals.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Create Pull Request
id: cpr
# Note: If there were no changes, this step creates no PR.
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GIX_CREATE_PR_PAT }}
commit-message: Update proposals
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
# If the rust-toolchain was updated, create a PR.
- name: Create Pull Request
if: ${{ steps.update.outputs.updated == '1' }}
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GIX_CREATE_PR_PAT }}
base: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-sns-aggregator-response.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Create Pull Request
id: cpr
# Note: If there were no changes, this step creates no PR.
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GIX_CREATE_PR_PAT }}
commit-message: Update SNS aggregator response
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-snsdemo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
git diff
- name: Create Pull Request
if: ${{ steps.update.outputs.updated == '1' }}
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GIX_CREATE_PR_PAT }}
commit-message: Update snsdemo to ${{ steps.update.outputs.release }}
Expand Down
8 changes: 0 additions & 8 deletions CHANGELOG-Nns-Dapp-unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,10 @@ proposal is successful, the changes it released will be moved from this file to

#### Changed

* Staking project rows are not clickable when not signed in.
* Changes for cleaning up the stable structure migration.
* Upgrade agent-js to version 2.

#### Deprecated

#### Removed

* Rendering for `InstallCode`, `BlessReplicaVersion` and `RetireReplicaVersion` proposals.

#### Fixed

#### Security
Expand All @@ -39,8 +33,6 @@ proposal is successful, the changes it released will be moved from this file to

#### Changed

* Change the release process to submitting `InstallCode` proposals.

#### Deprecated

#### Removed
Expand Down
25 changes: 25 additions & 0 deletions CHANGELOG-Nns-Dapp.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,31 @@ The NNS Dapp is released through proposals in the Network Nervous System. Theref
Unreleased changes are added to `CHANGELOG-Nns-Dapp-unreleased.md` and moved
here after a successful release.

## Proposal 132374

### Application

#### Changed

* Staking project rows are not clickable when not signed in.
* Changes for cleaning up the stable structure migration.
* Upgrade agent-js to version 2.

#### Removed

* Rendering for `InstallCode`, `BlessReplicaVersion` and `RetireReplicaVersion` proposals.
* Message informing users of the System Canister Management topic split.

#### Fixed

* Enforce minimum stake when staking SNS tokens from the staking table.

### Operations

#### Changed

* Change the release process to submitting `InstallCode` proposals.

## Proposal 132133

### Application
Expand Down
Loading

0 comments on commit ad450fe

Please sign in to comment.