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

Release 0.9.0 #129

Merged
merged 9 commits into from
Dec 7, 2022
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
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['12.x']
node: ['16.x']
os: [ubuntu-latest]

steps:
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['12.x']
node: ['16.x']
os: [ubuntu-latest]
example:
[
Expand Down
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [0.9.0](https://github.com/nucypher/nucypher-ts/compare/v0.7.9-alpha.26...v0.9.0) (2022-12-07)


### ⚠ BREAKING CHANGES

* bump node to >=16

### Features

* update nucypher-core to 0.4.0-alpha.0 ([3b85b20](https://github.com/nucypher/nucypher-ts/commit/3b85b203f0c317e28c2479ae943e33e89d8745b4))


### Bug Fixes

* escaping porter url ([08b1b03](https://github.com/nucypher/nucypher-ts/commit/08b1b031babd040d6c1c3cf1993990687e1f8b0e))
* force dependency resolution for nucypher-core ([4201b14](https://github.com/nucypher/nucypher-ts/commit/4201b14532a237deaa6a69dcf8e1510a2ded75d0))


* bump node to >=16 ([4b7994d](https://github.com/nucypher/nucypher-ts/commit/4b7994d28eca6af3e1710d3ea3b0e174bd2f1256))

### [0.9.0-alpha.0](https://github.com/nucypher/nucypher-ts/compare/v0.8.1...v0.8.2) (2022-11-14)

### [0.8.2](https://github.com/nucypher/nucypher-ts/compare/v0.8.1...v0.8.2) (2022-10-03)
Expand Down
2 changes: 1 addition & 1 deletion examples/api-example.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { toBytes } from '../src/utils';
import { fromBytes, mockAlice, mockBob, mockRemoteBob } from '../test/utils';

/**
* This is an abridged version of API usage example.
* This is an abridged version of PRE API usage example.
* Please refer to ../test/acceptance/alice-grants.test.ts for the full example.
*/

Expand Down
2 changes: 1 addition & 1 deletion examples/react-craco/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"@craco/craco": "^6.4.3",
"@nucypher/nucypher-ts": "^0.7.0",
"@nucypher/nucypher-ts": "0.9.0-alpha.1",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no longer alpha i think

"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
Expand Down
2 changes: 1 addition & 1 deletion examples/react-craco/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function App() {
};

const config = {
// Public Porter endpoint on Ibex network
// Public Porter endpoint on Tapir network
porterUri: 'https://porter-tapir.nucypher.community',
};

Expand Down
5,228 changes: 2,752 additions & 2,476 deletions examples/react-craco/yarn.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion examples/react-webpack-5-experiments/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
"build": "tsc --noEmit && rimraf build && webpack --mode production --progress"
},
"dependencies": {
"ethers": "^5.4.1",
"file-loader": "^6.2.0",
"@nucypher/nucypher-ts": "^0.7.0",
"@nucypher/nucypher-ts": "0.9.0-alpha.1",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here

"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-router-dom": "^5.2.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/react-webpack-5-experiments/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function App() {
};

const config = {
// Public Porter endpoint on Ibex network
// Public Porter endpoint on Tapir network
porterUri: 'https://porter-tapir.nucypher.community',
}

Expand Down
Loading