From 49752da6c4a73ee671e19e23835fbd6b6def138e Mon Sep 17 00:00:00 2001 From: Arvin Xu Date: Mon, 11 Mar 2024 17:42:07 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=90=9B=20fix:=20fix=20sitemap=20missi?= =?UTF-8?q?ng=20in=20docker=20building=20(#1533)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e85f11a18f54..ee6a279da1d4 100644 --- a/package.json +++ b/package.json @@ -27,9 +27,10 @@ "sideEffects": false, "scripts": { "build": "next build", - "postbuild": "next-sitemap --config next-sitemap.config.mjs", + "postbuild": "npm run build-sitemap", "build:analyze": "ANALYZE=true next build", - "build:docker": "DOCKER=true next build", + "build:docker": "DOCKER=true next build && npm run build-sitemap", + "build-sitemap": "next-sitemap --config next-sitemap.config.mjs", "dev": "next dev -p 3010", "docs": "lobe-i18n md && npm run workflow:docs", "i18n": "npm run workflow:i18n && lobe-i18n", From a4023b74f25de511278035c06da1d67e34fa54fd Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 11 Mar 2024 09:45:06 +0000 Subject: [PATCH 2/2] :bookmark: chore(release): v0.133.4 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### [Version 0.133.4](https://github.com/lobehub/lobe-chat/compare/v0.133.3...v0.133.4) Released on **2024-03-11** #### 🐛 Bug Fixes - **misc**: Fix sitemap missing in docker building.
Improvements and Fixes #### What's fixed * **misc**: Fix sitemap missing in docker building, closes [#1533](https://github.com/lobehub/lobe-chat/issues/1533) ([49752da](https://github.com/lobehub/lobe-chat/commit/49752da))
[![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
--- CHANGELOG.md | 25 +++++++++++++++++++++++++ package.json | 4 ++-- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd0825d39579..5c8c019dd5e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,31 @@ # Changelog +### [Version 0.133.4](https://github.com/lobehub/lobe-chat/compare/v0.133.3...v0.133.4) + +Released on **2024-03-11** + +#### 🐛 Bug Fixes + +- **misc**: Fix sitemap missing in docker building. + +
+ +
+Improvements and Fixes + +#### What's fixed + +- **misc**: Fix sitemap missing in docker building, closes [#1533](https://github.com/lobehub/lobe-chat/issues/1533) ([49752da](https://github.com/lobehub/lobe-chat/commit/49752da)) + +
+ +
+ +[![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top) + +
+ ### [Version 0.133.3](https://github.com/lobehub/lobe-chat/compare/v0.133.2...v0.133.3) Released on **2024-03-10** diff --git a/package.json b/package.json index ee6a279da1d4..8b99645a918c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lobehub/chat", - "version": "0.133.3", + "version": "0.133.4", "description": "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.", "keywords": [ "framework", @@ -28,9 +28,9 @@ "scripts": { "build": "next build", "postbuild": "npm run build-sitemap", + "build-sitemap": "next-sitemap --config next-sitemap.config.mjs", "build:analyze": "ANALYZE=true next build", "build:docker": "DOCKER=true next build && npm run build-sitemap", - "build-sitemap": "next-sitemap --config next-sitemap.config.mjs", "dev": "next dev -p 3010", "docs": "lobe-i18n md && npm run workflow:docs", "i18n": "npm run workflow:i18n && lobe-i18n",