Skip to content

Commit 9ae9bcc

Browse files
committed
wip
1 parent f54ad26 commit 9ae9bcc

File tree

1 file changed

+35
-25
lines changed

1 file changed

+35
-25
lines changed

INTERNAL_CHANGES_GUIDE.md

Lines changed: 35 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ Authoritative, replayable guide for changes between the base commit and the curr
44

55
### Scope
66
- **Base commit (from):** f68f05d1aae30647f694c941597edc373561d50d
7-
- **Current commit (to):** 324a12ffada544ce08be361c76534e75ce781a25
7+
- **Current commit (to):** 46e97e82481d57d67ea9a6a512cac974ea6598c7
88
- **Current branch:** feature-relaunch
9-
- **Uncommitted changes at capture time:** none
9+
- **Uncommitted changes at capture time:** reflected in patch
1010
- **Patch file (binary-safe):** `INTERNAL_CHANGES_GUIDE.patch`
11-
- **Patch SHA256:** f780ccdef9900eee8db7dade5252efb5ff911cd76bf3d3c0fa9389a328642592
11+
- **Patch SHA256:** 4f286c4ee00a4202202d16d455f730d0707d3bbc7fa96ef6db870cbbce34c9cf
1212

1313
### Replay: Quick Start
1414
1) Ensure a clean working tree.
@@ -22,7 +22,7 @@ git checkout f68f05d1aae30647f694c941597edc373561d50d
2222
3) Verify patch integrity.
2323
```bash
2424
shasum -a 256 INTERNAL_CHANGES_GUIDE.patch
25-
# must equal: f780ccdef9900eee8db7dade5252efb5ff911cd76bf3d3c0fa9389a328642592
25+
# must equal: 4f286c4ee00a4202202d16d455f730d0707d3bbc7fa96ef6db870cbbce34c9cf
2626
```
2727
4) Apply changes.
2828
```bash
@@ -102,13 +102,14 @@ M .github/workflows/playwright.yml
102102
D CODE_OF_CONDUCT.md
103103
D CONTRIBUTING.md
104104
A INTERNAL_CHANGES_GUIDE.md
105+
A INTERNAL_CHANGES_GUIDE.patch
105106
D LICENSE.md
106107
D SECURITY.md
108+
M app/Actions/Jetstream/AddOrganizationMember.php
109+
M app/Actions/Jetstream/UpdateOrganization.php
107110
M app/Http/Controllers/Api/V1/ClientController.php
108111
M app/Http/Controllers/Api/V1/ProjectController.php
109112
M app/Http/Middleware/ShareInertiaData.php
110-
M app/Actions/Jetstream/AddOrganizationMember.php
111-
M app/Actions/Jetstream/UpdateOrganization.php
112113
M composer.json
113114
M composer.lock
114115
M config/database.php
@@ -133,6 +134,8 @@ D docker/prod/deployment/supervisord.scheduler.conf
133134
D docker/prod/deployment/supervisord.worker.conf
134135
M e2e/clients.spec.ts
135136
M e2e/projects.spec.ts
137+
M e2e/tasks.spec.ts
138+
M e2e/timetracker.spec.ts
136139
M package-lock.json
137140
M resources/js/Components/Common/Client/ClientMoreOptionsDropdown.vue
138141
M resources/js/Components/Common/Client/ClientTable.vue
@@ -155,6 +158,8 @@ M resources/js/Pages/Projects.vue
155158
M resources/js/utils/useClients.ts
156159
M resources/js/utils/useProjects.ts
157160
M resources/js/utils/useReporting.ts
161+
M tests/Unit/Endpoint/Api/V1/ClientEndpointTest.php
162+
M tests/Unit/Endpoint/Api/V1/ProjectEndpointTest.php
158163
M vite-module-loader.js
159164
```
160165

@@ -172,17 +177,18 @@ Numbers are: [insertions] [deletions] [path]
172177
1 1 .github/workflows/npm-typecheck.yml
173178
1 1 .github/workflows/phpstan.yml
174179
1 1 .github/workflows/phpunit.yml
175-
1 1 .github/workflows/playwright.yml
180+
7 3 .github/workflows/playwright.yml
176181
0 42 CODE_OF_CONDUCT.md
177182
0 81 CONTRIBUTING.md
178-
596 0 INTERNAL_CHANGES_GUIDE.md
183+
305 0 INTERNAL_CHANGES_GUIDE.md
184+
12072 0 INTERNAL_CHANGES_GUIDE.patch
179185
0 651 LICENSE.md
180186
0 5 SECURITY.md
187+
1 1 app/Actions/Jetstream/AddOrganizationMember.php
188+
1 1 app/Actions/Jetstream/UpdateOrganization.php
181189
3 8 app/Http/Controllers/Api/V1/ClientController.php
182190
4 20 app/Http/Controllers/Api/V1/ProjectController.php
183-
44 3 app/Http/Middleware/ShareInertiaData.php
184-
1 0 app/Actions/Jetstream/AddOrganizationMember.php
185-
1 0 app/Actions/Jetstream/UpdateOrganization.php
191+
42 3 app/Http/Middleware/ShareInertiaData.php
186192
4 1 composer.json
187193
398 337 composer.lock
188194
6 1 config/database.php
@@ -205,30 +211,34 @@ Numbers are: [insertions] [deletions] [path]
205211
0 14 docker/prod/deployment/supervisord.reverb.conf
206212
0 26 docker/prod/deployment/supervisord.scheduler.conf
207213
0 13 docker/prod/deployment/supervisord.worker.conf
208-
5 11 e2e/clients.spec.ts
209-
5 11 e2e/projects.spec.ts
214+
7 11 e2e/clients.spec.ts
215+
13 17 e2e/projects.spec.ts
216+
4 10 e2e/tasks.spec.ts
217+
2 2 e2e/timetracker.spec.ts
210218
923 1310 package-lock.json
211-
1 9 resources/js/Components/Common/Client/ClientMoreOptionsDropdown.vue
212-
10 6 resources/js/Components/Common/Client/ClientTable.vue
213-
3 6 resources/js/Components/Common/Client/ClientTableHeading.vue
214-
9 17 resources/js/Components/Common/Client/ClientTableRow.vue
219+
3 11 resources/js/Components/Common/Client/ClientMoreOptionsDropdown.vue
220+
7 3 resources/js/Components/Common/Client/ClientTable.vue
221+
3 4 resources/js/Components/Common/Client/ClientTableHeading.vue
222+
9 18 resources/js/Components/Common/Client/ClientTableRow.vue
215223
3 3 resources/js/Components/Common/Project/ProjectDropdown.vue
216224
2 2 resources/js/Components/Common/Project/ProjectEditModal.vue
217-
1 9 resources/js/Components/Common/Project/ProjectMoreOptionsDropdown.vue
225+
3 11 resources/js/Components/Common/Project/ProjectMoreOptionsDropdown.vue
218226
15 3 resources/js/Components/Common/Project/ProjectTable.vue
219-
2 8 resources/js/Components/Common/Project/ProjectTableHeading.vue
220-
6 17 resources/js/Components/Common/Project/ProjectTableRow.vue
221-
2 1 resources/js/Components/Common/Reporting/ReportingOverview.vue
227+
2 6 resources/js/Components/Common/Project/ProjectTableHeading.vue
228+
7 19 resources/js/Components/Common/Project/ProjectTableRow.vue
229+
3 1 resources/js/Components/Common/Reporting/ReportingOverview.vue
222230
2 1 resources/js/Components/Dashboard/RecentlyTrackedTasksCardEntry.vue
223231
3 1 resources/js/Components/NavigationSidebarItem.vue
224-
5 1 resources/js/Components/NavigationSidebarLink.vue
225-
2 0 resources/js/Layouts/AppLayout.vue
226-
29 4 resources/js/Pages/Clients.vue
232+
7 1 resources/js/Components/NavigationSidebarLink.vue
233+
4 0 resources/js/Layouts/AppLayout.vue
234+
32 4 resources/js/Pages/Clients.vue
227235
2 2 resources/js/Pages/ProjectShow.vue
228236
38 7 resources/js/Pages/Projects.vue
229237
2 18 resources/js/utils/useClients.ts
230238
1 18 resources/js/utils/useProjects.ts
231239
3 2 resources/js/utils/useReporting.ts
240+
12 9 tests/Unit/Endpoint/Api/V1/ClientEndpointTest.php
241+
14 15 tests/Unit/Endpoint/Api/V1/ProjectEndpointTest.php
232242
20 5 vite-module-loader.js
233243
```
234244

@@ -288,7 +298,7 @@ npx playwright test
288298

289299
### Commit Context
290300
```text
291-
324a12f (HEAD -> feature-relaunch, origin/feature-relaunch) wip
301+
46e97e8 (HEAD -> feature-relaunch) latest changes including API adjustments and CI tweaks
292302
```
293303

294304
### Notes and Caveats

0 commit comments

Comments
 (0)