Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions examples/nitrite_demo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## 2.0.0

* **BREAKING CHANGE**: Upgraded minimum Dart SDK to 3.5.0 and migrated to Dart Workspaces to support Melos 8.

Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ list(APPEND FLUTTER_PLUGIN_LIST
)

list(APPEND FLUTTER_FFI_PLUGIN_LIST
jni
)

set(PLUGIN_BUNDLED_LIBRARIES)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
import FlutterMacOS
import Foundation

import path_provider_foundation

func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
}
12 changes: 7 additions & 5 deletions examples/nitrite_demo/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ description: A simple Flutter project to demonstrate Nitrite database usage.

publish_to: 'none' # Remove this line if you wish to publish to pub.dev

version: 1.1.1
version: 2.0.0

environment:
sdk: ">=3.1.0 <4.0.0"
sdk: '>=3.5.0 <4.0.0'

dependencies:
flutter:
Expand All @@ -15,8 +15,8 @@ dependencies:
flutter_slidable: ^3.0.0
flutter_riverpod: ^3.0.0
riverpod_annotation: ^4.0.0
nitrite: ^1.1.1
nitrite_hive_adapter: ^1.1.1
nitrite: ^2.0.0
nitrite_hive_adapter: ^2.0.0
path_provider: ^2.0.15
uuid: ^4.2.0

Expand All @@ -26,11 +26,13 @@ dev_dependencies:
flutter_lints: ^4.0.0
riverpod_generator: ^4.0.0
build_runner: ^2.4.6
nitrite_generator: ^1.1.1
nitrite_generator: ^2.0.0
icons_launcher: ^2.1.3

flutter:
uses-material-design: true
assets:
- assets/


resolution: workspace
8 changes: 0 additions & 8 deletions examples/nitrite_demo/pubspec_overrides.yaml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ list(APPEND FLUTTER_PLUGIN_LIST
)

list(APPEND FLUTTER_FFI_PLUGIN_LIST
jni
)

set(PLUGIN_BUNDLED_LIBRARIES)
Expand Down
92 changes: 0 additions & 92 deletions melos.yaml

This file was deleted.

4 changes: 4 additions & 0 deletions packages/nitrite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.0

* **BREAKING CHANGE**: Upgraded minimum Dart SDK to 3.5.0 and migrated to Dart Workspaces to support Melos 8.

## 1.1.2

- Widened the `rxdart` dependency constraint to `^0.28.0` to support its latest version.
Expand Down
5 changes: 4 additions & 1 deletion packages/nitrite/lib/src/store/memory/in_memory_meta.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/// DO NOT EDIT THIS FILE EXCEPT TO ENTER INITIAL VERSION AND OTHER META INFO
/// THIS FILE IS AUTOMATICALLY OVER WRITTEN BY MetaUpdate
Map<String, String> meta = <String, String>{"version": "1.1.2"};
Map<String, String> meta = <String, String>{
"version": "2.0.0",
};

9 changes: 5 additions & 4 deletions packages/nitrite/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: nitrite
description: An embedded nosql document store for dart/flutter. It supports both in-memory and file based persistent store.
version: 1.1.2
version: 2.0.0
homepage: https://nitrite.dizitart.com/
repository: https://github.com/nitrite/nitrite-flutter

environment:
sdk: '^3.11.4'
sdk: '>=3.5.0 <4.0.0'


dependencies:
Expand All @@ -24,7 +24,7 @@ dev_dependencies:
sdk: flutter
flutter_lints: ">=3.0.1 <5.0.0"
build_runner: ^2.3.3
nitrite_generator: ^1.1.1
nitrite_generator: ^2.0.0
mockito: ^5.2.0
test: ^1.24.6
faker: ^2.0.0
Expand All @@ -35,4 +35,5 @@ flutter:
- pubspec.yaml

funding:
- https://github.com/sponsors/anidotnet
- https://github.com/sponsors/anidotnet
resolution: workspace
4 changes: 0 additions & 4 deletions packages/nitrite/pubspec_overrides.yaml

This file was deleted.

4 changes: 4 additions & 0 deletions packages/nitrite_generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.0

* **BREAKING CHANGE**: Upgraded minimum Dart SDK to 3.5.0 and migrated to Dart Workspaces to support Melos 8.

## 1.1.2

- Migrated to `analyzer` 13.x, `source_gen` 4.x, `build` 4.x and `dart_style` 3.x, including the updated analyzer element model API.
Expand Down
11 changes: 6 additions & 5 deletions packages/nitrite_generator/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: nitrite_generator
description: Nitrite entity generator. Automatically generates Nitrite entities from Dart classes.
version: 1.1.2
version: 2.0.0
homepage: https://nitrite.dizitart.com/
repository: https://github.com/nitrite/nitrite-flutter

environment:
sdk: '>=3.2.3 <4.0.0'
sdk: '>=3.5.0 <4.0.0'

dependencies:
build: ">=2.4.0 <5.0.0"
Expand All @@ -14,14 +14,15 @@ dependencies:
dart_style: ">=3.0.0 <4.0.0"
source_gen: ">=4.2.3 <5.0.0"
analyzer: ">=12.0.0 <15.0.0"
nitrite: ^1.1.1
nitrite: ^2.0.0
collection: ^1.19.1

dev_dependencies:
build_test: ^3.5.15
build_runner: ">=2.15.0 <4.0.0"
test: ^1.31.2
test: ^1.24.6
lints: ^4.0.0

funding:
- https://github.com/sponsors/anidotnet
- https://github.com/sponsors/anidotnet
resolution: workspace
4 changes: 0 additions & 4 deletions packages/nitrite_generator/pubspec_overrides.yaml

This file was deleted.

4 changes: 4 additions & 0 deletions packages/nitrite_hive_adapter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.0

* **BREAKING CHANGE**: Upgraded minimum Dart SDK to 3.5.0 and migrated to Dart Workspaces to support Melos 8.

## 1.1.3

- Renamed the `isSorted` test helper to avoid a name collision with the latest `matcher` package so the test suite compiles in CI.
Expand Down
1 change: 1 addition & 0 deletions packages/nitrite_hive_adapter/lib/src/store/hive_meta.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
Map<String, String> meta = <String, String>{
"version": "2.2.3",
};

11 changes: 6 additions & 5 deletions packages/nitrite_hive_adapter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: nitrite_hive_adapter
description: A persistent storage module for Nitrite database based on Hive.
version: 1.1.3
version: 2.0.0
homepage: https://nitrite.dizitart.com/
repository: https://github.com/nitrite/nitrite-flutter

environment:
sdk: '>=3.2.3 <4.0.0'
sdk: '>=3.5.0 <4.0.0'

dependencies:
hive: ^2.2.3
path: ^1.8.3
nitrite: ^1.1.1
nitrite: ^2.0.0
path_provider: ^2.1.1
logging: ^1.0.2
meta: ^1.10.0
Expand All @@ -21,7 +21,7 @@ dev_dependencies:
flutter_lints: ">=3.0.1 <5.0.0"
test: ^1.24.6
build_runner: ^2.4.7
nitrite_generator: ^1.1.1
nitrite_generator: ^2.0.0
encrypt: ^5.0.3
faker: ^2.0.0
yaml: ^3.1.1
Expand All @@ -33,4 +33,5 @@ flutter:
- pubspec.yaml

funding:
- https://github.com/sponsors/anidotnet
- https://github.com/sponsors/anidotnet
resolution: workspace
6 changes: 0 additions & 6 deletions packages/nitrite_hive_adapter/pubspec_overrides.yaml

This file was deleted.

4 changes: 4 additions & 0 deletions packages/nitrite_spatial/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.0

* **BREAKING CHANGE**: Upgraded minimum Dart SDK to 3.5.0 and migrated to Dart Workspaces to support Melos 8.

## 1.1.3

- Added the `test` dev dependency so the package test suite compiles and runs in CI.
Expand Down
12 changes: 7 additions & 5 deletions packages/nitrite_spatial/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: nitrite_spatial
description: Nitrite Spatial module provides support for spatial queries. The module uses JTS port of the dart package dart_jts for spatial operations.
version: 1.1.3
version: 2.0.0
homepage: https://nitrite.dizitart.com/
repository: https://github.com/nitrite/nitrite-flutter

environment:
sdk: '>=3.2.3 <4.0.0'
sdk: '>=3.5.0 <4.0.0'

dependencies:
dart_jts: ^0.3.0+1
nitrite: ^1.1.1
nitrite: ^2.0.0
hive: ^2.2.3

dev_dependencies:
Expand All @@ -20,8 +20,8 @@ dev_dependencies:
flutter_lints: ">=3.0.1 <5.0.0"
test: ^1.24.6
build_runner: ^2.4.7
nitrite_hive_adapter: ^1.1.1
nitrite_generator: ^1.1.1
nitrite_hive_adapter: ^2.0.0
nitrite_generator: ^2.0.0
path: ^1.8.3
path_provider: ^2.1.1
logging: ^1.0.2
Expand All @@ -34,3 +34,5 @@ flutter:
funding:
- https://github.com/sponsors/anidotnet


resolution: workspace
8 changes: 0 additions & 8 deletions packages/nitrite_spatial/pubspec_overrides.yaml

This file was deleted.

4 changes: 4 additions & 0 deletions packages/nitrite_support/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.0

* **BREAKING CHANGE**: Upgraded minimum Dart SDK to 3.5.0 and migrated to Dart Workspaces to support Melos 8.

## 1.1.2

- Corrected doc comments to satisfy the latest analysis rules.
Expand Down
Loading
Loading