Skip to content

Commit

Permalink
Merge branch 'master' into LANG-294-management-did
Browse files Browse the repository at this point in the history
  • Loading branch information
kentosugama authored Sep 11, 2023
2 parents bf67d37 + 5cdedd3 commit d856f83
Show file tree
Hide file tree
Showing 5 changed files with 125 additions and 121 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/update-replica-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ jobs:
git config committer.name "GitHub Actions Bot"
git config user.email "${{ github.event.sender.id }}+${{ github.event.sender.login }}@users.noreply.github.com"
git config user.name "${{ github.event.sender.login }}"
git checkout -b chore-update-replica-${{ env.REPLICA_VERSION }}
git checkout -b chore-update-replica-${{ env.REPLICA_VERSION }}-${{ github.event.inputs.sdkBranch }}
git add .
git commit -m "chore: update replica version to ${{ env.REPLICA_VERSION }}"
git push origin chore-update-replica-${{ env.REPLICA_VERSION }}
git push origin chore-update-replica-${{ env.REPLICA_VERSION }}-${{ github.event.inputs.sdkBranch }}
- name: create Pull Request, with CHANGELOG.md entry suggestion
uses: actions/github-script@v6
Expand Down Expand Up @@ -113,10 +113,10 @@ jobs:
title: `chore: update replica version to ${new_replica_sha__short}`,
owner,
repo,
head: 'chore-update-replica-${{ env.REPLICA_VERSION }}',
head: 'chore-update-replica-${{ env.REPLICA_VERSION }}-${{ github.event.inputs.sdkBranch }}',
base: '${{ github.event.inputs.sdkBranch }}',
body: [
`## Suggested [CHANGELOG.md](https://github.com/${owner}/${repo}/edit/chore-update-replica-${{ env.REPLICA_VERSION }}/CHANGELOG.md) changes`,
`## Suggested [CHANGELOG.md](https://github.com/${owner}/${repo}/edit/chore-update-replica-${{ env.REPLICA_VERSION }}-${{ github.event.inputs.sdkBranch }}/CHANGELOG.md) changes`,
'```',
'## Dependencies',
'',
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@

This will automatically produce the idl in the `.dfx` folder.

### feat: Updated handling of missing values in state tree certificates

The `Unknown` lookup of a path in a certificate results in an `AgentError` (the IC returns `Absent` for non-existing paths).

### fix: dfx deploy urls printed for asset canisters

### chore: --emulator parameter is deprecated and will be discontinued soon
Expand Down Expand Up @@ -173,9 +177,12 @@ Updated Motoko to [0.9.7](https://github.com/dfinity/motoko/releases/tag/0.9.7)

### Replica

Updated replica to elected commit 3bcccef07408921fe849c92dd2437adc157ef9c3.
Updated replica to elected commit cabe2ae3ca115b1a3f24d75814d4f8e317b2964d.
This incorporates the following executed proposals:

- [124331](https://dashboard.internetcomputer.org/proposal/124331)
- [124330](https://dashboard.internetcomputer.org/proposal/124330)
- [124272](https://dashboard.internetcomputer.org/proposal/124272)
- [124021](https://dashboard.internetcomputer.org/proposal/124021)
- [123977](https://dashboard.internetcomputer.org/proposal/123977)
- [123976](https://dashboard.internetcomputer.org/proposal/123976)
Expand Down
Loading

0 comments on commit d856f83

Please sign in to comment.