@beauraines/sprint-tracker 0.6.3 → 0.6.4
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 +7 -0
- package/README.md +9 -9
- package/cmds/config.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.6.4](https://bitbucket.org/beauraines/sprint-tracker/compare/v0.6.3...v0.6.4) (2023-12-07)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **config:** creates file when one doesn't exist ([#44](https://bitbucket.org/beauraines/sprint-tracker/issues/44)) ([1b3b525](https://bitbucket.org/beauraines/sprint-tracker/commit/1b3b525ecc7da1c884417cabf5c1b5aa06c01025)), closes [#42](https://bitbucket.org/beauraines/sprint-tracker/issues/42)
|
|
11
|
+
|
|
5
12
|
### [0.6.3](https://bitbucket.org/beauraines/sprint-tracker/compare/v0.6.1...v0.6.3) (2023-12-07)
|
|
6
13
|
|
|
7
14
|
|
package/README.md
CHANGED
|
@@ -97,13 +97,13 @@ Non-working days and PTO will be recorded to be able to normalize Sprints with d
|
|
|
97
97
|
|
|
98
98
|
### Sprint Outcomes
|
|
99
99
|
|
|
100
|
-
1. Commitment
|
|
101
|
-
1. Delivered
|
|
102
|
-
1. Unplanned - Story
|
|
103
|
-
1. Unplanned - Bug
|
|
104
|
-
1. Descoped
|
|
105
|
-
1. Carryover
|
|
106
|
-
1. Carryover - External
|
|
100
|
+
1. Commitment: Initial sprint commitment
|
|
101
|
+
1. Delivered: Work completed this sprint
|
|
102
|
+
1. Unplanned - Story: All unplanned work brought into the sprint, whether completed or not
|
|
103
|
+
1. Unplanned - Bug: Unplanned work without a pre-existing story that was deemed critical enough to add to the sprint
|
|
104
|
+
1. Descoped: Committed work, removed from the sprint
|
|
105
|
+
1. Carryover: Incomplete, started or un-started, work from this sprint, assumed that it will carry over to the next sprint
|
|
106
|
+
1. Carryover - External: Work that was carried over due to blockers external to the scrum team. Use of this is optional, as an agile team should be fully self-sufficient.
|
|
107
107
|
|
|
108
108
|
|
|
109
109
|
### ERD
|
|
@@ -170,14 +170,14 @@ docker run -it --rm -v ${PROJECT_DIR}:/home/rstudio/projects/ ${IMAGE} su -c 'Rs
|
|
|
170
170
|
## Roadmap
|
|
171
171
|
|
|
172
172
|
1. ~~Build local database using sqlite3~~
|
|
173
|
-
2. ~~Script visualizations, possibly with R, graph-cli, chartsjs, PowerBI or AWS QuickSight~~
|
|
173
|
+
2. ~~Script visualizations, possibly with R, graph-cli, chartsjs, PowerBI, or AWS QuickSight~~
|
|
174
174
|
3. [Backlog health tracking](https://github.com/beauraines/sprint-tracker/issues/36)
|
|
175
175
|
4. Write API for adding data
|
|
176
176
|
5. Write API for getting visualizations
|
|
177
177
|
6. ~~Create database migrations~~
|
|
178
178
|
7. Deploy to cloud
|
|
179
179
|
8. Add sprint metrics
|
|
180
|
-
1. Average velocity over life of project
|
|
180
|
+
1. Average velocity over the life of the project
|
|
181
181
|
2. Recent average velocity
|
|
182
182
|
3. 90% confidence range. See <https://resources.scrumalliance.org/Article/its-target-forecast>
|
|
183
183
|
4. Daily points per developer
|
package/cmds/config.js
CHANGED
|
@@ -13,7 +13,7 @@ const handler = async function () {
|
|
|
13
13
|
const filename = 'sprintTracker.json'
|
|
14
14
|
const configFile = path.join(homedir(), filename)
|
|
15
15
|
|
|
16
|
-
if (helpers.fileExists(configFile)) {
|
|
16
|
+
if (await helpers.fileExists(configFile)) {
|
|
17
17
|
console.error(`Aborting. Existing configuration file ${configFile} found to not overwrite your values.`)
|
|
18
18
|
process.exit(1)
|
|
19
19
|
}
|