Skip to content
Open
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
8 changes: 4 additions & 4 deletions gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,8 @@ exports.sourceNodes = async ({ actions, createNodeId, createContentDigest }) =>
console.error('❌ Failed to fetch latest Ironic release:', error.message)
// Fallback to current known version if all APIs fail
const fallbackData = {
version: '34.0.0',
releaseNotesUrl: 'https://docs.openstack.org/releasenotes/ironic/latest.html#relnotes-34-0-0',
version: '35.0.0',
releaseNotesUrl: 'https://docs.openstack.org/releasenotes/ironic/unreleased.html#relnotes-35-0-0',
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
releaseNotesUrl: 'https://docs.openstack.org/releasenotes/ironic/unreleased.html#relnotes-35-0-0',
releaseNotesUrl: 'https://docs.openstack.org/releasenotes/ironic/2026.1.html#relnotes-35-0-0-stable-2026-1',

Gives prettier notes.

publishedAt: null,
htmlUrl: 'https://docs.openstack.org/releasenotes/ironic/',
releaseSeries: 'fallback',
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
releaseSeries: 'fallback',
releaseSeries: 'unreleased',

Is that maybe we need to have it auto-update?

Expand All @@ -338,7 +338,7 @@ exports.sourceNodes = async ({ actions, createNodeId, createContentDigest }) =>
const node = Object.assign({}, fallbackData, nodeMeta)
createNode(node)

console.log('⚠️ Using fallback version: 34.0.0')
console.log('⚠️ Using fallback version: 35.0.0')
}
}

Expand All @@ -353,4 +353,4 @@ exports.onCreateNode = ({ node, actions, getNode }) => {
value,
})
}
}
}