mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-22 14:59:29 -07:00
chore: release 5.0.0
This commit is contained in:
parent
3e155b4206
commit
0b130bcada
3 changed files with 11 additions and 10 deletions
|
@ -6,18 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
## [5.0.0-rc.1] - 2024-06-16
|
## [5.0.0] - 2024-08-12
|
||||||
### Added
|
### Added
|
||||||
- SystemD service file
|
- SystemD service file
|
||||||
- Nix flake for development
|
- Nix flake for development
|
||||||
### Changed
|
### Changed
|
||||||
- Switch from yarn to npm
|
- Switch from yarn to npm
|
||||||
- Update doipjs to 2.0.0-rc.1
|
- Update doipjs to 2.0.0
|
||||||
### Fixed
|
### Fixed
|
||||||
- Escape URL parameters
|
- Escape URL parameters
|
||||||
- CI config
|
- CI config
|
||||||
### Notes
|
### Notes
|
||||||
- This release is a major version release as the package manager has been switched from yarn to npm.
|
- This release is a major version release as the package manager has been switched from yarn to npm.
|
||||||
|
- Version 2.0.0 of doipjs also switched from yarn to npm, as well as added support for Discord and pronouns.cc claim verification.
|
||||||
|
|
||||||
## [4.2.7] - 2024-02-01
|
## [4.2.7] - 2024-02-01
|
||||||
### Added
|
### Added
|
||||||
|
|
12
package-lock.json
generated
12
package-lock.json
generated
|
@ -1,19 +1,19 @@
|
||||||
{
|
{
|
||||||
"name": "keyoxide-web",
|
"name": "keyoxide-web",
|
||||||
"version": "5.0.0-rc.1",
|
"version": "5.0.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "keyoxide-web",
|
"name": "keyoxide-web",
|
||||||
"version": "5.0.0-rc.1",
|
"version": "5.0.0",
|
||||||
"license": "AGPL-3.0-or-later",
|
"license": "AGPL-3.0-or-later",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ajv": "^8.6.3",
|
"ajv": "^8.6.3",
|
||||||
"bent": "^7.3.12",
|
"bent": "^7.3.12",
|
||||||
"body-parser": "^1.19.0",
|
"body-parser": "^1.19.0",
|
||||||
"colorjs.io": "^0.4.5",
|
"colorjs.io": "^0.4.5",
|
||||||
"doipjs": "^2.0.0-rc.1",
|
"doipjs": "^2.0.0",
|
||||||
"dotenv": "^16.0.3",
|
"dotenv": "^16.0.3",
|
||||||
"express": "^4.17.1",
|
"express": "^4.17.1",
|
||||||
"express-http-context2": "^1.0.0",
|
"express-http-context2": "^1.0.0",
|
||||||
|
@ -3063,9 +3063,9 @@
|
||||||
"integrity": "sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ=="
|
"integrity": "sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ=="
|
||||||
},
|
},
|
||||||
"node_modules/doipjs": {
|
"node_modules/doipjs": {
|
||||||
"version": "2.0.0-rc.1",
|
"version": "2.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/doipjs/-/doipjs-2.0.0-rc.1.tgz",
|
"resolved": "https://registry.npmjs.org/doipjs/-/doipjs-2.0.0.tgz",
|
||||||
"integrity": "sha512-K1hazc1pmmFLGtBUyKL3QjLpa6rMIaTupAMj2dTh0HRE8MpWfJwY2t6JJCe9KohMn8UR4rri7xVu8k19DvUbPw==",
|
"integrity": "sha512-KmRR8F4K0O1GRpPfuOFitLcrxRXBmZbvEGwwdSyVU0fyKLgsx3SvBWuweLsE6SiEs5EzNbu8x27dblp+LoFWGg==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@openpgp/hkp-client": "^0.0.3",
|
"@openpgp/hkp-client": "^0.0.3",
|
||||||
"@openpgp/wkd-client": "^0.0.4",
|
"@openpgp/wkd-client": "^0.0.4",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "keyoxide-web",
|
"name": "keyoxide-web",
|
||||||
"version": "5.0.0-rc.1",
|
"version": "5.0.0",
|
||||||
"description": "Verifying online identity with cryptography",
|
"description": "Verifying online identity with cryptography",
|
||||||
"main": "./src/index.js",
|
"main": "./src/index.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
@ -9,7 +9,7 @@
|
||||||
"bent": "^7.3.12",
|
"bent": "^7.3.12",
|
||||||
"body-parser": "^1.19.0",
|
"body-parser": "^1.19.0",
|
||||||
"colorjs.io": "^0.4.5",
|
"colorjs.io": "^0.4.5",
|
||||||
"doipjs": "^2.0.0-rc.1",
|
"doipjs": "^2.0.0",
|
||||||
"dotenv": "^16.0.3",
|
"dotenv": "^16.0.3",
|
||||||
"express": "^4.17.1",
|
"express": "^4.17.1",
|
||||||
"express-http-context2": "^1.0.0",
|
"express-http-context2": "^1.0.0",
|
||||||
|
|
Loading…
Reference in a new issue