Skip to content
Snippets Groups Projects
Commit 9a654d5a authored by Julien MARGAIL's avatar Julien MARGAIL
Browse files

up gatsby-plugin-auth to 0.4.1 & fix News order by date_published (v0.10.1)

parent 8ba81833
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.10.1] - 2024-01-09
### Fix
- News sort by date_published
### Changed
- Update @onegeo-suite/gatsby-plugin-auth to 0.4.1
## [0.10.0] - 2023-12-14
### Fix
......
......@@ -23,7 +23,11 @@ exports.createPages = async function ({ actions, graphql }) {
id
slug
}
news(filter: { status: { _eq: "published" } }, limit: -1) {
news(
filter: { status: { _eq: "published" } }
sort: "-date_published"
limit: -1
) {
id
slug
title
......
{
"name": "@onegeo-suite/gatsby-theme-onegeo",
"version": "0.10.0",
"version": "0.10.1",
"main": "index.js",
"types": "index.d.ts",
"author": "NEOGEO",
......@@ -16,7 +16,7 @@
"typescript": "^4.0.0"
},
"dependencies": {
"@onegeo-suite/gatsby-plugin-auth": "0.4.0",
"@onegeo-suite/gatsby-plugin-auth": "0.4.1",
"@onegeo-suite/gatsby-source-directus": "^9.14.1",
"dayjs": "^1.11.7",
"gatsby-plugin-env-variables": "^2.2.0",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment