Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/crowdin_download.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
install-front:
uses: ./.github/workflows/front-dependencies-installation.yml
with:
node_version: '20.x'
node_version: '22.x'

synchronize-with-crowdin:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crowdin_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
install-front:
uses: ./.github/workflows/front-dependencies-installation.yml
with:
node_version: '20.x'
node_version: '22.x'

synchronize-with-crowdin:
needs: install-front
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/front-dependencies-installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
node_version:
required: false
default: '20.x'
default: '22.x'
type: string

jobs:
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to

## [Unreleased]

## [v0.21.0] - 2026-08-07

### Added

- ✨(backend) make the upload ACL configurable to support GCS based storages
Expand Down Expand Up @@ -495,7 +497,8 @@ and this project adheres to
- 🌐(front) add english translation for rename modal
- πŸ›(global) fix wrong Content-Type on specific s3 implementations

[unreleased]: https://github.com/suitenumerique/drive/compare/v0.20.0...main
[unreleased]: https://github.com/suitenumerique/drive/compare/v0.21.0...main
[v0.21.0]: https://github.com/suitenumerique/drive/releases/v0.21.0
[v0.20.0]: https://github.com/suitenumerique/drive/releases/v0.20.0
[v0.19.0]: https://github.com/suitenumerique/drive/releases/v0.19.0
[v0.18.0]: https://github.com/suitenumerique/drive/releases/v0.18.0
Expand Down
2 changes: 1 addition & 1 deletion src/backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "uv_build"

[project]
name = "drive"
version = "0.20.0"
version = "0.21.0"
authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down
2 changes: 1 addition & 1 deletion src/backend/uv.lock

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

2 changes: 1 addition & 1 deletion src/frontend/apps/drive/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "drive",
"version": "0.20.0",
"version": "0.21.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "main",
"version": "0.20.0",
"version": "0.21.0",
"private": true,
"workspaces": [
"apps/*",
Expand Down
2 changes: 1 addition & 1 deletion src/helm/drive/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
type: application
name: drive
version: 0.20.0
version: 0.21.0
appVersion: latest
2 changes: 1 addition & 1 deletion src/helm/helmfile.yaml.gotmpl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
environments:
dev:
values:
- version: 0.20.0
- version: 0.21.0
---
repositories:
- name: dev-backends
Expand Down
2 changes: 1 addition & 1 deletion src/mail/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mail_mjml",
"version": "0.20.0",
"version": "0.21.0",
"description": "An util to generate html and text django's templates from mjml templates",
"type": "module",
"dependencies": {
Expand Down
Loading