@scaleway/changesets-renovate 1.2.3 → 1.2.5

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,18 @@
1
1
  # Change Log
2
2
 
3
+ ## 1.2.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1325](https://github.com/scaleway/scaleway-lib/pull/1325) [`ef2fb63`](https://github.com/scaleway/scaleway-lib/commit/ef2fb636abd6f15e6dd9d28809f141036fafa50a) Thanks [@renovate](https://github.com/apps/renovate)! - Updated dependency `simple-git` to `3.19.0`.
8
+ Updated dependency `eslint` to `8.40.0`.
9
+
10
+ ## 1.2.4
11
+
12
+ ### Patch Changes
13
+
14
+ - [#1309](https://github.com/scaleway/scaleway-lib/pull/1309) [`429f630`](https://github.com/scaleway/scaleway-lib/commit/429f630831de30fc14cfe3216620f32b464a78bd) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Do not generate changeset for `package.json` without `version` field
15
+
3
16
  ## 1.2.3
4
17
 
5
18
  ### Patch Changes
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ async function getPackagesNames(files) {
6
6
  const packages = [];
7
7
  const promises = files.map(async file => {
8
8
  const data = JSON.parse(await fs.readFile(file, 'utf8'));
9
- if (!data.workspaces) {
9
+ if (!data.workspaces && data.version) {
10
10
  packages.push(data.name);
11
11
  }
12
12
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/changesets-renovate",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
4
4
  "description": "Automatically create changesets for Renovate",
5
5
  "keywords": [
6
6
  "changesets",
@@ -25,6 +25,6 @@
25
25
  },
26
26
  "license": "MIT",
27
27
  "dependencies": {
28
- "simple-git": "3.18.0"
28
+ "simple-git": "3.19.0"
29
29
  }
30
30
  }