Skip to content

Commit

Permalink
Update to SEAL 4.1.2 (#152)
Browse files Browse the repository at this point in the history
* updating deps

* update submodules

* remove morfix-io

* readme

* update readme

* fix haste
  • Loading branch information
s0l0ist authored May 23, 2024
1 parent 67ad688 commit be71f87
Show file tree
Hide file tree
Showing 78 changed files with 1,127 additions and 1,991 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
Expand All @@ -35,7 +35,7 @@ jobs:
run: |
npm install
- name: Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v5
with:
# Automatically inject basePath in your Next.js configuration file and disable
# server side image optimization (https://nextjs.org/docs/api-reference/next/image#unoptimized).
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Custom Build with Node
run: npm run docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
path: ./docs

Expand All @@ -59,4 +59,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4
14 changes: 14 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
See [Microsoft's Change log](https://github.com/microsoft/SEAL/blob/master/CHANGES.md)
for more details on each SEAL version change.

## Version 5.1.4

Feat:

- Updated to SEAL 4.1.2

Chore:

- Updated all dev dependencies
- Removed mentions of morfix-io in URL links as it doesn't exist anymore
- Updated import ordering in all source files (no functional changes)
- Moved .eslintrc.js to .eslint.config.js
- Updated github workflow deps

## Version 5.1.3

Chore:
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors:
given-names: "Nick"
orcid: "https://orcid.org/0000-0001-7423-158X"
title: "node-seal, a Homomorphic Encryption library for TypeScript or JavaScript using Microsoft SEAL"
version: 5.1.3
version: 5.1.4
doi: 10.5281/zenodo.1234
date-released: 2022-03-19
url: "https://github.com/s0l0ist/node-seal"
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The repository contains a few submodules:
To begin development, first clone the repository and related submodules

```shell
git clone --recursive https://github.com/morfix-io/node-seal.git
git clone --recursive https://github.com/s0l0ist/node-seal.git

cd node-seal

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ node-seal is a homomorphic encryption library for TypeScript or JavaScript.
close to the C++ calls from Microsoft SEAL.
- **Node.js, Browser:** Install once, work in any server/client configuration.

**Now supporting Microsoft SEAL 4.1.1**
**Now supporting Microsoft SEAL 4.1.2**

## Installation

Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ module.exports = {
},

// An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader
// modulePathIgnorePatterns: [],
modulePathIgnorePatterns: ['<rootDir>/dist/package.json'],

// Activates notifications for test results
// notify: false,
Expand Down
Loading

0 comments on commit be71f87

Please sign in to comment.