Skip to content

Commit

Permalink
ci: changing github token for creating release (#903)
Browse files Browse the repository at this point in the history
  • Loading branch information
krpeacock authored Jul 16, 2024
1 parent eaedc19 commit c2af2f0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ jobs:
git config user.name "${{ github.event.sender.login }}"
- name: Create release Pull request & GitHub Release
env:
GITHUB_TOKEN: '${{ secrets.GIX_CREATE_PR_PAT }}'
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
run: npm run release ${{ inputs.semverBump }}
8 changes: 5 additions & 3 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@
### Changed

- ci: removing headless browser tests pending a rewrite
- ci: changing token for creating release

### Added

- test: adding test for backwards compatibility with actor for v1 agents
- feat!: deprecate `HttpAgent` constructor in favor of new `create` and `createSync` methods.
- `create` is async and returns a promise. It will sync time with the replica and fetch the root key if the host is not `https://icp-api.io`
- Replaces `source` option with a `from` and `fromSync` methods, similar to `Principal.from`


## [1.4.0] - 2024-06-17

Expand All @@ -34,9 +39,6 @@
- docs: adds instructions on how to run unit and e2e tests to the README
- chore: adds required `npm audit` check to PRs
- new `HttpAgent` option: `backoffStrategy` - allows you to set a custom delay strategy for retries. The default is a newly exported `exponentialBackoff`, but you can pass your own function to customize the delay between retries.
- feat!: deprecate `HttpAgent` constructor in favor of new `create` and `createSync` methods.
- `create` is async and returns a promise. It will sync time with the replica and fetch the root key if the host is not `https://icp-api.io`
- Replaces `source` option with a `from` and `fromSync` methods, similar to `Principal.from`

### Changed

Expand Down

0 comments on commit c2af2f0

Please sign in to comment.