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

chore(deps-dev): bump vitest from 2.1.6 to 2.1.9 #1

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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 .cz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ name = "cz_conventional_commits"
tag_format = "$version"
update_changelog_on_bump = true
version_scheme = "semver"
version = "0.10.0"
version = "0.11.0"
version_files = ["packages/pic/package.json"]
172 changes: 17 additions & 155 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,186 +3,48 @@
### Feat

- update dependencies

## 0.10.0 (2024-11-27)

### Feat

- add support for mocking https outcalls

## 0.10.0-b0 (2024-10-07)

### Feat

- upgrade to server v6
- upgrade pic server to v5

## 0.9.0 (2024-07-01)

## 0.9.0-b0 (2024-05-06)

### Feat

- upgrade to pic server v4

## 0.8.1 (2024-04-27)

## 0.8.1-b0 (2024-04-27)

### Fix

- pipe unwanted logs to /dev/null

## 0.8.0 (2024-04-27)

## 0.8.0-b1 (2024-04-22)

### Feat

- add http2 support

## 0.8.0-b0 (2024-04-21)

### Feat

- add logging support
- separate pic server management from instance management

## 0.7.0 (2024-03-17)

## 0.7.0-b0 (2024-03-17)

### Feat

- enable direct canister calls

## 0.6.1 (2024-03-15)

## 0.6.1-b1 (2024-03-15)

### Fix

- get pub key endpoint params encoded incorrectly
- unable to start picjs server on macos
- build docs only when release_latest is successful
- move docs build and deployment to release workflow

## 0.6.1-b0 (2024-03-07)

### Fix

- removed fetchRootKey in favor of getPubKey, which accepts a subnet Id

## 0.6.0 (2024-03-03)

### Feat

- add support for nns subnet init

## 0.5.0 (2024-02-24)

### Feat

- update agent-js and pocket-ic dependencies

## 0.4.0 (2024-02-19)

### Feat

- add canister stop and start methods

## 0.3.0 (2024-02-12)

## 0.3.0-b4 (2024-02-12)

### Fix

- canister settings encoding

## 0.3.0-b3 (2024-02-12)

### Fix

- propogate sender principal correctly when setting up canister

## 0.3.0-b2 (2024-02-12)

## 0.3.0-b1 (2024-02-12)

### Feat

- add update canister settings method
- upgrade to pocket-ic v3
- upgrade to pic server 2.0.1

## 0.3.0-b0 (2024-01-28)

### Feat

- accept ArrayBufferLike instead of Uint8Array to be more compatible with agent-js & co libraries
- throw a more helpful error is devs interact with a pic instance after tearing it down
- add ability to tick multiple times
- update versions of @dfinity dependencies
- add functions to get and set stable memory
- add canister code management functions
- add deterministic and random identity generation functions
- add method to set identity on actor
- include pic binary in package using postinstall script
- initial commit

### Fix

- pipe unwanted logs to /dev/null
- get pub key endpoint params encoded incorrectly
- unable to start picjs server on macos
- build docs only when release_latest is successful
- move docs build and deployment to release workflow
- removed fetchRootKey in favor of getPubKey, which accepts a subnet Id
- canister settings encoding
- propogate sender principal correctly when setting up canister
- updated dependencies on dfinity packages
- updated dependencies on dfinity packages

### Refactor

- use auto-generated idl for management canister

## 0.2.1 (2024-01-21)

## 0.2.1-b2 (2024-01-11)

### Feat

- update versions of @dfinity dependencies

## 0.2.1-b1 (2024-01-07)

### Fix

- update file permission for pocket-ic executable in case package manager has moved it

## 0.2.1-b0 (2023-12-14)

### Fix

- client refuses to start on MacOS ARM chips that are also running NodeJS on ARM architecture

## 0.2.0 (2023-11-06)

## 0.2.0-b3 (2023-11-06)

### Fix

- set processing time header on set_stable_memory header
- get stable memory function returning incorrect type

## 0.2.0-b2 (2023-11-03)

### Feat

- add functions to get and set stable memory

## 0.2.0-b1 (2023-11-02)

### Feat

- add canister code management functions

## 0.2.0-b0 (2023-11-02)

### Feat

- add deterministic and random identity generation functions
- add method to set identity on actor

## 0.1.0 (2023-11-02)

### Feat
### Refactor

- include pic binary in package using postinstall script
- initial commit
- use auto-generated idl for management canister
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
"vitest": "^2.1.9"
},
"overrides": {
"webpack-dev-middleware@<=5.3.3": ">=5.3.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/pic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ but `@hadronous/pic` can be used with JavaScript and any other testing runner, s
- The [Todo](https://github.com/hadronous/pic-js/tree/main/examples/todo/README.md) example demonstrates how to work with more complex canisters, identities, canister upgrades, and stable memory management.
- The [Multicanister](https://github.com/hadronous/pic-js/tree/main/examples/multicanister/README.md) example demonstrates how to work with multiple canisters and multiple subnets.
- The [NNS Proxy](https://github.com/hadronous/pic-js/tree/main/examples/nns_proxy/README.md) example demonstrates how to work with an NNS state directory.
- [Google Search](./google_search/README.md) example demonstrates how to mock HTTPS Outcalls.
- [Google Search](https://github.com/hadronous/pic-js/tree/main/examples/google_search/README.md) example demonstrates how to mock HTTPS Outcalls.
2 changes: 1 addition & 1 deletion packages/pic/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hadronous/pic",
"description": "An Internet Computer Protocol canister testing library for TypeScript and JavaScript.",
"version": "0.10.0",
"version": "0.11.0",
"author": "Hadronous Labs",
"license": "Apache-2.0",
"repository": "github:hadronous/pic-js",
Expand Down
Loading
Loading