Skip to content
This repository has been archived by the owner on Dec 14, 2023. It is now read-only.

Release 1.3.1 #332

Merged
merged 3 commits into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
php-versions: [ '8.1' ]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -79,6 +79,6 @@ jobs:
REDIS_PORT: ${{ job.services.redis.ports['6379'] }}

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3
with:
files: ./clover.xml
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/) and this

## Unreleased

## 1.3.1 - 2023-10-06

### Added
- Laravel Sail dependency for development

### Changed
- Rename ProBIND v3 to ProBIND3
- Bump `aglipanci/laravel-pint-action` from 2.1.0 to 2.3.0
- Bump `yajra/laravel-datatables-oracle` from 10.3.1 to 10.7.0
- Bump `laravel/framework` from 10.3.3 to 10.13.0
- Bump `nunomaduro/collision` from 7.1.0 to 7.7.0
- [CI] Bump `mockery/mockery` from 1.5.1 to 1.6.4
- [CI] Bump `laravel/pint` from 1.6.0 to 1.10.0
- [CI] Bump `phpunit/phpunit` from 10.0.15 to 10.2.6
- [CI] Bump `codecov/codecov-action` from 3 to 4
- [CI] Bump `brianium/paratest` from 7.1.0 to 7.2.7

### Removed
- Remove the PHPmyAdmin docker container


## 1.3.0 - 2023-03-11

> NOTE: This release has **non-backwards compatible** changes. It may include some changes in the database tables.
Expand Down
34 changes: 17 additions & 17 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,28 +24,28 @@
"require": {
"php": "^8.1.0",
"badcow/dns": "^4.2.1",
"bensampo/laravel-enum": "^6.2.0",
"bensampo/laravel-enum": "^6.6.4",
"guilhermegonzaga/presenter": "^1.0.7",
"larapacks/setting": "^3.0.2",
"laravel/framework": "^10.3.2",
"laravel/ui": "^4.2.1",
"laravelcollective/html": "^6.4.0",
"laravel/framework": "^10.26.2",
"laravel/ui": "^4.2.2",
"laravelcollective/html": "^6.4.1",
"pacoorozco/openssh": "^0.5.0",
"phpseclib/phpseclib": "^3.0.19",
"spatie/laravel-activitylog": "^4.7.2",
"yajra/laravel-datatables-oracle": "^10.3.1"
"phpseclib/phpseclib": "^3.0.23",
"spatie/laravel-activitylog": "^4.7.3",
"yajra/laravel-datatables-oracle": "^10.10.0"
},
"require-dev": {
"brianium/paratest": "^7.0.6",
"doctrine/dbal": "^3.5.1",
"fakerphp/faker": "^1.21.0",
"laravel/pint": "^1.6.0",
"laravel/sail": "^1.21",
"mockery/mockery": "^1.5.1",
"nunomaduro/collision": "^v7.1.0",
"nunomaduro/larastan": "^2.4.1",
"phpunit/phpunit": "^10.0.14",
"spatie/laravel-ignition": "^2.0"
"brianium/paratest": "^7.2.9",
"doctrine/dbal": "^3.7.0",
"fakerphp/faker": "^1.23.0",
"laravel/pint": "^1.13.2",
"laravel/sail": "^1.25.0",
"mockery/mockery": "^1.6.6",
"nunomaduro/collision": "^v7.9.0",
"nunomaduro/larastan": "^2.6.4",
"phpunit/phpunit": "^10.4.0",
"spatie/laravel-ignition": "^2.3.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading