apostrophe 4.7.1 → 4.7.2

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.7.2 (2024-10-09)
4
+
5
+ ### Fixes
6
+
7
+ * Correct a race condition that can cause a crash at startup when custom `uploadfs` options are present in some specific cloud environments e.g. when using Azure Blob Storage.
8
+
3
9
  ## 4.7.1 (2024-09-20)
4
10
 
5
11
  ### Fixes
@@ -54,7 +54,7 @@ module.exports = {
54
54
  ...globalIcons
55
55
  };
56
56
  self.configureBuilds();
57
- self.initUploadfs();
57
+ await self.initUploadfs();
58
58
  self.enableBrowserData();
59
59
 
60
60
  const {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apostrophe",
3
- "version": "4.7.1",
3
+ "version": "4.7.2",
4
4
  "description": "The Apostrophe Content Management System.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -147,4 +147,4 @@
147
147
  "browserslist": [
148
148
  "ie >= 10"
149
149
  ]
150
- }
150
+ }