Skip to content

Commit

Permalink
Merge branch '3.x' into add-post-socialite-hook
Browse files Browse the repository at this point in the history
  • Loading branch information
josh48202 authored Mar 21, 2024
2 parents a4d8a8b + ca00f84 commit eddc8a1
Show file tree
Hide file tree
Showing 10 changed files with 146 additions and 164 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fix-php-code-styling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
ref: ${{ github.head_ref }}

- name: Fix PHP code style issues
uses: aglipanci/laravel-pint-action@2.3.0
uses: aglipanci/laravel-pint-action@2.3.1

- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
coverage: none

- name: Install composer dependencies
uses: ramsey/composer-install@v2
uses: ramsey/composer-install@v3

- name: Run PHPStan
run: ./vendor/bin/phpstan --error-format=github
11 changes: 8 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,19 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.2, 8.1]
laravel: [10.*]
# os: [ubuntu-latest, windows-latest]
# php: [8.3, 8.2, 8.1]
os: [ ubuntu-latest ]
php: [ 8.3, 8.2 ]
laravel: [10.*, 11.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
carbon: ^2.63
- laravel: 11.*
testbench: 9.*
carbon: ^2.63

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ phpunit.xml
phpstan.neon
testbench.yaml
vendor
/.phpunit.cache
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,49 @@ All notable changes to `socialment` will be documented in this file.
> [!NOTE]
Due to an issue in the workflow that generates this changelog, the first two entries were manually added.

## v3.6.1 - 2024-03-20

### What's Changed

* 🔧 fix(icons): Exchanged FA Pro icon for a free version by @chrisreedio in https://github.com/chrisreedio/socialment/pull/49

**Full Changelog**: https://github.com/chrisreedio/socialment/compare/v3.6.0...v3.6.1

## v3.6.0 - 2024-03-15

### What's Changed

* Allow for custom 'me' SPA response by @chrisreedio in https://github.com/chrisreedio/socialment/pull/47
* Narrowed test matrix for CI runs by @chrisreedio in https://github.com/chrisreedio/socialment/pull/46

**Full Changelog**: https://github.com/chrisreedio/socialment/compare/v3.5.0...v3.6.0

## v3.5.0 - 2024-03-12

### SPA Support

This feature is still experimental and a work in progress. Use at your own risk.

### Configuration Deprecations

Support for configuring providers via the configuration file has been deprecated in favor of the configuring the providers via the panel provider.

Configuring options at the panel level allows for far better multi-panel support among many other improvements.

### Laravel 11 Support

This package should now work with Laravel 11 projects! 🚀

### What's Changed

* Save Previous Panel URL for after Login by @chrisreedio in https://github.com/chrisreedio/socialment/pull/34
* Bump aglipanci/laravel-pint-action from 2.3.0 to 2.3.1 by @dependabot in https://github.com/chrisreedio/socialment/pull/39
* Bump ramsey/composer-install from 2 to 3 by @dependabot in https://github.com/chrisreedio/socialment/pull/41
* SPA Documentation Improvements by @chrisreedio in https://github.com/chrisreedio/socialment/pull/44
* Laravel 11 Support by @chrisreedio in https://github.com/chrisreedio/socialment/pull/45

**Full Changelog**: https://github.com/chrisreedio/socialment/compare/v3.4.1...v3.5.0

## v3.4.1 - 2023-11-16

### What's Changed
Expand Down
Loading

0 comments on commit eddc8a1

Please sign in to comment.