diff --git a/CHANGELOG.md b/CHANGELOG.md index 663e48a..68f8f22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,13 @@ # CHANGELOG -## Next Release +## v0.9.2 (2023-09-02) - Fixes bugs where the request wasn't set correctly for parcels. users, or search - Fixes the input of creating a parcel from strings to numbers - Fixes the return types of various functions so 500s aren't thrown at runtime - Fixes a bug where an invalid ID passed to search would throw a 500 instead of returning an error to the user - Fixes a bug when creating a shipment where the variable `shipment` wasn't set -- Temporarily downgrade to PHP 8.1 in Dockerfile +- Fixes various bugs related to setup (names, version pins, etc) ## v0.9.1 (2023-02-24) diff --git a/Dockerfile b/Dockerfile index 88c2f2a..7110e48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM justintime50/nginx-php:8.2-16 +FROM justintime50/nginx-php:8.2-17 ARG PROD diff --git a/src/.env-example b/src/.env-example index 16dabe0..e790cbe 100644 --- a/src/.env-example +++ b/src/.env-example @@ -7,7 +7,7 @@ APP_URL=http://easyposttools.localhost LOG_CHANNEL=daily DB_CONNECTION=mysql -DB_HOST=easypost-tools-db +DB_HOST=easypost-tools-ui-db DB_PORT=3306 DB_DATABASE=easypost_tools DB_USERNAME=easypost_tools diff --git a/src/database/seeders/DatabaseSeeder.php b/src/database/seeders/DatabaseSeeder.php index bf08078..0f6f083 100644 --- a/src/database/seeders/DatabaseSeeder.php +++ b/src/database/seeders/DatabaseSeeder.php @@ -14,7 +14,7 @@ class DatabaseSeeder extends Seeder public function run() { $this->call([ - UserSeeder::class, + // UserSeeder::class, ]); } } diff --git a/src/justfile b/src/justfile index add9e9a..b639c67 100644 --- a/src/justfile +++ b/src/justfile @@ -69,7 +69,7 @@ seed: # Sets up and spins up the project for the first time setup: #!/usr/bin/env bash - bash <(curl -s https://gist.githubusercontent.com/Justintime50/2de9303a491c22627ee502aaa7b1f289/raw/) easypost-tools-ui easypost-tools-ui has_database + bash <(curl -s https://gist.githubusercontent.com/Justintime50/2de9303a491c22627ee502aaa7b1f289/raw) easypost-tools-ui easypost-tools-ui has_database # Tests the project test: