Skip to content

Commit

Permalink
fix: various bugs tied to setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Sep 5, 2023
1 parent a4b3dd0 commit 01e0a7e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM justintime50/nginx-php:8.2-16
FROM justintime50/nginx-php:8.2-17

ARG PROD

Expand Down
2 changes: 1 addition & 1 deletion src/.env-example
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/database/seeders/DatabaseSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class DatabaseSeeder extends Seeder
public function run()
{
$this->call([
UserSeeder::class,
// UserSeeder::class,
]);
}
}
2 changes: 1 addition & 1 deletion src/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 01e0a7e

Please sign in to comment.