From 7b3ecfe9e6904c68ff3ad15a6aecf09d4dbd8015 Mon Sep 17 00:00:00 2001 From: forstisabella <92472883+forstisabella@users.noreply.github.com> Date: Mon, 26 Aug 2024 14:32:10 -0400 Subject: [PATCH 01/10] init test release note page --- src/_data/release-notes.yml | 15 +++++++++++++++ src/release-notes/test.md | 16 ++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 src/_data/release-notes.yml create mode 100644 src/release-notes/test.md diff --git a/src/_data/release-notes.yml b/src/_data/release-notes.yml new file mode 100644 index 0000000000..8baf6f9873 --- /dev/null +++ b/src/_data/release-notes.yml @@ -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 \ No newline at end of file diff --git a/src/release-notes/test.md b/src/release-notes/test.md new file mode 100644 index 0000000000..99c8e45c19 --- /dev/null +++ b/src/release-notes/test.md @@ -0,0 +1,16 @@ +--- +title: Release Notes Test +hide_toc: true +--- + +{% assign notes = site.data.release-notes.notes %} +{% for note in notes %} +
+

{{ note.title }}

+
+
+

{{ note.description }}

+
+
+
+{% endfor %} From 96922419fa9f038cece5e60bd16d604aa9601a5c Mon Sep 17 00:00:00 2001 From: forstisabella <92472883+forstisabella@users.noreply.github.com> Date: Tue, 27 Aug 2024 15:16:04 -0400 Subject: [PATCH 02/10] WOOO LFG --- src/_data/release-notes.yml | 30 +++++++---- src/_sass/components/_badge.scss | 7 ++- src/_sass/components/_release-note-card.scss | 53 ++++++++++++++++++++ src/_sass/segment.scss | 1 + src/release-notes/test.md | 30 +++++++---- 5 files changed, 101 insertions(+), 20 deletions(-) create mode 100644 src/_sass/components/_release-note-card.scss diff --git a/src/_data/release-notes.yml b/src/_data/release-notes.yml index 8baf6f9873..9cf565700e 100644 --- a/src/_data/release-notes.yml +++ b/src/_data/release-notes.yml @@ -2,14 +2,24 @@ notes: - title: Segment Extensions General Availability - slug: "segment-extensions-ga" + 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 \ No newline at end of file + date: "August 16, 2024" + product-area: + - segment app + release-stage: ga + plan: + - free + - team + - business + - title: Linked Audiences and Data Graph General Availability + slug: segment-linked-and-data-graph-ga + description: "Segment's Linked Audiences and Data Graph are now Generally Available for Snowflake & Databricks. Linked Audiences empowers marketers to effortlessly create targeted audiences by combining behavioral data from the Segment Profile and warehouse entity data within a self-serve, no-code interface. This tool accelerates audience creation, enabling precise targeting, enhanced customer personalization, and optimized marketing spend without the need for constant data team support. The Data Graph acts as a semantic layer that allows businesses to define relationships between entity datasets in the warehouse — such as accounts, subscriptions, households, and products — with the Segment Profile. The Data Graph makes these relational datasets easily accessible to business teams for targeted and personalized customer engagements." + date: "August 23, 2024" + product-area: + - twilio engage + release-stage: ga + plan: + - unify + - team + - business \ No newline at end of file diff --git a/src/_sass/components/_badge.scss b/src/_sass/components/_badge.scss index db144da826..de6d2a9867 100644 --- a/src/_sass/components/_badge.scss +++ b/src/_sass/components/_badge.scss @@ -32,4 +32,9 @@ background-color: white; color: color(gray-800); } -} + + &--purple { + background-color: lighten(color(code-violet), 35%); + color: color(code-violet); + } +} \ No newline at end of file diff --git a/src/_sass/components/_release-note-card.scss b/src/_sass/components/_release-note-card.scss new file mode 100644 index 0000000000..b83523a35a --- /dev/null +++ b/src/_sass/components/_release-note-card.scss @@ -0,0 +1,53 @@ +.release-note-card { + color: color(gray-800); + + &--box { + $this: &; + + position: relative; + padding: 20px; + background-color: color(white); + border: 1px solid color(gray-400); + margin-top: 20px; + border-radius: 8px; + transition: 200ms ease; + +/* @include breakpoint(medium up) { + padding: 30px; + }*/ + + &:hover { + border: 1px solid color(gray-100); + border-color: color(gray-500); + text-decoration: none; + } + } + + &--note-header { + font-size: 24px; + font-weight: 600; + width: fit-content(40%); + text-wrap: balance; + color: color(gray-900) + } + + &--title { + padding: 5px; + } + + &--content { + width: 100%; + text-align: center; + + @include breakpoint(medium up) { + text-align: left; + } + } + + &--date { + display: inline-block; + font-size: 12px; + font-weight: 500; + color: color(gray-900); + } +} \ No newline at end of file diff --git a/src/_sass/segment.scss b/src/_sass/segment.scss index dbb464b4dc..1bff98a72b 100644 --- a/src/_sass/segment.scss +++ b/src/_sass/segment.scss @@ -96,6 +96,7 @@ @import "components/last-modified"; @import "components/thumbnail"; @import "components/release-note"; +@import "components/release-note-card"; @import "components/quickinfo"; @import "components/current-version"; @import "components/sample-form"; diff --git a/src/release-notes/test.md b/src/release-notes/test.md index 99c8e45c19..a232b2ef15 100644 --- a/src/release-notes/test.md +++ b/src/release-notes/test.md @@ -4,13 +4,25 @@ hide_toc: true --- {% assign notes = site.data.release-notes.notes %} -{% for note in notes %} -
-

{{ note.title }}

-
-
-

{{ note.description }}

-
-
+{% for note in notes reversed %} +
+
+ {{ note.title }} + {{ note.release-stage }} + {% assign plans = note.plan %} + {% for plan in plans %} + {{ plan }} + {% endfor %} + {% assign product-area = note.product-area %} + {% for item in product-area %} + {{ item }} + {% endfor %} +
+
+

{{ note.description }}

+ Released {{ note.date }} +
+
+
-{% endfor %} +{% endfor %} \ No newline at end of file From cc98dc4b2ed2e3a2fe965f8bc31b5fcb8bdae214 Mon Sep 17 00:00:00 2001 From: forstisabella <92472883+forstisabella@users.noreply.github.com> Date: Tue, 27 Aug 2024 17:11:24 -0400 Subject: [PATCH 03/10] more styling --- src/_data/release-notes.yml | 7 +++--- src/_sass/components/_release-note-card.scss | 11 ++++++--- src/release-notes/test.md | 26 +++++++++++--------- 3 files changed, 25 insertions(+), 19 deletions(-) diff --git a/src/_data/release-notes.yml b/src/_data/release-notes.yml index 9cf565700e..a4359cec5c 100644 --- a/src/_data/release-notes.yml +++ b/src/_data/release-notes.yml @@ -3,8 +3,8 @@ 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: "August 16, 2024" + 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](/docs/segment-app/extensions/)." + date: 08-16-2024 product-area: - segment app release-stage: ga @@ -12,10 +12,11 @@ notes: - free - team - business + read-more: "/docs/segment-app/extensions/" - title: Linked Audiences and Data Graph General Availability slug: segment-linked-and-data-graph-ga description: "Segment's Linked Audiences and Data Graph are now Generally Available for Snowflake & Databricks. Linked Audiences empowers marketers to effortlessly create targeted audiences by combining behavioral data from the Segment Profile and warehouse entity data within a self-serve, no-code interface. This tool accelerates audience creation, enabling precise targeting, enhanced customer personalization, and optimized marketing spend without the need for constant data team support. The Data Graph acts as a semantic layer that allows businesses to define relationships between entity datasets in the warehouse — such as accounts, subscriptions, households, and products — with the Segment Profile. The Data Graph makes these relational datasets easily accessible to business teams for targeted and personalized customer engagements." - date: "August 23, 2024" + date: 08-23-2024 product-area: - twilio engage release-stage: ga diff --git a/src/_sass/components/_release-note-card.scss b/src/_sass/components/_release-note-card.scss index b83523a35a..bc140b5671 100644 --- a/src/_sass/components/_release-note-card.scss +++ b/src/_sass/components/_release-note-card.scss @@ -28,16 +28,19 @@ font-weight: 600; width: fit-content(40%); text-wrap: balance; - color: color(gray-900) + color: color(gray-900); + margin-bottom: 20px; } - &--title { - padding: 5px; + &--badges { + padding-top: 10px; } &--content { width: 100%; - text-align: center; + text-align: right; + padding-top: 10px; + padding-bottom: 10px; @include breakpoint(medium up) { text-align: left; diff --git a/src/release-notes/test.md b/src/release-notes/test.md index a232b2ef15..12453852f4 100644 --- a/src/release-notes/test.md +++ b/src/release-notes/test.md @@ -7,20 +7,22 @@ hide_toc: true {% for note in notes reversed %}
- {{ note.title }} - {{ note.release-stage }} - {% assign plans = note.plan %} - {% for plan in plans %} - {{ plan }} - {% endfor %} - {% assign product-area = note.product-area %} - {% for item in product-area %} - {{ item }} - {% endfor %} + {{ note.title }}
+
+ {{ note.release-stage }} + {% assign plans = note.plan %} + {% for plan in plans %} + {{ plan }} + {% endfor %} + {% assign product-area = note.product-area %} + {% for item in product-area %} + {{ item }} + {% endfor %} +
-

{{ note.description }}

- Released {{ note.date }} +

{{ note.description | markdownify }}

+

Released {{ note.date }}

From 23f55f7595bfe1f38adb3b119171d88398481a8b Mon Sep 17 00:00:00 2001 From: forstisabella <92472883+forstisabella@users.noreply.github.com> Date: Thu, 29 Aug 2024 17:04:05 -0400 Subject: [PATCH 04/10] functional filter buttons!!!!!! --- src/_data/release-notes.yml | 21 ++++++--- src/_sass/components/_release-note-card.scss | 20 +++++++-- src/release-notes/test.md | 45 ++++++++++++++++---- 3 files changed, 69 insertions(+), 17 deletions(-) diff --git a/src/_data/release-notes.yml b/src/_data/release-notes.yml index a4359cec5c..38fca77262 100644 --- a/src/_data/release-notes.yml +++ b/src/_data/release-notes.yml @@ -2,9 +2,8 @@ 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](/docs/segment-app/extensions/)." - date: 08-16-2024 + date: August 16, 2024 product-area: - segment app release-stage: ga @@ -14,13 +13,25 @@ notes: - business read-more: "/docs/segment-app/extensions/" - title: Linked Audiences and Data Graph General Availability - slug: segment-linked-and-data-graph-ga description: "Segment's Linked Audiences and Data Graph are now Generally Available for Snowflake & Databricks. Linked Audiences empowers marketers to effortlessly create targeted audiences by combining behavioral data from the Segment Profile and warehouse entity data within a self-serve, no-code interface. This tool accelerates audience creation, enabling precise targeting, enhanced customer personalization, and optimized marketing spend without the need for constant data team support. The Data Graph acts as a semantic layer that allows businesses to define relationships between entity datasets in the warehouse — such as accounts, subscriptions, households, and products — with the Segment Profile. The Data Graph makes these relational datasets easily accessible to business teams for targeted and personalized customer engagements." - date: 08-23-2024 + date: August 23, 2024 product-area: - twilio engage release-stage: ga plan: - unify - team - - business \ No newline at end of file + - business + read-more: "/docs/engage/audiences/linked-audiences/" + - title: Delivery Overview for Storage Destinations is in Public Beta + description: "End-to-end observability is coming to Warehouse Destinations. For the first time, Delivery Overview gives you a comprehensive breakdown of how streaming source events convert to warehouse rows. For more information, see the Delivery Overview documentation." + date: August 12, 2024 + product-area: + - segment app + - storage + release-stage: beta + plan: + - free + - team + - business + read-more: "/docs/connections/delivery-overview/#storage-destinations" \ No newline at end of file diff --git a/src/_sass/components/_release-note-card.scss b/src/_sass/components/_release-note-card.scss index bc140b5671..07c4259e9a 100644 --- a/src/_sass/components/_release-note-card.scss +++ b/src/_sass/components/_release-note-card.scss @@ -5,7 +5,7 @@ $this: &; position: relative; - padding: 20px; + padding: 10px; background-color: color(white); border: 1px solid color(gray-400); margin-top: 20px; @@ -33,7 +33,7 @@ } &--badges { - padding-top: 10px; + padding: 2px; } &--content { @@ -51,6 +51,20 @@ display: inline-block; font-size: 12px; font-weight: 500; - color: color(gray-900); + color: color(gray-700); + } + + &--read-more { + position: absolute; + bottom: 20; + right: 20; + padding: 5px; + } + &--hidden { + visibility: hidden; + left: -999px; + width: 1px; + height: 1px; + overflow: hidden; } } \ No newline at end of file diff --git a/src/release-notes/test.md b/src/release-notes/test.md index 12453852f4..873abde000 100644 --- a/src/release-notes/test.md +++ b/src/release-notes/test.md @@ -3,28 +3,55 @@ title: Release Notes Test hide_toc: true --- + + + + {% assign notes = site.data.release-notes.notes %} -{% for note in notes reversed %} -
+{% for note in notes %} +
- {{ note.title }}
+ {{ note.title }}
- {{ note.release-stage }} + {{ note.release-stage }} {% assign plans = note.plan %} {% for plan in plans %} - {{ plan }} + {{ plan }} {% endfor %} {% assign product-area = note.product-area %} {% for item in product-area %} - {{ item }} + {{ item }} {% endfor %}

{{ note.description | markdownify }}

-

Released {{ note.date }}

+

Released {{ note.date }}

Read more
-
-{% endfor %} \ No newline at end of file + +{% endfor %} + + \ No newline at end of file From 208dd44b972d13762b5b6b355d28c5e65396888e Mon Sep 17 00:00:00 2001 From: forstisabella <92472883+forstisabella@users.noreply.github.com> Date: Thu, 29 Aug 2024 17:09:50 -0400 Subject: [PATCH 05/10] [netlify-build] --- src/release-notes/test.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/release-notes/test.md b/src/release-notes/test.md index 873abde000..c7a5cbec08 100644 --- a/src/release-notes/test.md +++ b/src/release-notes/test.md @@ -54,4 +54,4 @@ var pilot = "pilot" } }); } - \ No newline at end of file + From a2b058dc002436d6f6c63d51e87d62d235b5a004 Mon Sep 17 00:00:00 2001 From: forstisabella <92472883+forstisabella@users.noreply.github.com> Date: Thu, 29 Aug 2024 18:12:05 -0400 Subject: [PATCH 06/10] more styling [netlify-build] --- src/_sass/components/_button-link.scss | 4 ++++ src/_sass/components/_release-note-card.scss | 5 +++++ src/release-notes/test.md | 10 +++++++--- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/src/_sass/components/_button-link.scss b/src/_sass/components/_button-link.scss index fd9846b008..13669cf232 100644 --- a/src/_sass/components/_button-link.scss +++ b/src/_sass/components/_button-link.scss @@ -1,4 +1,8 @@ .button-link { padding: 0; font-size: 14px; + + &:hover { + border-color: color(gray-500); + } } diff --git a/src/_sass/components/_release-note-card.scss b/src/_sass/components/_release-note-card.scss index 07c4259e9a..ba44fb2934 100644 --- a/src/_sass/components/_release-note-card.scss +++ b/src/_sass/components/_release-note-card.scss @@ -60,6 +60,7 @@ right: 20; padding: 5px; } + &--hidden { visibility: hidden; left: -999px; @@ -67,4 +68,8 @@ height: 1px; overflow: hidden; } + + &--filter-button{ + display: inline-block; + } } \ No newline at end of file diff --git a/src/release-notes/test.md b/src/release-notes/test.md index c7a5cbec08..aac26fe43f 100644 --- a/src/release-notes/test.md +++ b/src/release-notes/test.md @@ -3,9 +3,13 @@ title: Release Notes Test hide_toc: true --- - - - +
+

Select one of the following buttons to see release notes in that release stage:

+ + + + +
{% assign notes = site.data.release-notes.notes %} {% for note in notes %} From 2ee5b7707866c92cfd0d633503b9a8372a5829fa Mon Sep 17 00:00:00 2001 From: forstisabella <92472883+forstisabella@users.noreply.github.com> Date: Thu, 29 Aug 2024 18:32:03 -0400 Subject: [PATCH 07/10] more fancy formatting [netlify-build] --- src/_data/release-notes.yml | 4 ++-- src/_sass/components/_release-note-card.scss | 4 +--- src/release-notes/test.md | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/_data/release-notes.yml b/src/_data/release-notes.yml index 38fca77262..16a1835944 100644 --- a/src/_data/release-notes.yml +++ b/src/_data/release-notes.yml @@ -13,7 +13,7 @@ notes: - business read-more: "/docs/segment-app/extensions/" - title: Linked Audiences and Data Graph General Availability - description: "Segment's Linked Audiences and Data Graph are now Generally Available for Snowflake & Databricks. Linked Audiences empowers marketers to effortlessly create targeted audiences by combining behavioral data from the Segment Profile and warehouse entity data within a self-serve, no-code interface. This tool accelerates audience creation, enabling precise targeting, enhanced customer personalization, and optimized marketing spend without the need for constant data team support. The Data Graph acts as a semantic layer that allows businesses to define relationships between entity datasets in the warehouse — such as accounts, subscriptions, households, and products — with the Segment Profile. The Data Graph makes these relational datasets easily accessible to business teams for targeted and personalized customer engagements." + description: "Segment's Linked Audiences and Data Graph are now Generally Available for Snowflake & Databricks.
[Linked Audiences](/docs/engage/audiences/linked-audiences/) empowers marketers to effortlessly create targeted audiences by combining behavioral data from the Segment Profile and warehouse entity data within a self-serve, no-code interface. This tool accelerates audience creation, enabling precise targeting, enhanced customer personalization, and optimized marketing spend without the need for constant data team support.
The [Data Graph](/docs/unify/data-graph/) acts as a semantic layer that allows businesses to define relationships between entity datasets in the warehouse — such as accounts, subscriptions, households, and products — with the Segment Profile. The Data Graph makes these relational datasets easily accessible to business teams for targeted and personalized customer engagements." date: August 23, 2024 product-area: - twilio engage @@ -24,7 +24,7 @@ notes: - business read-more: "/docs/engage/audiences/linked-audiences/" - title: Delivery Overview for Storage Destinations is in Public Beta - description: "End-to-end observability is coming to Warehouse Destinations. For the first time, Delivery Overview gives you a comprehensive breakdown of how streaming source events convert to warehouse rows. For more information, see the Delivery Overview documentation." + description: "End-to-end observability is coming to Warehouse Destinations. For the first time, Delivery Overview gives you a comprehensive breakdown of how streaming source events convert to warehouse rows.
For more information, see the [Delivery Overview](/docs/connections/delivery-overview/#storage-destinations) documentation." date: August 12, 2024 product-area: - segment app diff --git a/src/_sass/components/_release-note-card.scss b/src/_sass/components/_release-note-card.scss index ba44fb2934..9ac0cfc0ac 100644 --- a/src/_sass/components/_release-note-card.scss +++ b/src/_sass/components/_release-note-card.scss @@ -1,13 +1,10 @@ .release-note-card { - color: color(gray-800); - &--box { $this: &; position: relative; padding: 10px; background-color: color(white); - border: 1px solid color(gray-400); margin-top: 20px; border-radius: 8px; transition: 200ms ease; @@ -71,5 +68,6 @@ &--filter-button{ display: inline-block; + /*width: 50%;*/ } } \ No newline at end of file diff --git a/src/release-notes/test.md b/src/release-notes/test.md index aac26fe43f..22a44629ff 100644 --- a/src/release-notes/test.md +++ b/src/release-notes/test.md @@ -8,7 +8,7 @@ hide_toc: true - + {% assign notes = site.data.release-notes.notes %} From d00f197e69e4258fba10288edd098d99581bb990 Mon Sep 17 00:00:00 2001 From: forstisabella <92472883+forstisabella@users.noreply.github.com> Date: Fri, 30 Aug 2024 12:27:26 -0400 Subject: [PATCH 08/10] add more examples [netlify-build] --- src/_data/release-notes.yml | 99 ++++++++++++++++++++++++++++++++----- src/release-notes/test.md | 4 +- 2 files changed, 89 insertions(+), 14 deletions(-) diff --git a/src/_data/release-notes.yml b/src/_data/release-notes.yml index 16a1835944..ae5469146d 100644 --- a/src/_data/release-notes.yml +++ b/src/_data/release-notes.yml @@ -1,17 +1,6 @@ ## This manually-generated file powers segment.com/docs/release-notes. notes: - - title: Segment Extensions General Availability - 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](/docs/segment-app/extensions/)." - date: August 16, 2024 - product-area: - - segment app - release-stage: ga - plan: - - free - - team - - business - read-more: "/docs/segment-app/extensions/" - title: Linked Audiences and Data Graph General Availability description: "Segment's Linked Audiences and Data Graph are now Generally Available for Snowflake & Databricks.
[Linked Audiences](/docs/engage/audiences/linked-audiences/) empowers marketers to effortlessly create targeted audiences by combining behavioral data from the Segment Profile and warehouse entity data within a self-serve, no-code interface. This tool accelerates audience creation, enabling precise targeting, enhanced customer personalization, and optimized marketing spend without the need for constant data team support.
The [Data Graph](/docs/unify/data-graph/) acts as a semantic layer that allows businesses to define relationships between entity datasets in the warehouse — such as accounts, subscriptions, households, and products — with the Segment Profile. The Data Graph makes these relational datasets easily accessible to business teams for targeted and personalized customer engagements." date: August 23, 2024 @@ -23,6 +12,17 @@ notes: - team - business read-more: "/docs/engage/audiences/linked-audiences/" + - title: Segment Extensions General Availability + 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](/docs/segment-app/extensions/)." + date: August 16, 2024 + product-area: + - segment app + release-stage: ga + plan: + - free + - team + - business + read-more: "/docs/segment-app/extensions/" - title: Delivery Overview for Storage Destinations is in Public Beta description: "End-to-end observability is coming to Warehouse Destinations. For the first time, Delivery Overview gives you a comprehensive breakdown of how streaming source events convert to warehouse rows.
For more information, see the [Delivery Overview](/docs/connections/delivery-overview/#storage-destinations) documentation." date: August 12, 2024 @@ -34,4 +34,79 @@ notes: - free - team - business - read-more: "/docs/connections/delivery-overview/#storage-destinations" \ No newline at end of file + read-more: "/docs/connections/delivery-overview/#storage-destinations" + - title: Facebook Custom Audiences (Actions) Public Beta + description: "The [Facebook Custom Audiences (Actions) destination](/docs/connections/destinations/catalog/actions-facebook-custom-audiences/) is now in Public Beta. Deliver effective Facebook Ads campaigns by defining and syncing custom audiences to power ad suppression, acquisition (using lookalikes), retargeting, and more.

This destination sends audiences, or lists of users, from your data warehouse to Facebook Custom Audiences using Reverse ETL. Syncs can add or remove users from your Facebook Custom Audiences as records are created, updated, or deleted in your warehouse." + date: August 12, 2024 + product-area: + - destinations + release-stage: beta + plan: + - free + - team + - business + read-more: "/docs/connections/destinations/catalog/actions-facebook-custom-audiences/" + - title: Trait Activation in Destination Functions General Availability + description: "Trait Activation in Destination Functions is available to all users on Business Tier plans with Engage Foundations. This feature enables you to pass Traits and Identifiers on the Segment Profile to Destination Functions used in your Engage flows, eliminating the need for calling the Public Profile API. For more information, see the [Trait Activation documentation](/docs/engage/trait-activation/)." + date: July 30, 2024 + product-area: + - twilio engage + release-stage: ga + plan: + - addon + - business + read-more: "/docs/engage/trait-activation/" + - title: LinkedIn Conversions API General Availability + description: "The [LinkedIn Conversions API (CAPI) destination](/docs/connections/destinations/catalog/actions-linkedin-conversions/) is now generally available. Optimize and measure your LinkedIn ad campaigns by sending end-user conversion events to LinkedIn." + date: July 25, 2024 + product-area: + - destinations + release-stage: ga + plan: + - free + - team + - business + read-more: "/docs/connections/destinations/catalog/actions-linkedin-conversions/" + - title: Google Display and Video 360 (Actions) General Availability + description: "The Google Display and Video 360 destination, rebuilt on Destination Actions, is now generally available.

This destination lets you streamline activation of end-to-end ad campaigns under Google Marketing Platform." + date: July 25, 2024 + product-area: + - destinations + release-stage: ga + plan: + - free + - team + - business + read-more: "/docs/connections/destinations/catalog/actions-display-video-360/" + - title: Marketo Static Lists (Actions) General Availability + description: "The [Marketo Static Lists destination](/docs/connections/destinations/catalog/actions-marketo-static-lists/), rebuilt on Destination Actions, is now generally available. Sync profiles as a List to Marketo for your marketing campaigns from an Engage Audience, Linked Audience, or a Reverse ETL model." + date: July 25, 2024 + product-area: + - destinations + release-stage: ga + plan: + - free + - team + - business + read-more: "/docs/connections/destinations/catalog/actions-marketo-static-lists/" + - title: Custom Domain General Availability + description: "Custom Domain is a managed service run by Segment, available to all Business Tier customers at no additional cost. Custom Domain enables you to configure a first-party subdomain over HTTPS to track event requests through your domain instead of Segment's default domain. This allows you to collect comprehensive first-party data and build a more complete view of your customer's behaviors. For more information, see the [Custom Domain documentation](/docs/connections/sources/custom-domain/)." + date: July 25, 2024 + product-area: + - sources + release-stage: ga + plan: + - business + read-more: "/docs/connections/sources/custom-domain/" + - title: Predictions is now HIPAA Eligible + description: Predictions, Segment's artificial intelligence and machine learning feature that lets you predict the likelihood that users will perform any event tracked in Segment, is now HIPAA Eligible. [HIPAA Eligible workspaces](/docs/privacy/hipaa-eligible-segment/) require a Business Assosciate Addendum (BAA). For information about Twilio's HIPAA Eligible Services, see the [HIPAA Eligible Services](https://www.twilio.com/content/dam/twilio-com/global/en/other/hippa/pdf/HIPAA-Eligible-Services.pdf){:target="_blank”} documentation. + date: July 24, 2024 + product-area: + - twilio engage + - compliance + release-stage: ga + plan: + - business + - add on + - twilio engage premier + read-more: "/docs/unify/traits/predictions/" \ No newline at end of file diff --git a/src/release-notes/test.md b/src/release-notes/test.md index 22a44629ff..83ea4fe769 100644 --- a/src/release-notes/test.md +++ b/src/release-notes/test.md @@ -17,10 +17,10 @@ hide_toc: true
{{ note.title }}
- {{ note.release-stage }} + {{ note.release-stage }} {% assign plans = note.plan %} {% for plan in plans %} - {{ plan }} + {{ plan }} {% endfor %} {% assign product-area = note.product-area %} {% for item in product-area %} From 83e351da80ceca07bca2e7924f3a0597e71ccb1d Mon Sep 17 00:00:00 2001 From: forstisabella <92472883+forstisabella@users.noreply.github.com> Date: Fri, 30 Aug 2024 12:31:26 -0400 Subject: [PATCH 09/10] Apply suggestions from code review [netlify-build] --- src/_data/release-notes.yml | 2 +- src/release-notes/test.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/_data/release-notes.yml b/src/_data/release-notes.yml index ae5469146d..81a1819767 100644 --- a/src/_data/release-notes.yml +++ b/src/_data/release-notes.yml @@ -1,4 +1,4 @@ -## This manually-generated file powers segment.com/docs/release-notes. +## This manually-generated file powers segment.com/docs/release-notes/test/. notes: - title: Linked Audiences and Data Graph General Availability diff --git a/src/release-notes/test.md b/src/release-notes/test.md index 83ea4fe769..1099bb22ad 100644 --- a/src/release-notes/test.md +++ b/src/release-notes/test.md @@ -5,7 +5,7 @@ hide_toc: true

Select one of the following buttons to see release notes in that release stage:

- + From 9f97f5f311a63c5d68e4b4c9d97004a4ac1c4ab5 Mon Sep 17 00:00:00 2001 From: forstisabella <92472883+forstisabella@users.noreply.github.com> Date: Fri, 20 Sep 2024 10:29:26 -0400 Subject: [PATCH 10/10] format fixes --- src/_sass/components/_release-note-card.scss | 14 +++++++++----- src/release-notes/test.md | 6 ++++-- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/src/_sass/components/_release-note-card.scss b/src/_sass/components/_release-note-card.scss index 9ac0cfc0ac..3eeac3f894 100644 --- a/src/_sass/components/_release-note-card.scss +++ b/src/_sass/components/_release-note-card.scss @@ -3,7 +3,7 @@ $this: &; position: relative; - padding: 10px; + padding: 5px; background-color: color(white); margin-top: 20px; border-radius: 8px; @@ -13,11 +13,11 @@ padding: 30px; }*/ - &:hover { + /* &:hover { border: 1px solid color(gray-100); border-color: color(gray-500); text-decoration: none; - } + }*/ } &--note-header { @@ -31,6 +31,7 @@ &--badges { padding: 2px; + display: inline-block; } &--content { @@ -45,7 +46,6 @@ } &--date { - display: inline-block; font-size: 12px; font-weight: 500; color: color(gray-700); @@ -53,7 +53,7 @@ &--read-more { position: absolute; - bottom: 20; + bottom: 10; right: 20; padding: 5px; } @@ -70,4 +70,8 @@ display: inline-block; /*width: 50%;*/ } + + hr { + padding: 2px; + } } \ No newline at end of file diff --git a/src/release-notes/test.md b/src/release-notes/test.md index 1099bb22ad..25b8a0f131 100644 --- a/src/release-notes/test.md +++ b/src/release-notes/test.md @@ -26,14 +26,16 @@ hide_toc: true {% for item in product-area %} {{ item }} {% endfor %} +

Released {{ note.date }}

-

{{ note.description | markdownify }}

-

Released {{ note.date }}

Read more +

{{ note.description | markdownify }}


+ Learn more
+
{% endfor %}