gatsby-source-filesystem 5.6.0-next.0 → 5.7.0-next.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.
- package/CHANGELOG.md +13 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
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.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@5.5.0/packages/gatsby-source-filesystem) (2023-01-24)
|
|
7
|
+
|
|
8
|
+
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.5)
|
|
9
|
+
|
|
10
|
+
#### Features
|
|
11
|
+
|
|
12
|
+
- Only generate hashes when a file has changed, and add an option for skipping hashing [#37464](https://github.com/gatsbyjs/gatsby/issues/37464) ([df58891](https://github.com/gatsbyjs/gatsby/commit/df588911265de18737ccdbbda17ac3708a6098b0))
|
|
13
|
+
|
|
14
|
+
#### Chores
|
|
15
|
+
|
|
16
|
+
- Improve README [#37480](https://github.com/gatsbyjs/gatsby/issues/37480) ([16685a6](https://github.com/gatsbyjs/gatsby/commit/16685a62275843914023349de2ba26720ed5e80c))
|
|
17
|
+
- Upgrade some non-breaking major versions [#37406](https://github.com/gatsbyjs/gatsby/issues/37406) ([2ea80c0](https://github.com/gatsbyjs/gatsby/commit/2ea80c02e464fe9306f6a1eccbb6c74983a76208))
|
|
18
|
+
|
|
6
19
|
## [5.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@5.4.0/packages/gatsby-source-filesystem) (2023-01-10)
|
|
7
20
|
|
|
8
21
|
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.4)
|
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
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.
|
|
4
|
+
"version": "5.7.0-next.0",
|
|
5
5
|
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/gatsbyjs/gatsby/issues"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@babel/runtime": "^7.20.
|
|
10
|
+
"@babel/runtime": "^7.20.13",
|
|
11
11
|
"chokidar": "^3.5.3",
|
|
12
12
|
"file-type": "^16.5.4",
|
|
13
13
|
"fs-extra": "^11.1.0",
|
|
14
|
-
"gatsby-core-utils": "^4.
|
|
14
|
+
"gatsby-core-utils": "^4.7.0-next.0",
|
|
15
15
|
"mime": "^3.0.0",
|
|
16
16
|
"pretty-bytes": "^5.6.0",
|
|
17
17
|
"valid-url": "^1.0.9",
|
|
18
|
-
"xstate": "^4.
|
|
18
|
+
"xstate": "^4.35.3"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@babel/cli": "^7.20.7",
|
|
22
|
-
"@babel/core": "^7.20.
|
|
23
|
-
"babel-preset-gatsby-package": "^3.
|
|
22
|
+
"@babel/core": "^7.20.12",
|
|
23
|
+
"babel-preset-gatsby-package": "^3.7.0-next.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",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">=18.0.0"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "342e393de312ea765656e66970e4554991125275"
|
|
50
50
|
}
|