Skip to content

Commit

Permalink
Merge pull request #132 from dukefirehawk/bug-fix/upgrade_dep
Browse files Browse the repository at this point in the history
Updated dependencies
  • Loading branch information
dukefirehawk committed Jun 23, 2024
2 parents 6e48fed + 9b164c8 commit 06855d1
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 17 deletions.
4 changes: 4 additions & 0 deletions packages/orm/angel_orm_postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 8.2.1

* Updated dependencies

## 8.2.0

* Require Dart >= 3.3
Expand Down
8 changes: 4 additions & 4 deletions packages/orm/angel_orm_postgres/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name: angel3_orm_postgres
version: 8.2.0
version: 8.2.1
description: PostgreSQL support for Angel3 ORM. Includes functionality for querying and transactions.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/orm/angel_orm_postgres
environment:
sdk: '>=3.3.0 <4.0.0'
dependencies:
angel3_orm: ^8.0.0
angel3_orm: ^8.2.0
logging: ^1.2.0
pool: ^1.5.0
postgres: ^3.0.0
dev_dependencies:
belatuk_pretty_logging: ^6.1.0
angel3_orm_generator: ^8.0.0
angel3_orm_test: ^8.0.0
angel3_orm_generator: ^8.2.0
angel3_orm_test: ^8.2.0
test: ^1.24.0
lints: ^4.0.0
#dependency_overrides:
Expand Down
4 changes: 4 additions & 0 deletions packages/orm/angel_orm_service/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 8.2.1

* Updated dependencies

## 8.2.0

* Require Dart >= 3.3
Expand Down
18 changes: 9 additions & 9 deletions packages/orm/angel_orm_service/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: angel3_orm_service
version: 8.2.0
version: 8.2.1
description: Service implementation that wraps over Angel3 ORM Query classes.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/orm/angel_orm_service
environment:
sdk: '>=3.3.0 <4.0.0'
dependencies:
angel3_framework: ^8.0.0
angel3_orm: ^8.0.0
postgres: ^2.4.0
angel3_framework: ^8.4.0
angel3_orm: ^8.2.0
postgres: ^3.0.0
optional: ^6.0.0
dev_dependencies:
angel3_migration: ^8.0.0
angel3_migration_runner: ^8.0.0
angel3_orm_generator: ^8.0.0
angel3_orm_postgres: ^8.0.0
angel3_serialize: ^8.0.0
angel3_migration: ^8.2.0
angel3_migration_runner: ^8.2.0
angel3_orm_generator: ^8.2.0
angel3_orm_postgres: ^8.2.0
angel3_serialize: ^8.2.0
build_runner: ^2.4.0
logging: ^1.2.0
test: ^1.24.0
Expand Down
4 changes: 4 additions & 0 deletions packages/static/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 8.2.1

* Updated dependencies

## 8.2.0

* Require Dart >= 3.3
Expand Down
4 changes: 3 additions & 1 deletion packages/static/lib/src/virtual_directory.dart
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,9 @@ class VirtualDirectory {
// 'Client requested $value, but server wanted to send $mimeType.'),
errors: [
'Client requested $value, but server wanted to send $mimeType.'
], statusCode: 406, message: '406 Not Acceptable');
],
statusCode: 406,
message: '406 Not Acceptable');
}
}

Expand Down
4 changes: 2 additions & 2 deletions packages/static/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: angel3_static
version: 8.2.0
version: 8.2.1
description: This library provides a virtual directory to serve static files for Angel3 framework.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/angel3/packages/static
environment:
sdk: '>=3.3.0 <4.0.0'
dependencies:
angel3_framework: ^8.0.0
angel3_framework: ^8.4.0
belatuk_range_header: ^6.1.0
convert: ^3.0.0
crypto: ^3.0.1
Expand Down
4 changes: 3 additions & 1 deletion packages/static/test/cache_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ void main() {

app.fallback(
CachingVirtualDirectory(app, const LocalFileSystem(),
source: testDir, maxAge: 350, onlyInProduction: false,
source: testDir,
maxAge: 350,
onlyInProduction: false,
//publicPath: '/virtual',
indexFileNames: ['index.txt']).handleRequest,
);
Expand Down

0 comments on commit 06855d1

Please sign in to comment.