File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -29,15 +29,15 @@ class Middleware
2929 public function version (Request $ request )
3030 {
3131 if (config ('app.asset_url ' )) {
32- return md5 ( config ('app.asset_url ' ));
32+ return hash ( ' xxh128 ' , config ('app.asset_url ' ));
3333 }
3434
3535 if (file_exists ($ manifest = public_path ('mix-manifest.json ' ))) {
36- return md5_file ( $ manifest );
36+ return hash_file ( ' xxh128 ' , $ manifest );
3737 }
3838
3939 if (file_exists ($ manifest = public_path ('build/manifest.json ' ))) {
40- return md5_file ( $ manifest );
40+ return hash_file ( ' xxh128 ' , $ manifest );
4141 }
4242
4343 return null ;
Original file line number Diff line number Diff line change @@ -112,15 +112,15 @@ public function test_the_version_can_be_a_closure(): void
112112 $ this ->assertSame ('' , Inertia::getVersion ());
113113
114114 Inertia::version (function () {
115- return md5 ( 'Inertia ' );
115+ return hash ( ' xxh128 ' , 'Inertia ' );
116116 });
117117
118118 return Inertia::render ('User/Edit ' );
119119 });
120120
121121 $ response = $ this ->withoutExceptionHandling ()->get ('/ ' , [
122122 'X-Inertia ' => 'true ' ,
123- 'X-Inertia-Version ' => 'b19a24ee5c287f42ee1d465dab77ab37 ' ,
123+ 'X-Inertia-Version ' => 'f445bd0a2c393a5af14fc677f59980a9 ' ,
124124 ]);
125125
126126 $ response ->assertSuccessful ();
You can’t perform that action at this time.
0 commit comments