@eventcatalog/core 2.7.5 → 2.7.6

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
  # @eventcatalog/core
2
2
 
3
+ ## 2.7.6
4
+
5
+ ### Patch Changes
6
+
7
+ - bb7333d: feat(core): added protobuf support for auto diffs
8
+
3
9
  ## 2.7.5
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eventcatalog/core",
3
3
  "type": "module",
4
- "version": "2.7.5",
4
+ "version": "2.7.6",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -6,7 +6,7 @@ import { getItemsFromCollectionByIdAndSemverOrLatest } from './util';
6
6
  import type { CollectionEntry } from 'astro:content';
7
7
  import type { CollectionTypes } from '@types';
8
8
 
9
- const FILE_EXTENSIONS_TO_INCLUDE = ['.json', '.avro', '.yaml', '.yml'];
9
+ const FILE_EXTENSIONS_TO_INCLUDE = ['.json', '.avro', '.yaml', '.yml', '.proto', '.pb', '.pbjson', '.pb.go'];
10
10
 
11
11
  /**
12
12
  * Generates a diff string in a unified diff format for two versions of a file.