@acuity/directus-extension-acuity-backup 2.1.3 → 2.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +10 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -77,7 +77,15 @@ Then restart Directus to load the new version:
77
77
  docker compose restart directus
78
78
  ```
79
79
 
80
- To pin a specific version instead of the latest, append `@<version>` to the pack command, e.g. `npm pack @acuity/directus-extension-acuity-backup@2.1.0`.
80
+ To pin a specific version instead of the latest, append `@<version>` to the pack command, e.g. `npm pack @acuity/directus-extension-acuity-backup@2.1.4`.
81
+
82
+ > **Upgrading from a release installed in a folder named `acuity-backup`?** Rename the folder to `directus-extension-acuity-backup` first — the old name collides with the bundle's endpoint entry and corrupts Directus's extension registry. If the **Settings → Extensions** page was already returning a 500, clear the stale rows once and restart:
83
+ >
84
+ > ```sql
85
+ > DELETE FROM directus_extensions WHERE folder IN ('acuity-backup', 'acuity-backup-module', 'backup-endpoint');
86
+ > ```
87
+ >
88
+ > Directus rebuilds clean rows from disk on the next boot.
81
89
 
82
90
  ### Dockerfile
83
91
 
@@ -91,7 +99,7 @@ docker compose up -d directus
91
99
  Pin a version in the Dockerfile to control upgrades explicitly:
92
100
 
93
101
  ```dockerfile
94
- RUN pnpm install @acuity/directus-extension-acuity-backup@2.1.0
102
+ RUN pnpm install @acuity/directus-extension-acuity-backup@2.1.4
95
103
  ```
96
104
 
97
105
  > Check the installed version anytime with `cat /directus/extensions/directus-extension-acuity-backup/package.json | grep version`, and compare against the [latest release on npm](https://www.npmjs.com/package/@acuity/directus-extension-acuity-backup).
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@acuity/directus-extension-acuity-backup",
3
3
  "description": "Backup Directus collections, schema, and media files to ZIP archives. Provided free, courtesy of Acuity Consulting Inc. — we help companies build smarter systems, automate workflows with AI, and scale with confidence.",
4
4
  "icon": "icon.png",
5
- "version": "2.1.3",
5
+ "version": "2.1.4",
6
6
  "license": "MIT",
7
7
  "author": {
8
8
  "name": "Acuity Consulting Inc.",