From aa59b00074080880a44c9b6e7e390198b9eaa02b Mon Sep 17 00:00:00 2001 From: sunaoka Date: Thu, 30 Mar 2023 14:14:36 +0900 Subject: [PATCH 1/3] Update GitHub Actions --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d36dfd3..28f07ec 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: name: PHP ${{ matrix.php }} steps: - - name: Setup PHP ${{ matrix.php-version }} + - name: Setup PHP ${{ matrix.php }} uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} From e8b5b050a01be4e0659a661a0dc55143bd8b9744 Mon Sep 17 00:00:00 2001 From: sunaoka Date: Tue, 8 Aug 2023 17:57:36 +0900 Subject: [PATCH 2/3] Added tests for PHP 8.3. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 28f07ec..e430a77 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: php: [ '5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', - '8.0', '8.1', '8.2' + '8.0', '8.1', '8.2', '8.3' ] name: PHP ${{ matrix.php }} From 3776d028faf6961c5db1f18c6b709a66e6b2b7c6 Mon Sep 17 00:00:00 2001 From: sunaoka Date: Sun, 10 Sep 2023 00:43:17 +0000 Subject: [PATCH 3/3] Update Error Code --- src/PostgresError.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/PostgresError.php b/src/PostgresError.php index 4de9c43..7bf5661 100644 --- a/src/PostgresError.php +++ b/src/PostgresError.php @@ -302,9 +302,6 @@ class PostgresError const UNDEFINED_FILE = '58P01'; const DUPLICATE_FILE = '58P02'; - // Class 72 - Snapshot Failure - const SNAPSHOT_TOO_OLD = '72000'; - // Class F0 - Configuration File Error const CONFIG_FILE_ERROR = 'F0000'; const LOCK_FILE_EXISTS = 'F0001';