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

Merge main into stable for signature support #30

Merged
merged 46 commits into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
634df52
chore: update deps
leonbotros Mar 16, 2023
4e776a6
0.3.0 rc.0 (#20)
leonbotros Apr 3, 2023
ce65e64
fix: make sure older versions derive the same KEM identities, add a t…
leonbotros Apr 4, 2023
a99135c
fix: remove unused imports
leonbotros Apr 4, 2023
043c52c
fix: update README.md
leonbotros Apr 5, 2023
1388a32
feat: simplify return type of unseal
leonbotros Apr 5, 2023
775b1be
feat: prerelease wasm package
leonbotros Apr 5, 2023
f2a886d
chore: add warning
leonbotros Apr 18, 2023
5c8681c
fix: use camelCase in exported SealOptions
leonbotros Apr 24, 2023
6971b4d
chore(deps): bump h2 from 0.3.16 to 0.3.18
dependabot[bot] Apr 25, 2023
89ad055
chore(deps): bump openssl from 0.10.46 to 0.10.52
dependabot[bot] Apr 25, 2023
9ca1a82
Merge pull request #23 from encryption4all/dependabot/cargo/openssl-0…
leonbotros Apr 25, 2023
ee259b9
Merge pull request #22 from encryption4all/dependabot/cargo/h2-0.3.18
leonbotros Apr 25, 2023
2ffd500
chore: update warning
leonbotros Apr 25, 2023
d2d3ed0
feat: add initial typescript declarations
leonbotros May 23, 2023
6f7c629
fix: correct the generated types
leonbotros May 30, 2023
f03abfe
feat: expose the verified public identity
leonbotros May 30, 2023
3acfa8d
fix: copy image for in documentation to pg-core
leonbotros May 31, 2023
51d0115
fix: wasm tests in the browser
leonbotros Jun 7, 2023
d502d2a
feat: update README.md
leonbotros Jun 7, 2023
c88f9fd
Merge pull request #24 from encryption4all/typescript
leonbotros Jun 7, 2023
7acf5d1
feat: release pg-wasm 0.3.0-rc4
leonbotros Jun 7, 2023
23aa5b1
chore(deps): bump openssl from 0.10.52 to 0.10.55
dependabot[bot] Jun 21, 2023
bf4d802
Merge pull request #25 from encryption4all/dependabot/cargo/openssl-0…
leonbotros Jun 29, 2023
8f2888c
chore: rename IRMA to Yivi in readme
leonbotros Jun 29, 2023
96a6b3c
feat: include counter and byte indicating last segment in segment sig…
leonbotros Jul 5, 2023
3099546
chore: update documentation
leonbotros Jul 11, 2023
61274ca
chore: update proc-macro2 to fix building docs
leonbotros Jul 11, 2023
b73a9b7
chore: bump dependencies
leonbotros Jul 11, 2023
2cf7ba2
chore: bump and release pg-core
leonbotros Jul 11, 2023
9a84ead
typo in readme
leonbotros Jul 11, 2023
7080505
chore: more fixes to documentation
leonbotros Jul 11, 2023
bdef894
chore: bump and release pg-core
leonbotros Jul 11, 2023
6fc96c9
feat: add retrieving multiple signing keys by POSTing subsets
leonbotros Sep 21, 2023
4b3ae6b
feat: pg-cli working with one qr code
leonbotros Sep 22, 2023
759f57d
fix: pg-cli now correctly retrieves two seperate signing keys
leonbotros Sep 22, 2023
5ea055c
chore(deps): bump aes-gcm from 0.10.2 to 0.10.3
dependabot[bot] Sep 22, 2023
53b6a2b
fix: remove url fix
leonbotros Sep 25, 2023
1fce6b9
feat: change sign keys endpoint for our needs
leonbotros Sep 26, 2023
bbcc2d8
feat: update pkg documentation
leonbotros Sep 26, 2023
c9fab8f
Merge pull request #27 from encryption4all/signing-key-attribute-subsets
leonbotros Sep 26, 2023
4841918
feat: bump ibs to 0.4.0
leonbotros Sep 26, 2023
14c7367
Merge pull request #28 from encryption4all/dependabot/cargo/aes-gcm-0…
leonbotros Sep 26, 2023
167a860
feat: release pg-core 0.3.0
leonbotros Sep 26, 2023
516f58a
feat: release pg-wasm 0.3.0
leonbotros Sep 26, 2023
8adefb6
chore: update README.md for pg-wasm
leonbotros Sep 26, 2023
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
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --manifest-path irmaseal-${{ matrix.workspace }}/Cargo.toml --all-features
- if: ${{ matrix.workspace == 'core' }}
run: cargo test --manifest-path pg-${{ matrix.workspace }}/Cargo.toml --features test,rust,stream
- if: ${{ matrix.workspace != 'core' }}
run: cargo test --manifest-path pg-${{ matrix.workspace }}/Cargo.toml --all-features

format:
name: Format workspace
Expand All @@ -29,7 +32,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt --manifest-path irmaseal-${{ matrix.workspace }}/Cargo.toml --all -- --check
- run: cargo fmt --manifest-path pg-${{ matrix.workspace }}/Cargo.toml --all -- --check

test-wasm-browsers:
name: Run wasm tests in browsers
Expand All @@ -40,7 +43,7 @@ jobs:
include:
- browser: safari
os: macos-latest
runs-on: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
WASM_BINDGEN_TEST_TIMEOUT: 120
steps:
Expand All @@ -50,4 +53,4 @@ jobs:

- if: ${{ matrix.browser == 'firefox' }}
run: sudo apt update && sudo apt install firefox
- run: wasm-pack test --release --headless --${{ matrix.browser }} ./irmaseal-wasm-bindings
- run: wasm-pack test --release --headless --${{ matrix.browser }} ./pg-wasm
Loading
Loading