Skip to content

Commit

Permalink
Merge pull request #22 from doublethreedigital/statamic-3-3
Browse files Browse the repository at this point in the history
Statamic 3.3
  • Loading branch information
duncanmcclean authored Feb 26, 2022
2 parents b77404b + 4b54b28 commit 95a05c4
Show file tree
Hide file tree
Showing 4 changed files with 1,316 additions and 744 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,21 @@ jobs:
strategy:
matrix:
php: [8.1, 8.0, 7.4]
laravel: [8.*, 7.*]
statamic: [^3.0, ^3.1, ^3.2]
laravel: [9.*, 8.*]
statamic: [^3.2, ^3.3]
os: [ubuntu-latest]
include:
- laravel: 9.*
framework: ^9.1.0
testbench: 7.*
- laravel: 8.*
framework: ^8.24.0
testbench: 6.*
- laravel: 7.*
framework: ^7.30.4
testbench: 5.*
exclude:
- laravel: 7.*
php: 8.1
- laravel: 9.*
statamic: ^3.2
- laravel: 9.*
php: 7.4

name: ${{ matrix.php }} - ${{ matrix.statamic }} - ${{ matrix.laravel }}

Expand Down
44 changes: 27 additions & 17 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

## Unreleased

## v1.2.0 (2022-02-26)

### What's new

- Statamic 3.3 support

### Breaking changes

- Dropped support for Statamic 3.0 and Statamic 3.1

## v1.1.1 (2021-12-31)

Same as [v1.1.0](https://github.com/doublethreedigital/guest-entries/releases/tag/v1.1.0)
Expand All @@ -10,75 +20,75 @@ Same as [v1.1.0](https://github.com/doublethreedigital/guest-entries/releases/ta

### What's new

* PHP 8.1 Support #21
- PHP 8.1 Support #21

## v1.0.8 (2021-10-16)

### What's new

* Guest Entries now supports multi-site #18
- Guest Entries now supports multi-site #18

### What's improved

* Improved date handling #17
- Improved date handling #17

## v1.0.7 (2021-09-27)

### What's fixe

* Fixed PSR-4 autoloading issue #11
- Fixed PSR-4 autoloading issue #11

## v1.0.6 (2021-09-24)

### What's new

* File uploads now support uploading multiple files #10
- File uploads now support uploading multiple files #10

### What's fixed

* File uploads will now include a timestamp in the saved filename #10
- File uploads will now include a timestamp in the saved filename #10

## v1.0.5 (2021-09-21)

### What's fixed

* Possibly fixed the file uploads issue experienced in #9
- Possibly fixed the file uploads issue experienced in #9

## v1.0.4 (2021-09-13)

### What's new

* A 'working copy' revision will be created on entry update if collection has revisions enabled. #4
- A 'working copy' revision will be created on entry update if collection has revisions enabled. #4

## v1.0.3 (2021-09-11)

### What's new

* File Uploads #1
- File Uploads #1

### What's fixed

* The CSRF token is no longer saved as data on entries
* Publish Dates are now saved correctly if you're using a dated collection (and you provide a date) #6
- The CSRF token is no longer saved as data on entries
- Publish Dates are now saved correctly if you're using a dated collection (and you provide a date) #6

## v1.0.2 (2021-09-06)

### What's new

* [Events](https://github.com/doublethreedigital/guest-entries#events)
* Added tag for [error handing](https://github.com/doublethreedigital/guest-entries#events) #3
- [Events](https://github.com/doublethreedigital/guest-entries#events)
- Added tag for [error handing](https://github.com/doublethreedigital/guest-entries#events) #3

## v1.0.1 (2021-09-04)

### What's new

* Entries are now unpublished by default (instead of being published straight away)
* You can now change the published state, just use an input with the name `published`
- Entries are now unpublished by default (instead of being published straight away)
- You can now change the published state, just use an input with the name `published`

### What's fixed

* The entry data passed into the update/delete tags is now raw, not augmented.
- The entry data passed into the update/delete tags is now raw, not augmented.

## v1.0.0 (2021-09-03)

* Initial release
- Initial release
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
},
"require": {
"php": "^7.4 || ^8.0 || ^8.1",
"statamic/cms": "^3.0 || ^3.1 || ^3.2"
"statamic/cms": "3.2.* || 3.3.*"
},
"require-dev": {
"nunomaduro/collision": "^4.2",
"orchestra/testbench": "^5.0|^6.0",
"nunomaduro/collision": "^4.2 || ^5.0 || ^6.1",
"orchestra/testbench": "^5.0 || ^6.0 || ^7.0",
"spatie/test-time": "^1.2"
},
"scripts": {
Expand All @@ -48,5 +48,6 @@
"composer/package-versions-deprecated": true,
"pixelfear/composer-dist-plugin": true
}
}
},
"minimum-stability": "beta"
}
Loading

0 comments on commit 95a05c4

Please sign in to comment.