pob 24.0.0 → 24.2.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 CHANGED
@@ -3,6 +3,24 @@
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
+ ## [24.2.0](https://github.com/christophehurpeau/pob/compare/pob@24.1.0...pob@24.2.0) (2024-11-17)
7
+
8
+ ### Bug Fixes
9
+
10
+ * update codecov-action to v5 ([ff8610c](https://github.com/christophehurpeau/pob/commit/ff8610cfcc65aa5b19dc259b347d6b6b8fe821c3))
11
+
12
+ Version bump for dependency: @pob/root
13
+
14
+
15
+ ## [24.1.0](https://github.com/christophehurpeau/pob/compare/pob@24.0.0...pob@24.1.0) (2024-11-12)
16
+
17
+ ### Features
18
+
19
+ * **deps:** update dependency eslint to v9.14.0 ([#2304](https://github.com/christophehurpeau/pob/issues/2304)) ([c13cf99](https://github.com/christophehurpeau/pob/commit/c13cf992bab0f261969e258e79aaaa267512a661))
20
+
21
+ Version bump for dependency: @pob/root
22
+
23
+
6
24
  ## [24.0.0](https://github.com/christophehurpeau/pob/compare/pob@23.4.1...pob@24.0.0) (2024-11-11)
7
25
 
8
26
  ### ⚠ BREAKING CHANGES
@@ -124,7 +124,7 @@ jobs:
124
124
  CI: true
125
125
 
126
126
  - name: Send results to codecov
127
- uses: codecov/codecov-action@v4
127
+ uses: codecov/codecov-action@v5
128
128
  if: matrix.node-version == 18
129
129
  with:
130
130
  fail_ci_if_error: true
@@ -58,6 +58,12 @@ jobs:
58
58
  - name: Eslint
59
59
  run: <%= packageManager %> run lint:eslint
60
60
  if: startsWith(matrix.node-version, '22.')
61
+ <% if (true) { -%>
62
+
63
+ - name: Check nothing was forgotten before commit
64
+ if: startsWith(matrix.node-version, '22.')
65
+ run: <%= packageManager === 'npm' ? 'npx' : 'yarn run' %> repository-check-dirty
66
+ <% } -%>
61
67
  <% if (codecov) { -%>
62
68
 
63
69
  - name: Generate Test Coverage
@@ -67,7 +73,7 @@ jobs:
67
73
  CI: true
68
74
 
69
75
  - name: Send results to codecov
70
- uses: codecov/codecov-action@v4
76
+ uses: codecov/codecov-action@v5
71
77
  with:
72
78
  fail_ci_if_error: true
73
79
  token: ${{ secrets.CODECOV_TOKEN }}
@@ -84,14 +90,8 @@ jobs:
84
90
  - name: E2E testing
85
91
  run: <%= packageManager %> <%= e2eTesting %> run test:e2e
86
92
  <% } -%>
87
- <% if (true) { -%>
88
-
89
- - name: Check nothing was forgotten before commit
90
- if: startsWith(matrix.node-version, '22.')
91
- run: <%= packageManager === 'npm' ? 'npx' : 'yarn run' %> repository-check-dirty
92
- <% } -%>
93
-
94
93
  <% if (isReleasePleaseEnabled) { -%>
94
+
95
95
  - uses: GoogleCloudPlatform/release-please-action@v3
96
96
  if: ${{ startsWith(matrix.node-version, '22.') && github.ref == 'refs/heads/main' }}
97
97
  id: release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "24.0.0",
3
+ "version": "24.2.0",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -53,7 +53,7 @@
53
53
  "@yarnpkg/core": "4.1.4",
54
54
  "@yarnpkg/fslib": "3.1.0",
55
55
  "@yeoman/types": "1.5.0",
56
- "eslint": "9.13.0",
56
+ "eslint": "9.14.0",
57
57
  "findup-sync": "^5.0.0",
58
58
  "git-remote-url": "^1.0.1",
59
59
  "github-username": "^7.0.0",
@@ -65,7 +65,7 @@
65
65
  "mem-fs-editor": "11.1.3",
66
66
  "minimist": "1.2.8",
67
67
  "parse-author": "2.0.0",
68
- "pob-dependencies": "15.0.0",
68
+ "pob-dependencies": "15.1.1",
69
69
  "prettier": "3.3.3",
70
70
  "semver": "7.6.3",
71
71
  "validate-npm-package-name": "^6.0.0",
@@ -74,7 +74,7 @@
74
74
  "yeoman-generator": "7.3.3"
75
75
  },
76
76
  "devDependencies": {
77
- "@pob/root": "14.0.0",
77
+ "@pob/root": "14.1.0",
78
78
  "@types/node": "22.9.0",
79
79
  "typescript": "5.6.3"
80
80
  }