diff options
author | Pawel Zelawski <pawel.zelawski@outlook.com> | 2025-04-10 19:30:13 +0200 |
---|---|---|
committer | Pawel Zelawski <pawel.zelawski@outlook.com> | 2025-04-10 19:30:13 +0200 |
commit | e5a32e3002dfd5c17c847013cd27092f96ac2fba (patch) | |
tree | 590c1a3dde73b237235f4aac12bbc81047f849a8 | |
parent | 8978768890b945d36d78eedb0019d877ca327dca (diff) |
chore: prepare release 1.0.1v1.0.1
- Bump version from 1.0.0 to 1.0.1 in package.json.
- Add CHANGELOG.md to document changes.
- Update package-lock.json reflecting the version bump.
-rw-r--r-- | CHANGELOG.md | 26 | ||||
-rw-r--r-- | package.json | 2 |
2 files changed, 27 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d0ce403 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,26 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [1.0.1] - YYYY-MM-DD +### Security +- Fixed multiple security vulnerabilities by overriding transitive dependencies: + - `elliptic` updated to `^6.6.1` to address CVE related to malformed input signature. + - `lodash` updated to `^4.17.21` to address CVE related to Prototype Pollution. + +## [1.0.0] - YYYY-MM-DD +### Added +- Initial release of `digiid-ts`. +- Core functionality for generating Digi-ID URIs (`generateDigiIDUri`). +- Core functionality for verifying Digi-ID callbacks (`verifyDigiIDCallback`). +- Comprehensive TypeScript types. +- Unit tests. +- Usage examples. + +[Unreleased]: https://github.com/pawelzelawski/digiid-ts/compare/v1.0.1...HEAD +[1.0.1]: https://github.com/pawelzelawski/digiid-ts/compare/v1.0.0...v1.0.1 +[1.0.0]: https://github.com/pawelzelawski/digiid-ts/releases/tag/v1.0.0
\ No newline at end of file diff --git a/package.json b/package.json index 8468c97..f03da9d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "digiid-ts", - "version": "1.0.0", + "version": "1.0.1", "description": "A modern TypeScript implementation of the DigiID authentication protocol.", "main": "dist/digiid-ts.umd.js", "module": "dist/digiid-ts.es.js", |