Updated cors and configuration
This commit is contained in:
parent
510594d96e
commit
e409e19563
6 changed files with 59 additions and 13 deletions
|
@ -1,3 +0,0 @@
|
||||||
# Angel3 CLI
|
|
||||||
|
|
||||||
Moved to [`Angel3 CLI Repository`](https://github.com/dukefirehawk/angel3-cli)
|
|
|
@ -1,5 +1,13 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 6.0.0
|
||||||
|
|
||||||
|
* Updated to min SDK 2.15.x
|
||||||
|
|
||||||
|
## 5.0.0
|
||||||
|
|
||||||
|
* No release. Skipped
|
||||||
|
|
||||||
## 4.1.0
|
## 4.1.0
|
||||||
|
|
||||||
* Updated to use `package:belatuk_merge_map`
|
* Updated to use `package:belatuk_merge_map`
|
||||||
|
|
|
@ -21,7 +21,7 @@ In `pubspec.yaml`:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
dependencies:
|
dependencies:
|
||||||
angel3_configuration: ^3.0.0
|
angel3_configuration: ^6.0.0
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
name: angel3_configuration
|
name: angel3_configuration
|
||||||
version: 4.1.0
|
version: 6.0.0
|
||||||
description: Automatic YAML application configuration loader for Angel 3, with .env support.
|
description: Automatic YAML application configuration loader for Angel 3, with .env support.
|
||||||
homepage: https://angel3-framework.web.app/
|
homepage: https://angel3-framework.web.app/
|
||||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/configuration
|
repository: https://github.com/dukefirehawk/angel/tree/master/packages/configuration
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=2.12.0 <3.0.0'
|
sdk: '>=2.15.0 <3.0.0'
|
||||||
dependencies:
|
dependencies:
|
||||||
angel3_framework: ^4.2.0
|
angel3_framework: ^6.0.0
|
||||||
belatuk_merge_map: ^3.0.0
|
belatuk_merge_map: ^3.0.0
|
||||||
dotenv: ^3.0.0
|
dotenv: ^3.0.0
|
||||||
file: ^6.1.0
|
file: ^6.1.0
|
||||||
|
@ -17,6 +17,16 @@ dev_dependencies:
|
||||||
lints: ^1.0.0
|
lints: ^1.0.0
|
||||||
belatuk_pretty_logging: ^4.0.0
|
belatuk_pretty_logging: ^4.0.0
|
||||||
test: ^1.17.5
|
test: ^1.17.5
|
||||||
#dependency_overrides:
|
dependency_overrides:
|
||||||
# angel3_framework:
|
angel3_container:
|
||||||
# path: ../framework
|
path: ../container/angel_container
|
||||||
|
angel3_framework:
|
||||||
|
path: ../framework
|
||||||
|
angel3_http_exception:
|
||||||
|
path: ../http_exception
|
||||||
|
angel3_model:
|
||||||
|
path: ../model
|
||||||
|
angel3_route:
|
||||||
|
path: ../route
|
||||||
|
angel3_mock_request:
|
||||||
|
path: ../mock_request
|
|
@ -1,5 +1,13 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 6.0.0
|
||||||
|
|
||||||
|
* Updated to min SDK 2.15.x
|
||||||
|
|
||||||
|
## 5.0.0
|
||||||
|
|
||||||
|
* No release. Skipped
|
||||||
|
|
||||||
## 4.1.0
|
## 4.1.0
|
||||||
|
|
||||||
* Upgraded to `lints` linter
|
* Upgraded to `lints` linter
|
||||||
|
|
|
@ -1,14 +1,37 @@
|
||||||
name: angel3_cors
|
name: angel3_cors
|
||||||
version: 4.1.0
|
version: 6.0.0
|
||||||
description: Angel3 CORS middleware. Ported from expressjs/cors to Angel3 framework.
|
description: Angel3 CORS middleware. Ported from expressjs/cors to Angel3 framework.
|
||||||
homepage: https://angel3-framework.web.app/
|
homepage: https://angel3-framework.web.app/
|
||||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/cors
|
repository: https://github.com/dukefirehawk/angel/tree/master/packages/cors
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=2.12.0 <3.0.0'
|
sdk: '>=2.12.0 <3.0.0'
|
||||||
dependencies:
|
dependencies:
|
||||||
angel3_framework: ^4.2.0
|
angel3_framework: ^6.0.0
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
angel3_test: ^4.0.0
|
angel3_test: ^6.0.0
|
||||||
http: ^0.13.3
|
http: ^0.13.3
|
||||||
lints: ^1.0.0
|
lints: ^1.0.0
|
||||||
test: ^1.17.5
|
test: ^1.17.5
|
||||||
|
dependency_overrides:
|
||||||
|
angel3_container:
|
||||||
|
path: ../container/angel_container
|
||||||
|
angel3_framework:
|
||||||
|
path: ../framework
|
||||||
|
angel3_http_exception:
|
||||||
|
path: ../http_exception
|
||||||
|
angel3_model:
|
||||||
|
path: ../model
|
||||||
|
angel3_route:
|
||||||
|
path: ../route
|
||||||
|
angel3_mock_request:
|
||||||
|
path: ../mock_request
|
||||||
|
angel3_auth:
|
||||||
|
path: ../auth
|
||||||
|
angel3_client:
|
||||||
|
path: ../client
|
||||||
|
angel3_websocket:
|
||||||
|
path: ../websocket
|
||||||
|
angel3_validate:
|
||||||
|
path: ../validate
|
||||||
|
angel3_test:
|
||||||
|
path: ../test
|
||||||
|
|
Loading…
Reference in a new issue