gatsby-source-filesystem 5.15.0 → 5.16.0

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/CHANGELOG.md +8 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@5.15.0/packages/gatsby-source-filesystem) (2025-08-27)
7
+
8
+ [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
9
+
10
+ #### Bug Fixes
11
+
12
+ - update dependency chokidar to ^3.6.0 [#39174](https://github.com/gatsbyjs/gatsby/issues/39174) ([5717252](https://github.com/gatsbyjs/gatsby/commit/571725239b77f2b0604b43be3e1aaaf9cda4a5d8))
13
+
6
14
  ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@5.14.0/packages/gatsby-source-filesystem) (2024-11-06)
7
15
 
8
16
  [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gatsby-source-filesystem",
3
3
  "description": "Gatsby source plugin for building websites from local data. Markdown, JSON, images, YAML, CSV, and dozens of other data types supported.",
4
- "version": "5.15.0",
4
+ "version": "5.16.0",
5
5
  "author": "Kyle Mathews <mathews.kyle@gmail.com>",
6
6
  "bugs": {
7
7
  "url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -11,7 +11,7 @@
11
11
  "chokidar": "^3.6.0",
12
12
  "file-type": "^16.5.4",
13
13
  "fs-extra": "^11.2.0",
14
- "gatsby-core-utils": "^4.15.0",
14
+ "gatsby-core-utils": "^4.16.0",
15
15
  "mime": "^3.0.0",
16
16
  "pretty-bytes": "^5.6.0",
17
17
  "valid-url": "^1.0.9",
@@ -20,7 +20,7 @@
20
20
  "devDependencies": {
21
21
  "@babel/cli": "^7.20.7",
22
22
  "@babel/core": "^7.20.12",
23
- "babel-preset-gatsby-package": "^3.15.0",
23
+ "babel-preset-gatsby-package": "^3.16.0",
24
24
  "cross-env": "^7.0.3"
25
25
  },
26
26
  "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem#readme",
@@ -44,7 +44,7 @@
44
44
  },
45
45
  "types": "index.d.ts",
46
46
  "engines": {
47
- "node": ">=18.0.0"
47
+ "node": ">=18.0.0 <26"
48
48
  },
49
- "gitHead": "e620ad92732af0b7ff222ea8cee5224abb8299aa"
49
+ "gitHead": "92d6c67dcf10b641adf5fcc81ebeec5f50b75e40"
50
50
  }