github-issue-tower-defence-management 1.99.1 → 1.100.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/.github/workflows/umino-project.yml +1 -3
- package/CHANGELOG.md +7 -0
- package/bin/adapter/entry-points/console/ui-dist/assets/{index-D79mM9lz.js → index-poCP-zfO.js} +39 -39
- package/bin/adapter/entry-points/console/ui-dist/index.html +1 -1
- package/package.json +1 -1
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleNavigation.test.ts +87 -5
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleNavigation.ts +21 -4
- package/src/adapter/entry-points/console/ui/src/features/console/logic/tabAdvance.test.ts +33 -1
- package/src/adapter/entry-points/console/ui/src/features/console/logic/tabAdvance.ts +11 -0
- package/src/adapter/entry-points/console/ui/src/features/console/pages/ConsolePage.tsx +9 -8
- package/src/adapter/entry-points/console/ui-dist/assets/{index-D79mM9lz.js → index-poCP-zfO.js} +39 -39
- package/src/adapter/entry-points/console/ui-dist/index.html +1 -1
|
@@ -51,7 +51,6 @@ jobs:
|
|
|
51
51
|
umino-job:
|
|
52
52
|
if: >-
|
|
53
53
|
github.actor != 'dependabot[bot]' &&
|
|
54
|
-
github.actor != 'renovate[bot]' &&
|
|
55
54
|
((github.event_name != 'issue_comment') ||
|
|
56
55
|
(github.event.comment.user.login == 'HiromiShikata' &&
|
|
57
56
|
(contains(github.event.comment.body, '/createissue') ||
|
|
@@ -278,8 +277,7 @@ jobs:
|
|
|
278
277
|
name: Check linked issues in pull requests
|
|
279
278
|
if: >-
|
|
280
279
|
(github.event_name == 'pull_request') &&
|
|
281
|
-
github.actor != 'dependabot[bot]'
|
|
282
|
-
github.actor != 'renovate[bot]'
|
|
280
|
+
github.actor != 'dependabot[bot]'
|
|
283
281
|
steps:
|
|
284
282
|
- uses: step-security/harden-runner@v2
|
|
285
283
|
with:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.100.0](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/compare/v1.99.1...v1.100.0) (2026-06-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **console:** default project route lands on the left-most non-empty tab ([#945](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/issues/945)) ([c91f2e1](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/commit/c91f2e112bddb32f913660dd1ecb40e39b2e6b13))
|
|
7
|
+
|
|
1
8
|
## [1.99.1](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/compare/v1.99.0...v1.99.1) (2026-06-25)
|
|
2
9
|
|
|
3
10
|
|