Skip to content

Commit 22dadd1

Browse files
authored
ref(changelog): Duplicate changelog into workspace package (#10818)
1 parent aa4c323 commit 22dadd1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+3888
-30
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
.babelrc.js
2+
apps/changelog

app/changelog/feed.xml/route.ts

+2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,14 @@ export async function GET() {
2020
allChangelogs.map(changelog => {
2121
return feed.item({
2222
title: changelog.title,
23+
// @ts-expect-error TODO(lforst): This is broken for some reason
2324
description: changelog.summary,
2425
url: `https://sentry.io/changelog/${changelog.slug}`,
2526
categories:
2627
changelog.categories.map(category => {
2728
return category.name;
2829
}) || [],
30+
// @ts-expect-error TODO(lforst): This is broken for some reason
2931
date: changelog.publishedAt,
3032
});
3133
});

apps/changelog/.env.example

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# rename this file to .env and supply the values listed below
2+
# also make sure they are available to the build tool (e.g. Vercel/Netlify)
3+
# warning: variables prefixed with NEXT_PUBLIC_ will be made available to client-side code
4+
# be careful not to expose sensitive data
5+
6+
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/changelog
7+
NEXTAUTH_URL=http://localhost:3000
8+
NEXTAUTH_SECRET=secret

apps/changelog/.gitignore

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
12+
13+
# testing
14+
/coverage
15+
16+
# next.js
17+
/.next/
18+
/out/
19+
20+
# production
21+
/build
22+
23+
# misc
24+
.DS_Store
25+
*.pem
26+
27+
# debug
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
32+
# vercel
33+
.vercel
34+
35+
# typescript
36+
*.tsbuildinfo
37+
next-env.d.ts
38+
39+
# dotenv environment variables file
40+
.env
41+
.env.development

apps/changelog/README.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/create-next-app).
2+
3+
## Getting Started
4+
5+
First, run the development server:
6+
7+
```bash
8+
npm run dev
9+
# or
10+
yarn dev
11+
# or
12+
pnpm dev
13+
# or
14+
bun dev
15+
```
16+
17+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
18+
19+
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
20+
21+
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
22+
23+
## Learn More
24+
25+
To learn more about Next.js, take a look at the following resources:
26+
27+
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
28+
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
29+
30+
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
31+
32+
## Deploy on Vercel
33+
34+
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
35+
36+
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.

apps/changelog/docker-compose.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: '3.7'
2+
services:
3+
postgres:
4+
container_name: changelog_postgres
5+
image: postgres:latest
6+
restart: always
7+
environment:
8+
- POSTGRES_USER=postgres
9+
- POSTGRES_PASSWORD=postgres
10+
- POSTGRES_DB=postgres
11+
ports:
12+
- '5432:5432'
13+
volumes:
14+
- postgres_data:/var/lib/postgresql/data/
15+
volumes:
16+
postgres_data:

apps/changelog/next.config.mjs

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import {withSentryConfig} from '@sentry/nextjs';
2+
3+
const nextConfig = {
4+
trailingSlash: true,
5+
eslint: {
6+
ignoreDuringBuilds: true,
7+
},
8+
transpilePackages: ['next-mdx-remote'],
9+
};
10+
11+
export default withSentryConfig(nextConfig);

apps/changelog/package.json

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"name": "sentry-changelog",
3+
"version": "1.0.0",
4+
"description": "The Sentry changelog application",
5+
"main": "index.js",
6+
"repository": "https://github.com/getsentry/sentry-docs",
7+
"author": "getsentry",
8+
"license": "FSL-1.1-Apache-2.0",
9+
"private": true,
10+
"scripts": {
11+
"dev": "next dev",
12+
"build": "next build",
13+
"start": "next start",
14+
"lint": "next lint",
15+
"migrate:dev": "dotenv -e .env.development -- yarn prisma migrate reset"
16+
},
17+
"dependencies": {
18+
"rehype-prism-plus": "^1.6.3",
19+
"rehype-slug": "^6.0.0",
20+
"@auth/prisma-adapter": "^1.2.0",
21+
"nextjs-toploader": "^1.6.6",
22+
"prism-sentry": "^1.0.2",
23+
"@radix-ui/react-icons": "^1.3.0",
24+
"@radix-ui/react-toolbar": "^1.0.4",
25+
"@radix-ui/themes": "^2.0.3",
26+
"@sentry/nextjs": "^8.8.0",
27+
"@google-cloud/storage": "^7.7.0",
28+
"@prisma/client": "^5.8.1",
29+
"next": "^14.2.5",
30+
"next-auth": "^4.24.5",
31+
"next-mdx-remote": "^4.4.1",
32+
"react": "18.3.1",
33+
"react-dom": "18.3.1",
34+
"react-select": "^5.7.3",
35+
"sass": "^1.69.5",
36+
"react-textarea-autosize": "^8.5.3",
37+
"rss": "^1.2.2",
38+
"textarea-markdown-editor": "^1.0.4"
39+
},
40+
"devDependencies": {
41+
"autoprefixer": "^10.4.17",
42+
"@types/node": "^20",
43+
"@types/react": "^18",
44+
"@types/react-dom": "^18.3.0",
45+
"prisma": "^5.8.1",
46+
"@types/rss": "^0.0.32",
47+
"eslint": "^8",
48+
"eslint-config-next": "^14.2.5",
49+
"postcss": "^8.4.33",
50+
"@tailwindcss/forms": "^0.5.7",
51+
"tailwindcss": "^3.4.1",
52+
"@tailwindcss/typography": "^0.5.10",
53+
"typescript": "^5"
54+
},
55+
"volta": {
56+
"extends": "../../package.json"
57+
}
58+
}

apps/changelog/postcss.config.mjs

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/** @type {import('postcss-load-config').Config} */
2+
const config = {
3+
plugins: {
4+
"postcss-import": {},
5+
"tailwindcss/nesting": {},
6+
tailwindcss: {},
7+
autoprefixer: {},
8+
},
9+
};
10+
11+
export default config;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
-- CreateTable
2+
CREATE TABLE "Account" (
3+
"id" TEXT NOT NULL,
4+
"userId" TEXT NOT NULL,
5+
"type" TEXT NOT NULL,
6+
"provider" TEXT NOT NULL,
7+
"providerAccountId" TEXT NOT NULL,
8+
"refresh_token" TEXT,
9+
"access_token" TEXT,
10+
"expires_at" INTEGER,
11+
"token_type" TEXT,
12+
"scope" TEXT,
13+
"id_token" TEXT,
14+
"session_state" TEXT,
15+
16+
CONSTRAINT "Account_pkey" PRIMARY KEY ("id")
17+
);
18+
19+
-- CreateTable
20+
CREATE TABLE "Session" (
21+
"id" TEXT NOT NULL,
22+
"sessionToken" TEXT NOT NULL,
23+
"userId" TEXT NOT NULL,
24+
"expires" TIMESTAMP(3) NOT NULL,
25+
26+
CONSTRAINT "Session_pkey" PRIMARY KEY ("id")
27+
);
28+
29+
-- CreateTable
30+
CREATE TABLE "User" (
31+
"id" TEXT NOT NULL,
32+
"name" TEXT,
33+
"email" TEXT,
34+
"emailVerified" TIMESTAMP(3),
35+
"image" TEXT,
36+
"admin" BOOLEAN NOT NULL DEFAULT false,
37+
38+
CONSTRAINT "User_pkey" PRIMARY KEY ("id")
39+
);
40+
41+
-- CreateTable
42+
CREATE TABLE "VerificationToken" (
43+
"identifier" TEXT NOT NULL,
44+
"token" TEXT NOT NULL,
45+
"expires" TIMESTAMP(3) NOT NULL
46+
);
47+
48+
-- CreateTable
49+
CREATE TABLE "Changelog" (
50+
"id" TEXT NOT NULL,
51+
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
52+
"publishedAt" TIMESTAMP(3) DEFAULT CURRENT_TIMESTAMP,
53+
"updatedAt" TIMESTAMP(3) NOT NULL,
54+
"title" VARCHAR(255) NOT NULL,
55+
"slug" VARCHAR(255) NOT NULL,
56+
"image" TEXT,
57+
"content" TEXT,
58+
"summary" TEXT,
59+
"published" BOOLEAN NOT NULL DEFAULT false,
60+
"deleted" BOOLEAN NOT NULL DEFAULT false,
61+
"authorId" TEXT,
62+
63+
CONSTRAINT "Changelog_pkey" PRIMARY KEY ("id")
64+
);
65+
66+
-- CreateTable
67+
CREATE TABLE "Category" (
68+
"id" TEXT NOT NULL,
69+
"name" VARCHAR(255) NOT NULL,
70+
"deleted" BOOLEAN NOT NULL DEFAULT false,
71+
72+
CONSTRAINT "Category_pkey" PRIMARY KEY ("id")
73+
);
74+
75+
-- CreateTable
76+
CREATE TABLE "_CategoryToChangelog" (
77+
"A" TEXT NOT NULL,
78+
"B" TEXT NOT NULL
79+
);
80+
81+
-- CreateIndex
82+
CREATE UNIQUE INDEX "Account_provider_providerAccountId_key" ON "Account"("provider", "providerAccountId");
83+
84+
-- CreateIndex
85+
CREATE UNIQUE INDEX "Session_sessionToken_key" ON "Session"("sessionToken");
86+
87+
-- CreateIndex
88+
CREATE UNIQUE INDEX "User_email_key" ON "User"("email");
89+
90+
-- CreateIndex
91+
CREATE UNIQUE INDEX "VerificationToken_token_key" ON "VerificationToken"("token");
92+
93+
-- CreateIndex
94+
CREATE UNIQUE INDEX "VerificationToken_identifier_token_key" ON "VerificationToken"("identifier", "token");
95+
96+
-- CreateIndex
97+
CREATE UNIQUE INDEX "Changelog_slug_key" ON "Changelog"("slug");
98+
99+
-- CreateIndex
100+
CREATE UNIQUE INDEX "Category_name_key" ON "Category"("name");
101+
102+
-- CreateIndex
103+
CREATE UNIQUE INDEX "_CategoryToChangelog_AB_unique" ON "_CategoryToChangelog"("A", "B");
104+
105+
-- CreateIndex
106+
CREATE INDEX "_CategoryToChangelog_B_index" ON "_CategoryToChangelog"("B");
107+
108+
-- AddForeignKey
109+
ALTER TABLE "Account" ADD CONSTRAINT "Account_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE;
110+
111+
-- AddForeignKey
112+
ALTER TABLE "Session" ADD CONSTRAINT "Session_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE;
113+
114+
-- AddForeignKey
115+
ALTER TABLE "Changelog" ADD CONSTRAINT "Changelog_authorId_fkey" FOREIGN KEY ("authorId") REFERENCES "User"("id") ON DELETE SET NULL ON UPDATE CASCADE;
116+
117+
-- AddForeignKey
118+
ALTER TABLE "_CategoryToChangelog" ADD CONSTRAINT "_CategoryToChangelog_A_fkey" FOREIGN KEY ("A") REFERENCES "Category"("id") ON DELETE CASCADE ON UPDATE CASCADE;
119+
120+
-- AddForeignKey
121+
ALTER TABLE "_CategoryToChangelog" ADD CONSTRAINT "_CategoryToChangelog_B_fkey" FOREIGN KEY ("B") REFERENCES "Changelog"("id") ON DELETE CASCADE ON UPDATE CASCADE;

0 commit comments

Comments
 (0)