From 65da192c70bbb158289638259fe75c04f54ab545 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 18 Dec 2024 13:30:33 +0100 Subject: [PATCH] chore: release v0.9.0 --- CHANGELOG.md | 19 +++++++++++++++++++ package.json | 2 +- src/https.ts | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c414834..fdfd708 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,25 @@ # Changelog +## v0.8.1...main + +[compare changes](https://github.com/stacksjs/rpx/compare/v0.8.1...main) + +### 🩹 Fixes + +- Properly utilize cleanup ([2128973](https://github.com/stacksjs/rpx/commit/2128973)) + +### 🏡 Chore + +- Config changes ([51d56d2](https://github.com/stacksjs/rpx/commit/51d56d2)) +- Minor adjustments ([5d81278](https://github.com/stacksjs/rpx/commit/5d81278)) +- Update tlsx ([31581b8](https://github.com/stacksjs/rpx/commit/31581b8)) + +### ❤️ Contributors + +- Chris ([@chrisbbreuer](http://github.com/chrisbbreuer)) +- Cab-mikee ([@cab-mikee](http://github.com/cab-mikee)) + ## v0.8.0...main [compare changes](https://github.com/stacksjs/rpx/compare/v0.8.0...main) diff --git a/package.json b/package.json index 275f9b8..c002c62 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@stacksjs/rpx", "type": "module", - "version": "0.8.1", + "version": "0.9.0", "description": "A modern and smart reverse proxy.", "author": "Chris Breuer ", "license": "MIT", diff --git a/src/https.ts b/src/https.ts index 7e9b4bd..d301ff4 100644 --- a/src/https.ts +++ b/src/https.ts @@ -2,8 +2,8 @@ import type { ReverseProxyConfigs, ReverseProxyOption, ReverseProxyOptions, Sing import fs from 'node:fs/promises' import { homedir } from 'node:os' import { join } from 'node:path' -import { consola as log } from 'consola' import { addCertToSystemTrustStoreAndSaveCert, createRootCA, generateCertificate as generateCert } from '@stacksjs/tlsx' +import { consola as log } from 'consola' import { config } from './config' import { debugLog, getPrimaryDomain, isMultiProxyConfig, isMultiProxyOptions, isSingleProxyOptions, isValidRootCA, safeDeleteFile } from './utils'