Skip to content

Commit

Permalink
version bump and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee Hicks committed Dec 28, 2017
1 parent 41bec13 commit 55e0e4b
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 1,082 deletions.
2 changes: 1 addition & 1 deletion .dreamfactory.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* DreamFactory(tm) Core <http://github.com/dreamfactorysoftware/df-core>
* Copyright 2012-2017 DreamFactory Software, Inc. <[email protected]>
* Copyright 2012-2018 DreamFactory Software, Inc. <[email protected]>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.14.0] - 2017-12-28
### Added
- DF-1251 Added alternative means (external db) of authentication
- New ServiceManager methods and test cases for retrieving service names by service type or group
- Added helper function and pub-sub interface
- Added package discovery
- Added schema retrieval to some internal types to aid in automatic document generation
### Fixed
- DF-1259 Correct OAS3 handling of comma-delimited URL query parameters
Expand All @@ -32,7 +35,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Moved service request logging into service handling area so all paths to services are logged
- DF-1150 Update copyright and support email
- Cleanup and simplify routing
- Updated test cases, .gitignore, dependencies
- Updated test cases, .gitignore, and dependencies
- Updated homestead config to support --dev option
- Cleanup facade usage and documentation
- Catch invalid service type in access check
Expand All @@ -57,7 +60,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Upgraded Swagger to OpenAPI 3.0 specification
- DF-1233, DF-1246 Tailor system/environment call for various authentication levels
- Updated homestead configuration
- Updated unit testcases
- Updated unit test cases
- Sort system/service_type by name
### Fixed
- Correcting role access view of api/v2 service listing
Expand Down Expand Up @@ -615,7 +618,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## 0.1.0 - 2015-10-24
First official release working with the new [dreamfactory](https://github.com/dreamfactorysoftware/dreamfactory) project.

[Unreleased]: https://github.com/dreamfactorysoftware/df-core/compare/0.13.1...HEAD
[Unreleased]: https://github.com/dreamfactorysoftware/df-core/compare/0.14.0...HEAD
[0.14.0]: https://github.com/dreamfactorysoftware/df-core/compare/0.13.1...0.14.0
[0.13.1]: https://github.com/dreamfactorysoftware/df-core/compare/0.13.0...0.13.1
[0.13.0]: https://github.com/dreamfactorysoftware/df-core/compare/0.12.3...0.13.0
[0.12.3]: https://github.com/dreamfactorysoftware/df-core/compare/0.12.2...0.12.3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ For more information, see the [full platform repository](https://github.com/drea
Edit your project’s composer.json to require the following package.

“require”:{
"dreamfactory/df-core": "~0.13.0"
"dreamfactory/df-core": "~0.14.0"
}

Save your composer.json and do a "composer update" to install the package.
Expand Down
8 changes: 7 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/dreamfactorysoftware/df-core",
"issues": "https://github.com/dreamfactorysoftware/df-core/issues",
"wiki": "https://wiki.dreamfactory.com"
},
"require": {
"php": ">=7.0.0",
"barryvdh/laravel-cors": "~0.10.0",
Expand All @@ -50,7 +56,7 @@
},
"extra": {
"branch-alias": {
"dev-develop": "0.13.x-dev"
"dev-develop": "0.14.x-dev"
},
"laravel": {
"providers": [
Expand Down
1 change: 0 additions & 1 deletion src/Testing/FileServiceTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace DreamFactory\Core\Testing;

use DreamFactory\Core\Enums\Verbs;
use DreamFactory\Core\Enums\HttpStatusCodes;

abstract class FileServiceTestCase extends TestCase
{
Expand Down
Loading

0 comments on commit 55e0e4b

Please sign in to comment.