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
52 changes: 52 additions & 0 deletions gatsby-config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,58 @@ const config = {
nodesPerFeedFile: 1000,
},
},
{
resolve: 'gatsby-plugin-feed',
options: {
query: `
{
site {
siteMetadata {
siteUrl
}
}
}
`,
feeds: [
{
serialize: ({ query: { site, pages } }) =>
pages.edges.map(edge => ({
title: edge.node.frontmatter.title,
description: edge.node.frontmatter.title,
date: edge.node.frontmatter.date,
url: `${site.siteMetadata.siteUrl}/${edge.node.fields.slug}`,
guid: edge.node.fields.slug,
custom_elements: [{ 'content:encoded': edge.node.body }],
})),
query: `
{
pages: allMdx(
filter: { internal: { contentFilePath: { regex: "/(changelog)/" } } }
sort: { frontmatter: { date: DESC } }
) {
edges {
node {
__typename
id
frontmatter {
title
date
}
body
fields {
slug
}
}
}
}
}
`,
output: '/changelog.xml',
title: 'Idura changelog',
},
],
},
},
]
.concat(
process.env.GATSBY_ALGOLIA_APP_ID
Expand Down
60 changes: 60 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
"@types/react-syntax-highlighter": "^15.5.3",
"autoprefixer": "^10.4.0",
"gatsby-adapter-netlify": "^1.4.0",
"gatsby-plugin-feed": "^5.16.0",
"gatsby-plugin-image": "^3.16.0",
"gatsby-plugin-postcss": "^6.16.0",
"gatsby-plugin-sharp": "^5.16.0",
Expand Down
26 changes: 26 additions & 0 deletions src/pages/changelog/2026-03-13.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
date: 2026-03-17
title: Upcoming change of default View version
---

This is a notice that, from 2026-04-17, we will always render the latest view version (currently
2025-01-01), for all customers **without** any custom CSS, or custom UI.

You can check if this change affects you by going to [https://dashboard.idura.app/styling](https://dashboard.idura.app/styling).

- If the `View version` field shows `2025-04-01`, you are already on the most recent version, and
you will not be affected by this change.
- If the `View version` field shows `Unified`:
- If you **are not** using custom CSS, or custom styling, you will be switched to the new version.
- If you **are** using custom CSS, or custom styling, nothing will happen. However, we still urge
you to test the new version in your own time, and switch to it as soon as possible.

## What happens when the view version is changed?

In July 2025, Swedish BankID introduced stronger accesibility requirements around QR codes (
[see the original changelog entry](/changelog/2025-04-02-sebankid-accessibility/)). This lead us to change the
HTML and CSS we use to render the QR code, which again might break any custom styling of the QR
code on your side.

Upgrading to the `2025-04-01` view version also brings multiple new features (such as new eID logos)
and bug fixes.
18 changes: 18 additions & 0 deletions src/pages/changelog/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ import { isIndexPage } from '../../utils';

export default function Changelog(props: { location: Location }) {
const data = useStaticQuery<{
site: {
siteMetadata: {
siteUrl: string;
};
};
pages: {
edges: {
node: {
Expand All @@ -28,6 +33,11 @@ export default function Changelog(props: { location: Location }) {
};
}>(graphql`
query changelogPages {
site {
siteMetadata {
siteUrl
}
}
pages: allMdx(
filter: { internal: { contentFilePath: { regex: "/(changelog)/" } } }
sort: { frontmatter: { date: DESC } }
Expand Down Expand Up @@ -67,6 +77,14 @@ export default function Changelog(props: { location: Location }) {
},
}}
>
<p>
You can also subscribe to our changelog <a href="/changelog.xml">via RSS</a>. In order to
receive updates via email, we recommend using an RSS tool such as{' '}
<a target="_blank" href="https://feedrabbit.com">
Feedrabbit
</a>
.
</p>
<div>
{data.pages.edges
.map(edge => edge.node)
Expand Down
Loading