@@ -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
14141 ) Ensure a clean working tree.
@@ -22,7 +22,7 @@ git checkout f68f05d1aae30647f694c941597edc373561d50d
22223 ) Verify patch integrity.
2323 ``` bash
2424shasum -a 256 INTERNAL_CHANGES_GUIDE.patch
25- # must equal: f780ccdef9900eee8db7dade5252efb5ff911cd76bf3d3c0fa9389a328642592
25+ # must equal: 4f286c4ee00a4202202d16d455f730d0707d3bbc7fa96ef6db870cbbce34c9cf
2626 ```
27274 ) Apply changes.
2828 ``` bash
@@ -102,13 +102,14 @@ M .github/workflows/playwright.yml
102102D CODE_OF_CONDUCT.md
103103D CONTRIBUTING.md
104104A INTERNAL_CHANGES_GUIDE.md
105+ A INTERNAL_CHANGES_GUIDE.patch
105106D LICENSE.md
106107D SECURITY.md
108+ M app/Actions/Jetstream/AddOrganizationMember.php
109+ M app/Actions/Jetstream/UpdateOrganization.php
107110M app/Http/Controllers/Api/V1/ClientController.php
108111M app/Http/Controllers/Api/V1/ProjectController.php
109112M app/Http/Middleware/ShareInertiaData.php
110- M app/Actions/Jetstream/AddOrganizationMember.php
111- M app/Actions/Jetstream/UpdateOrganization.php
112113M composer.json
113114M composer.lock
114115M config/database.php
@@ -133,6 +134,8 @@ D docker/prod/deployment/supervisord.scheduler.conf
133134D docker/prod/deployment/supervisord.worker.conf
134135M e2e/clients.spec.ts
135136M e2e/projects.spec.ts
137+ M e2e/tasks.spec.ts
138+ M e2e/timetracker.spec.ts
136139M package-lock.json
137140M resources/js/Components/Common/Client/ClientMoreOptionsDropdown.vue
138141M resources/js/Components/Common/Client/ClientTable.vue
@@ -155,6 +158,8 @@ M resources/js/Pages/Projects.vue
155158M resources/js/utils/useClients.ts
156159M resources/js/utils/useProjects.ts
157160M resources/js/utils/useReporting.ts
161+ M tests/Unit/Endpoint/Api/V1/ClientEndpointTest.php
162+ M tests/Unit/Endpoint/Api/V1/ProjectEndpointTest.php
158163M vite-module-loader.js
159164```
160165
@@ -172,17 +177,18 @@ Numbers are: [insertions] [deletions] [path]
1721771 1 .github/workflows/npm-typecheck.yml
1731781 1 .github/workflows/phpstan.yml
1741791 1 .github/workflows/phpunit.yml
175- 1 1 .github/workflows/playwright.yml
180+ 7 3 .github/workflows/playwright.yml
1761810 42 CODE_OF_CONDUCT.md
1771820 81 CONTRIBUTING.md
178- 596 0 INTERNAL_CHANGES_GUIDE.md
183+ 305 0 INTERNAL_CHANGES_GUIDE.md
184+ 12072 0 INTERNAL_CHANGES_GUIDE.patch
1791850 651 LICENSE.md
1801860 5 SECURITY.md
187+ 1 1 app/Actions/Jetstream/AddOrganizationMember.php
188+ 1 1 app/Actions/Jetstream/UpdateOrganization.php
1811893 8 app/Http/Controllers/Api/V1/ClientController.php
1821904 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
1861924 1 composer.json
187193398 337 composer.lock
1881946 1 config/database.php
@@ -205,30 +211,34 @@ Numbers are: [insertions] [deletions] [path]
2052110 14 docker/prod/deployment/supervisord.reverb.conf
2062120 26 docker/prod/deployment/supervisord.scheduler.conf
2072130 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
210218923 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
2152233 3 resources/js/Components/Common/Project/ProjectDropdown.vue
2162242 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
21822615 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
2222302 1 resources/js/Components/Dashboard/RecentlyTrackedTasksCardEntry.vue
2232313 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
2272352 2 resources/js/Pages/ProjectShow.vue
22823638 7 resources/js/Pages/Projects.vue
2292372 18 resources/js/utils/useClients.ts
2302381 18 resources/js/utils/useProjects.ts
2312393 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
23224220 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