Skip to content

Commit b0ce06e

Browse files
bryannielsengithub-actions[bot]
authored andcommitted
Prepare Release 0.0.2
1 parent fa49b98 commit b0ce06e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+38
-106
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Changelog
22

3-
## [Unreleased]
3+
## [0.0.2] - 2023-01-06
44

55
### Added
66

77
- Changelog with automated release process
8+
89
### Fixed
910

1011
- Filesystem errors on some Windows environments when running coilpack install command
@@ -20,4 +21,8 @@
2021

2122
### Added
2223

23-
- Initial Beta Release
24+
- Initial Beta Release
25+
26+
[0.0.2]: https://github.com/ExpressionEngine/Coilpack/compare/0.0.1...0.0.2
27+
28+
[0.0.1]: https://github.com/ExpressionEngine/Coilpack/releases/tag/0.0.1

config/coilpack.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@
3434
*/
3535
'expressionengine' => [
3636

37-
]
37+
],
3838
];

config/graphql.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
// The controller/method to use in GraphQL request.
1111
// Also supported array syntax: `[\Rebing\GraphQL\GraphQLController::class, 'query']`
12-
'controller' => \Rebing\GraphQL\GraphQLController::class . '@query',
12+
'controller' => \Rebing\GraphQL\GraphQLController::class.'@query',
1313

1414
// Any middleware for the graphql route group
1515
// This middleware will apply to all schemas
@@ -151,7 +151,7 @@
151151
*/
152152
'graphiql' => [
153153
'prefix' => 'graphiql', // Do NOT use a leading slash
154-
'controller' => \Rebing\GraphQL\GraphQLController::class . '@graphiql',
154+
'controller' => \Rebing\GraphQL\GraphQLController::class.'@graphiql',
155155
'middleware' => [],
156156
'view' => 'graphql::graphiql',
157157
'display' => env('ENABLE_GRAPHIQL', true),
@@ -203,7 +203,7 @@
203203
'cache_driver' => env('GRAPHQL_APQ_CACHE_DRIVER', config('cache.default')),
204204

205205
// The cache prefix
206-
'cache_prefix' => config('cache.prefix') . ':graphql.apq',
206+
'cache_prefix' => config('cache.prefix').':graphql.apq',
207207

208208
// The cache ttl in seconds - See https://www.apollographql.com/docs/apollo-server/performance/apq/#adjusting-cache-time-to-live-ttl
209209
'cache_ttl' => 300,

routes/web.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
// Recreate Route::fallback() but support ANY method not just GET
2020
$placeholder = 'fallbackPlaceholder';
2121
Route::any("{{$placeholder}}", [Expressionengine\Coilpack\Controllers\FallbackController::class, 'index'])->where($placeholder, '.*')->fallback();
22-
// Route::fallback([Expressionengine\Coilpack\Controllers\FallbackController::class, 'index']);
22+
// Route::fallback([Expressionengine\Coilpack\Controllers\FallbackController::class, 'index']);

src/Fieldtypes/FluidField.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
class FluidField extends Fieldtype
1212
{
13-
1413
public function apply(FieldContent $content, array $parameters = [])
1514
{
1615
$data = $this->loadData($content);

tests/Fieldtype/CheckboxesTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
class CheckboxesTest extends TestCase
99
{
10-
1110
public function test_checkboxes()
1211
{
1312
$entry = ChannelEntry::where('title', 'Test Fieldtypes')->first();
@@ -16,7 +15,7 @@ public function test_checkboxes()
1615

1716
$this->assertEquals([
1817
'One',
19-
'Three'
18+
'Three',
2019
], $output->toArray());
2120

2221
$this->assertEquals('One, Three', (string) $output);

tests/Fieldtype/ColorpickerTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
class ColorpickerTest extends TestCase
99
{
10-
1110
public function test_colorpicker()
1211
{
1312
$entry = ChannelEntry::where('title', 'Test Fieldtypes')->first();

tests/Fieldtype/DateTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
class DateTest extends TestCase
99
{
10-
1110
public function test_date()
1211
{
1312
$entry = ChannelEntry::where('title', 'Test Fieldtypes')->first();

tests/Fieldtype/DurationTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
class DurationTest extends TestCase
99
{
10-
1110
public function test_duration()
1211
{
1312
$entry = ChannelEntry::where('title', 'Test Fieldtypes')->first();

tests/Fieldtype/EmailTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
class EmailTest extends TestCase
99
{
10-
1110
public function test_email()
1211
{
1312
$entry = ChannelEntry::where('title', 'Test Fieldtypes')->first();
@@ -23,5 +22,4 @@ public function test_email_mailto_modifier()
2322
$output = $entry->test_email->mailto(['title' => 'Test', 'subject' => 'Testing', 'encode' => false]);
2423
$this->assertEquals('<a href="mailto:test@example.com?subject=Testing">Test</a>', (string) $output);
2524
}
26-
2725
}

0 commit comments

Comments
 (0)