Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ 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.8.10] - 2026-01-28
-Update AWS setup guide and CloudFormation template download instructions
- CloudFormation Template (private-video-setup.yaml)
- Fixed typo: ExposeHeaders → ExposedHeaders
- Removed redundant hardcoded localhost:3000 from CORS (the AppDomain parameter with localhost default already handles this)
- The StepHeader and CodeBlock components were moved outside the main component and now receive state/callbacks as props to prevent the components from being recreated on every render
- 1.Synced with dev - The dev branch already had the component refactoring (including InlineCode) done properly
- Applied URL fix - Changed the template URL from raw.githubusercontent.com to www.cheesebox.io
## [1.8.9] - 2026-01-28
### Added
- Add sorting functionality for video list and dashboard
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cheesebox",
"version": "1.8.9",
"version": "1.8.10",
"description": "Secure video sharing platform with HLS streaming and AWS S3 storage",
"author": "Cheesebox Contributors",
"license": "MIT",
Expand Down
3 changes: 1 addition & 2 deletions public/cloudformation/private-video-setup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,8 @@ Resources:
- HEAD
- PUT
AllowedOrigins:
- 'http://localhost:3000'
- !Ref AppDomain
ExposeHeaders:
ExposedHeaders:
- Content-Length
- Content-Range
- ETag
Expand Down
2 changes: 1 addition & 1 deletion src/app/help/aws-setup/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ export default function AWSSetupGuide() {

<div className="text-center">
<a
href={`https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://raw.githubusercontent.com/onamfc/cheesebox/main/public/cloudformation/private-video-setup.yaml&stackName=CheeseboxSetup`}
href="https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://www.cheesebox.io/cloudformation/private-video-setup.yaml&stackName=CheeseboxSetup"
target="_blank"
rel="noopener noreferrer"
className="inline-flex items-center gap-3 bg-gradient-to-r from-purple-500 to-pink-500 hover:from-purple-600 hover:to-pink-600 text-white font-bold py-4 px-8 rounded-lg shadow-xl transition-all transform hover:scale-105 text-lg"
Expand Down
Loading