Skip to content

release notes -> changelog #2679

New issue

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

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

Already on GitHub? # to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
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
22 changes: 13 additions & 9 deletions src/config/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ export const SIDEBAR: Partial<Record<Sections, SectionEntry[]>> = {
title: "Flags Contract Registry",
url: "data-feeds/contract-registry",
},
{
title: "Release Notes",
url: "data-feeds/release-notes",
},
],
},
{
Expand Down Expand Up @@ -527,14 +531,14 @@ export const SIDEBAR: Partial<Record<Sections, SectionEntry[]>> = {
title: "Service Limits",
url: "chainlink-automation/overview/service-limits",
},
{
title: "Release Notes",
url: "chainlink-automation/overview/automation-release-notes",
},
{
title: "Migrate to Automation v2.1",
url: "chainlink-automation/guides/migrate-to-v2",
},
{
title: "Release Notes",
url: "chainlink-automation/release-notes",
},
],
},
{
Expand Down Expand Up @@ -712,7 +716,7 @@ export const SIDEBAR: Partial<Record<Sections, SectionEntry[]>> = {
},
{
title: "Release Notes",
url: "chainlink-functions/resources/release-notes",
url: "chainlink-functions/release-notes",
},
],
},
Expand Down Expand Up @@ -1576,10 +1580,6 @@ export const SIDEBAR: Partial<Record<Sections, SectionEntry[]>> = {
title: "Overview",
url: "chainlink-nodes",
},
{
title: "Release Notes",
url: "chainlink-nodes/node-versions",
},
{
title: "Run a Chainlink Node",
url: "chainlink-nodes/v1/running-a-chainlink-node",
Expand All @@ -1606,6 +1606,10 @@ export const SIDEBAR: Partial<Record<Sections, SectionEntry[]>> = {
title: "System Requirements",
url: "chainlink-nodes/resources/requirements",
},
{
title: "Release Notes",
url: "chainlink-nodes/release-notes",
},
],
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Alternatively, set the forwarder address when your upkeep is deployed and read t

### Use the Forwarder

If your upkeep performs **sensitive** functions in your protocol, consider using the [`Forwarder`](/chainlink-automation/overview/automation-release-notes) to lock it down so `performUpkeep` can only be called by the `Forwarder`. Add other permissible addresses if you need to call it yourself. Note the forwarder is only determined after registration so make this a mutable variable and ensure you add a setter function with permissions for you to set it.
If your upkeep performs **sensitive** functions in your protocol, consider using the `Forwarder` to lock it down so `performUpkeep` can only be called by the `Forwarder`. Add other permissible addresses if you need to call it yourself. Note the forwarder is only determined after registration so make this a mutable variable and ensure you add a setter function with permissions for you to set it.

### Verify Data Streams reports fetched with StreamsLookup

Expand Down
5 changes: 5 additions & 0 deletions src/content/data-feeds/release-notes-backup.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
section: dataFeeds
date: Last Modified
title: "Release Notes"
---
10 changes: 10 additions & 0 deletions src/pages/ccip/release-notes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { type APIRoute } from "astro"

export const GET: APIRoute = () => {
return new Response(null, {
status: 302,
headers: {
Location: "https://dev.chain.link/changelog?product=CCIP",
},
})
}
10 changes: 10 additions & 0 deletions src/pages/chainlink-automation/release-notes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { type APIRoute } from "astro"

export const GET: APIRoute = () => {
return new Response(null, {
status: 302,
headers: {
Location: "https://dev.chain.link/changelog?product=Automation",
},
})
}
10 changes: 10 additions & 0 deletions src/pages/chainlink-functions/release-notes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { type APIRoute } from "astro"

export const GET: APIRoute = () => {
return new Response(null, {
status: 302,
headers: {
Location: "https://dev.chain.link/changelog?product=Functions",
},
})
}
10 changes: 10 additions & 0 deletions src/pages/chainlink-nodes/release-notes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { type APIRoute } from "astro"

export const GET: APIRoute = () => {
return new Response(null, {
status: 302,
headers: {
Location: "https://dev.chain.link/changelog?product=Nodes",
},
})
}
10 changes: 10 additions & 0 deletions src/pages/data-feeds/release-notes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { type APIRoute } from "astro"

export const GET: APIRoute = () => {
return new Response(null, {
status: 302,
headers: {
Location: "https://dev.chain.link/changelog?product=Data+Feeds",
},
})
}
10 changes: 10 additions & 0 deletions src/pages/data-streams/release-notes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { type APIRoute } from "astro"

export const GET: APIRoute = () => {
return new Response(null, {
status: 302,
headers: {
Location: "https://dev.chain.link/changelog?product=Data+Streams",
},
})
}
10 changes: 10 additions & 0 deletions src/pages/vrf/release-notes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { type APIRoute } from "astro"

export const GET: APIRoute = () => {
return new Response(null, {
status: 302,
headers: {
Location: "https://dev.chain.link/changelog?product=VRF",
},
})
}
Loading