apostrophe 3.67.0 → 3.67.1

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,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.67.1 (2024-07-10)
4
+
5
+ ### Changes
6
+
7
+ * Update `@apostrophecms/emulate-mongo-3-driver` dependency to keep supporting `mongodb@3.x` queries while using `mongodb@6.x`.
8
+
9
+ ### Fixes
10
+
11
+ * Prevent broken admin UI when there is a missing widget.
12
+
3
13
  ## 3.67.0 (2024-06-12)
4
14
 
5
15
  ### Changes
@@ -43,8 +43,8 @@ export default {
43
43
  for (const [ name, options ] of Object.entries(widgets)) {
44
44
  result.push({
45
45
  name,
46
- label: options.addLabel || apos.modules[`${name}-widget`].label,
47
- icon: apos.modules[`${name}-widget`].icon
46
+ label: options.addLabel || apos.modules[`${name}-widget`]?.label,
47
+ icon: apos.modules[`${name}-widget`]?.icon
48
48
  });
49
49
  }
50
50
  return result;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apostrophe",
3
- "version": "3.67.0",
3
+ "version": "3.67.1",
4
4
  "description": "The Apostrophe Content Management System.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -31,7 +31,7 @@
31
31
  "author": "Apostrophe Technologies, Inc.",
32
32
  "license": "MIT",
33
33
  "dependencies": {
34
- "@apostrophecms/emulate-mongo-3-driver": "^1.0.2",
34
+ "@apostrophecms/emulate-mongo-3-driver": "^1.0.5",
35
35
  "@apostrophecms/vue-color": "^2.8.2",
36
36
  "@opentelemetry/api": "^1.0.4",
37
37
  "@opentelemetry/semantic-conventions": "^1.0.1",