Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: changing github token for creating release #903

Merged
merged 1 commit into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading