Skip to content
Merged
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
10 changes: 6 additions & 4 deletions generate-release-notes.js → generate-release-notes.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
const { Octokit } = require("@octokit/rest");
const fs = require('fs');
const path = require('path');
// Import the Octokit module using ES Module syntax
import { Octokit } from "@octokit/rest";
import fs from 'fs';
import path from 'path';

// Initialize Octokit with authentication
const octokit = new Octokit({
auth: process.env.GITHUB_TOKEN,
});
Expand Down Expand Up @@ -104,7 +106,7 @@ ${releaseNotes.map(note => `- ${note}`).join('\n')}
Release Date: ${new Date().toISOString()}
`;

if (!fs.existsSync(releaseNotesDir)) {
if (!fs.existsSync(releaseNotesDir)) {
fs.mkdirSync(releaseNotesDir);
}

Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"@mdx-js/mdx": "2.0.0-next.8",
"@mdx-js/react": "2.0.0-next.8",
"@newrelic/gatsby-theme-newrelic": "9.11.1",
"@octokit/rest": "^21.1.1",
"@octokit/rest": "^20.18.0",
"@splitsoftware/splitio-react": "^1.2.4",
"ansi-colors": "^4.1.3",
"cockatiel": "^3.0.0-beta.0",
Expand Down Expand Up @@ -231,7 +231,8 @@
"verify-install-page": "node scripts/verifyInstallPage.js",
"verify-mdx": "node scripts/verify_mdx.js",
"webdriver-desktop": "node scripts/actions/webdriver-desktop.mjs",
"webdriver-mobile": "node scripts/actions/webdriver-mobile.mjs"
"webdriver-mobile": "node scripts/actions/webdriver-mobile.mjs",
"generate-release-notes": "node generate-release-notes.mjs"
},
"repository": {
"type": "git",
Expand Down
20 changes: 20 additions & 0 deletions release-notes/release-notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Docs Release Notes for 1

## Release Overview
- new change
- (chore): redirect-update

## New Documentation
- [src/content/docs/serverless-function-monitoring/aws-lambda-monitoring/response-stream.mdx](https://github.com/WriteMayur/docs-website/pull/2): Added response streaming configuration information

## Major Changes


## Minor Changes
- [new change](https://github.com/WriteMayur/docs-website/pull/2): Added response streaming configuration information
- [(chore): redirect-update](https://github.com/WriteMayur/docs-website/pull/1): Added the correct redirects to fix broken link issue in the docs. Also added a callout in the Amazon Q integration doc

## Release Notes


Release Date: 2025-03-24T05:57:32.013Z
Loading