Skip to content

Tweek POC - self-hosted release notes #6992

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
init test release note page
  • Loading branch information
forstisabella committed Aug 26, 2024
commit 7b3ecfe9e6904c68ff3ad15a6aecf09d4dbd8015
15 changes: 15 additions & 0 deletions src/_data/release-notes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## This manually-generated file powers segment.com/docs/release-notes.

notes:
- title: Segment Extensions General Availability
slug: "segment-extensions-ga"
description: "Segment Extensions, including dbt and Git Sync, is generally available. Extensions provides third-party integrations that add an automated experience with your existing tools, like dbt labs for syncing models or Git repositories for managing versioning for Segment Workspace changes. dbt Extension is available to all tiers, while Git Sync is available for Team and Business plans. For more information, see Segment's Extensions documentation."
date: "2024-08-16"
plans:
free: true
team: true
business: true
release-stage:
ga: true
product-areas:
segment-app: true
16 changes: 16 additions & 0 deletions src/release-notes/test.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: Release Notes Test
hide_toc: true
---

{% assign notes = site.data.release-notes.notes %}
{% for note in notes %}
<article class="release-note">
<h2 id="{{note.slug }}">{{ note.title }}</h2>
<div class="release-note__body">
<main>
<p>{{ note.description }}</p>
</main>
</div>
</article>
{% endfor %}