update packages

This commit is contained in:
Niccolo Borgioli 2023-11-01 15:26:20 +01:00
parent a2803a13da
commit a9c646c981
No known key found for this signature in database
GPG Key ID: D93C615F75EE4F0B
8 changed files with 714 additions and 755 deletions

2
.nvmrc
View File

@ -1 +1 @@
v18.17.1
v20.9.0

View File

@ -5,6 +5,13 @@ 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).
## [2.4.0] - 2023-11-01
### Changed
- Removed HTML sanitation, display the original message as string
- Links are now displayed under the note in a separate section
## [2.3.1] - 2023-06-23
### Added

View File

@ -1,5 +1,5 @@
{
"packageManager": "pnpm@8.6.3",
"packageManager": "pnpm@8.10.1",
"scripts": {
"dev:docker": "docker-compose -f docker-compose.dev.yaml up redis",
"dev:packages": "pnpm --parallel run dev",
@ -13,8 +13,8 @@
"build": "pnpm run --recursive --filter=!@cryptgeon/backend build"
},
"devDependencies": {
"@playwright/test": "^1.33.0",
"@types/node": "^20.1.3",
"@playwright/test": "^1.39.0",
"@types/node": "^20.8.10",
"npm-run-all": "^4.1.5",
"shelljs": "^0.8.5"
}

File diff suppressed because it is too large Load Diff

View File

@ -1,9 +1,9 @@
[package]
name = "cryptgeon"
version = "2.3.3"
version = "2.4.0"
authors = ["cupcakearmy <hi@nicco.io>"]
edition = "2021"
rust-version = "1.71"
rust-version = "1.73"
[[bin]]
name = "cryptgeon"

View File

@ -1,5 +1,5 @@
{
"version": "2.3.3",
"version": "2.4.0",
"name": "cryptgeon",
"repository": {
"type": "git",
@ -26,18 +26,18 @@
"dist"
],
"devDependencies": {
"@commander-js/extra-typings": "^11.0.0",
"@commander-js/extra-typings": "^11.1.0",
"@cryptgeon/shared": "workspace:*",
"@types/inquirer": "^9.0.3",
"@types/mime": "^3.0.1",
"@types/node": "^20.5.0",
"commander": "^11.0.0",
"esbuild": "^0.19.2",
"inquirer": "^9.2.10",
"@types/inquirer": "^9.0.6",
"@types/mime": "^3.0.3",
"@types/node": "^20.8.10",
"commander": "^11.1.0",
"esbuild": "^0.19.5",
"inquirer": "^9.2.11",
"mime": "^3.0.0",
"occulto": "^2.0.1",
"pkg": "^5.8.1",
"pretty-bytes": "^6.1.1",
"typescript": "^5.1.6"
"typescript": "^5.2.2"
}
}

View File

@ -14,7 +14,7 @@
"build": "tsc"
},
"devDependencies": {
"typescript": "^5.1.6"
"typescript": "^5.2.2"
},
"dependencies": {
"occulto": "^2.0.1"

File diff suppressed because it is too large Load Diff