summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2023-01-29 08:19:59 -0800
committerMatthew Miller <matthew@millerti.me>2023-01-29 08:19:59 -0800
commit2be3a84f882d0f8ffb442cad55d1be54e739f1db (patch)
tree3d4dc67e6280687c3fc7ad366665ba569e4324b6
parent569c2def2d9af3bc20c1aad2bb4f2de0959e017d (diff)
Update CHANGELOG to v7.0.1
-rw-r--r--CHANGELOG.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4d7106a..214764f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,19 @@
# Changelog
+## v7.0.1
+
+**Packages:**
+
+- @simplewebauthn/browser@7.0.1
+- @simplewebauthn/iso-webcrypto@7.0.1
+- @simplewebauthn/server@7.0.1
+
+**Changes:**
+
+- **[server]** Update dependencies for better deduping in projects using **@simplewebauthn/server** ([#341](https://github.com/MasterKale/SimpleWebAuthn/pull/341))
+- **[browser]** Version sync
+- **[iso-webcrypto]** Version sync
+
## v7.0.0 - The one that sets the library loose
The highlight of this release is the rearchitecture of **@simplewebauthn/server** to start allowing it to be used in more environments than Node. This was accomplished by refactoring the library completely away from Node's `Buffer` type and `crypto` package, and instead leveraging `Uint8Array` and the [WebCrypto Web API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API) for all cryptographic operations. This means that, hypothetically, this library can now also work in any non-Node environment that provides access to the WebCrypto API on the global `crypto` object.