apostrophe 3.67.0 → 3.67.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,25 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.67.2 (2024-08-08)
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
+ * Bump `oembetter` dependency to guarantee compatibility with YouTube. YouTube recently deployed broken `link rel="undefined"` tags on some of their video pages.
12
+
13
+ ## 3.67.1 (2024-07-10)
14
+
15
+ ### Changes
16
+
17
+ * Update `@apostrophecms/emulate-mongo-3-driver` dependency to keep supporting `mongodb@3.x` queries while using `mongodb@6.x`.
18
+
19
+ ### Fixes
20
+
21
+ * Prevent broken admin UI when there is a missing widget.
22
+
3
23
  ## 3.67.0 (2024-06-12)
4
24
 
5
25
  ### 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.2",
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.6",
35
35
  "@apostrophecms/vue-color": "^2.8.2",
36
36
  "@opentelemetry/api": "^1.0.4",
37
37
  "@opentelemetry/semantic-conventions": "^1.0.1",
@@ -107,7 +107,7 @@
107
107
  "node-fetch": "^2.6.1",
108
108
  "nodemailer": "^6.6.1",
109
109
  "nunjucks": "^3.2.1",
110
- "oembetter": "^1.1.1",
110
+ "oembetter": "^1.1.3",
111
111
  "parseurl": "^1.3.3",
112
112
  "passport": "^0.6.0",
113
113
  "passport-local": "^1.0.0",