Skip to content
Open
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
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2013-2025 Ghost Foundation
Copyright (c) 2013-2023 Ghost Foundation
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check current state of LICENSE file
echo "=== Current LICENSE file ==="
cat LICENSE

# Check git history for LICENSE file
echo -e "\n=== Recent commits affecting LICENSE ==="
git log --oneline -10 -- LICENSE

# Show the diff for LICENSE in the current state
echo -e "\n=== Git diff for LICENSE (last commit) ==="
git diff HEAD~1 HEAD -- LICENSE 2>/dev/null || echo "No previous commit available"

# Show full git status
echo -e "\n=== Git status ==="
git status LICENSE 2>/dev/null || echo "File not staged"

# Check if there are unstaged changes
echo -e "\n=== All changes to LICENSE ==="
git diff -- LICENSE 2>/dev/null || echo "No unstaged changes"

Repository: TryGhost/Dawn

Length of output: 1416


🏁 Script executed:

#!/bin/bash
# Get more detailed git history
echo "=== Git log with patches for LICENSE ==="
git log --oneline --all -20 -- LICENSE

echo -e "\n=== Show the Production commit details ==="
git show aa719640:LICENSE | head -5

echo -e "\n=== Check parent commit ==="
git show aa719640~1:LICENSE 2>/dev/null | head -5 || echo "No parent commit"

echo -e "\n=== Full diff of aa719640 ==="
git show aa719640 -- LICENSE 2>/dev/null | head -30 || echo "Cannot show diff"

echo -e "\n=== All branches and commits ==="
git log --all --oneline -30 -- LICENSE

Repository: TryGhost/Dawn

Length of output: 1714


🏁 Script executed:

#!/bin/bash
# Check what's in the 2025 commit
echo "=== LICENSE in 2025 commit (45c962e8) ==="
git show 45c962e8:LICENSE 2>/dev/null | grep "Copyright" || echo "File not found in that commit"

# Check what's in the 2023 commit
echo -e "\n=== LICENSE in 2023 commit (6ca74e4b) ==="
git show 6ca74e4b:LICENSE 2>/dev/null | grep "Copyright" || echo "File not found in that commit"

# Compare the two
echo -e "\n=== Diff between 2025 and Production commits ==="
git diff 45c962e8 aa719640 -- LICENSE 2>/dev/null | grep -A2 -B2 "Copyright" || echo "No diff"

# Show the full diff in a more readable way
echo -e "\n=== Full diff 45c962e8 vs aa719640 ==="
git show 45c962e8:LICENSE 2>/dev/null > /tmp/license_2025.txt
git show aa719640:LICENSE 2>/dev/null > /tmp/license_prod.txt
echo "Differences:"
diff /tmp/license_2025.txt /tmp/license_prod.txt || true

Repository: TryGhost/Dawn

Length of output: 599


License copyright year regression: 2025 changed to 2023.

The LICENSE file's copyright year is being reverted from 2025 to 2023, which moves backwards despite the current date being January 2026. This represents outdated legal metadata that should reflect the current or most recent copyright year.

Update the copyright year to 2025 to maintain current legal accuracy.

🤖 Prompt for AI Agents
In `@LICENSE` at line 3, Replace the outdated copyright year in the LICENSE by
updating the line that currently reads "Copyright (c) 2013-2023 Ghost
Foundation" to reflect the current range "Copyright (c) 2013-2025 Ghost
Foundation" so the legal metadata is accurate for 2025.


Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ This repo is synced automatically with [TryGhost/Themes](https://github.com/TryG

# Copyright & License

Copyright (c) 2013-2025 Ghost Foundation - Released under the [MIT license](LICENSE).
Copyright (c) 2013-2023 Ghost Foundation - Released under the [MIT license](LICENSE).
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check recent changes to README.md copyright year
echo "=== Recent README.md changes involving copyright ==="
git log --oneline --all -- README.md | head -20

echo -e "\n=== Detailed history of copyright line changes ==="
git log -p --all -S "2013-" -- README.md | head -150

echo -e "\n=== Current README.md line 38 ==="
sed -n '38p' README.md

echo -e "\n=== Branch comparison: main vs prod ==="
echo "Commits in prod but not in main:"
git log --oneline prod..main 2>/dev/null | head -20

echo "Commits in main but not in prod:"
git log --oneline main..prod 2>/dev/null | head -20

echo -e "\n=== Show current HEAD and branches ==="
git branch -v
git log --oneline -5

Repository: TryGhost/Dawn

Length of output: 755


🏁 Script executed:

#!/bin/bash
echo "=== Commit 45c962e8 (2025) ==="
git show 45c962e8:README.md | sed -n '35,45p'

echo -e "\n=== Commit 6ca74e4b (2023) ==="
git show 6ca74e4b:README.md | sed -n '35,45p'

echo -e "\n=== Current HEAD (aa719640 Production) ==="
git show aa719640:README.md | sed -n '35,45p'

echo -e "\n=== Main branch version ==="
git show main:README.md | sed -n '35,45p'

echo -e "\n=== Detailed commit info ==="
git log --format=fuller 45c962e8 -1
echo "---"
git log --format=fuller 6ca74e4b -1

Repository: TryGhost/Dawn

Length of output: 1192


Critical: Copyright year moved backwards from 2025 to 2023.

The copyright end year is being changed from 2025 to 2023. Git history confirms that commit 45c962e8 (January 6, 2025) updated it to 2025, but the current change reverts it to 2023. Since the main branch retains the 2025 copyright while the Production branch shows 2023, this indicates:

  • The code is reverting a recent update from the main branch
  • Production and main have diverged with main being ahead on this change
  • Current date is January 2026, making 2025 the expected current year for the copyright

Verify whether this backward change is intentional and whether the merge direction is correct.

🤖 Prompt for AI Agents
In `@README.md` at line 38, The README copyright line was reverted from 2025 back
to 2023; locate the exact line string "Copyright (c) 2013-2023 Ghost Foundation
- Released under the [MIT license](LICENSE)." in README.md and either restore it
to the version on main ("Copyright (c) 2013-2025 ...") or, if the change was
intentional, add a changelog/PR note explaining why the year was rolled back and
confirm the merge direction; also verify git history (commit 45c962e8) and
ensure the branch merge is corrected so main's 2025 value is retained unless
explicitly approved to change.

1 change: 0 additions & 1 deletion assets/built/main.min.js

This file was deleted.

1 change: 0 additions & 1 deletion assets/built/main.min.js.map

This file was deleted.

1 change: 0 additions & 1 deletion assets/built/screen.css

This file was deleted.

1 change: 0 additions & 1 deletion assets/built/screen.css.map

This file was deleted.

67 changes: 0 additions & 67 deletions assets/css/blog/author.css

This file was deleted.

3 changes: 0 additions & 3 deletions assets/css/blog/comment.css

This file was deleted.

30 changes: 0 additions & 30 deletions assets/css/blog/featured.css

This file was deleted.

91 changes: 0 additions & 91 deletions assets/css/blog/feed.css

This file was deleted.

18 changes: 0 additions & 18 deletions assets/css/blog/navigation.css

This file was deleted.

5 changes: 0 additions & 5 deletions assets/css/blog/pagination.css

This file was deleted.

10 changes: 0 additions & 10 deletions assets/css/blog/related.css

This file was deleted.

62 changes: 0 additions & 62 deletions assets/css/blog/share.css

This file was deleted.

Loading