Skip to content

Commit

Permalink
v1.0.13
Browse files Browse the repository at this point in the history
- Added `TypeInfo` to represent better types with generics.
- Added `TableRelationshipReference` for use in `TableScheme`.
- Added `TimedMap` to help with timed caches.
- Added `KeyConditionIN` and `KeyConditionNotIN`.
- Entities:
  - Added support to relationship fields.
  - Added support for List fields pointing to another entity.
- `SQLEntityRepository`:
  - Added support to UPDATE.
  - Added support to relationship tables.
  • Loading branch information
gmpassos committed Oct 3, 2021
1 parent b318a6d commit cc00d7d
Show file tree
Hide file tree
Showing 15 changed files with 2,030 additions and 367 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## 1.0.13

- Added `TypeInfo` to represent better types with generics.
- Added `TableRelationshipReference` for use in `TableScheme`.
- Added `TimedMap` to help with timed caches.
- Added `KeyConditionIN` and `KeyConditionNotIN`.
- Entities:
- Added support to relationship fields.
- Added support for List fields pointing to another entity.
- `SQLEntityRepository`:
- Added support to UPDATE.
- Added support to relationship tables.

## 1.0.12

- CLI:
Expand Down
2 changes: 1 addition & 1 deletion lib/src/bones_api_base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import 'bones_api_extension.dart';
/// Root class of an API.
abstract class APIRoot {
// ignore: constant_identifier_names
static const String VERSION = '1.0.12';
static const String VERSION = '1.0.13';

static final Map<String, APIRoot> _instances = <String, APIRoot>{};

Expand Down
Loading

0 comments on commit cc00d7d

Please sign in to comment.