mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-23 21:13:35 +00:00
fix(benchmark) - hide warning
This commit is contained in:
31
CHANGELOG.md
31
CHANGELOG.md
@@ -3,6 +3,37 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||||
|
|
||||||
|
## 2025-08-19
|
||||||
|
|
||||||
|
### Changes
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Packages with breaking changes:
|
||||||
|
|
||||||
|
- There are no breaking changes in this release.
|
||||||
|
|
||||||
|
Packages with other changes:
|
||||||
|
|
||||||
|
- [`cherrypick` - `v3.0.0-dev.11`](#cherrypick---v300-dev11)
|
||||||
|
- [`cherrypick_flutter` - `v1.1.3-dev.11`](#cherrypick_flutter---v113-dev11)
|
||||||
|
- [`talker_cherrypick_logger` - `v1.1.0-dev.6`](#talker_cherrypick_logger---v110-dev6)
|
||||||
|
|
||||||
|
Packages with dependency updates only:
|
||||||
|
|
||||||
|
> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project.
|
||||||
|
|
||||||
|
- `cherrypick_flutter` - `v1.1.3-dev.11`
|
||||||
|
- `talker_cherrypick_logger` - `v1.1.0-dev.6`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
#### `cherrypick` - `v3.0.0-dev.11`
|
||||||
|
|
||||||
|
- **FIX**(scope): prevent concurrent modification in dispose().
|
||||||
|
- **FIX**(binding): fix unterminated string literal and syntax issues in binding.dart.
|
||||||
|
|
||||||
|
|
||||||
## 2025-08-15
|
## 2025-08-15
|
||||||
|
|
||||||
### Changes
|
### Changes
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import 'di_adapter.dart';
|
|||||||
/// DIAdapter-для KiwiContainer с поддержкой universal benchmark сценариев.
|
/// DIAdapter-для KiwiContainer с поддержкой universal benchmark сценариев.
|
||||||
class KiwiAdapter extends DIAdapter<KiwiContainer> {
|
class KiwiAdapter extends DIAdapter<KiwiContainer> {
|
||||||
late KiwiContainer _container;
|
late KiwiContainer _container;
|
||||||
|
// ignore: unused_field
|
||||||
final bool _isSubScope;
|
final bool _isSubScope;
|
||||||
|
|
||||||
KiwiAdapter({KiwiContainer? container, bool isSubScope = false})
|
KiwiAdapter({KiwiContainer? container, bool isSubScope = false})
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
## 3.0.0-dev.11
|
||||||
|
|
||||||
|
- **FIX**(scope): prevent concurrent modification in dispose().
|
||||||
|
- **FIX**(binding): fix unterminated string literal and syntax issues in binding.dart.
|
||||||
|
|
||||||
## 3.0.0-dev.10
|
## 3.0.0-dev.10
|
||||||
|
|
||||||
- **DOCS**(pub): update homepage and documentation URLs in pubspec.yaml to new official site.
|
- **DOCS**(pub): update homepage and documentation URLs in pubspec.yaml to new official site.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
name: cherrypick
|
name: cherrypick
|
||||||
description: Cherrypick is a small dependency injection (DI) library for dart/flutter projects.
|
description: Cherrypick is a small dependency injection (DI) library for dart/flutter projects.
|
||||||
version: 3.0.0-dev.10
|
version: 3.0.0-dev.11
|
||||||
homepage: https://cherrypick-di.dev/
|
homepage: https://cherrypick-di.dev/
|
||||||
documentation: https://cherrypick-di.dev/docs/intro
|
documentation: https://cherrypick-di.dev/docs/intro
|
||||||
repository: https://github.com/pese-git/cherrypick
|
repository: https://github.com/pese-git/cherrypick
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
## 1.1.3-dev.11
|
||||||
|
|
||||||
|
- Update a dependency to the latest release.
|
||||||
|
|
||||||
## 1.1.3-dev.10
|
## 1.1.3-dev.10
|
||||||
|
|
||||||
- **DOCS**(pub): update homepage and documentation URLs in pubspec.yaml to new official site.
|
- **DOCS**(pub): update homepage and documentation URLs in pubspec.yaml to new official site.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
name: cherrypick_flutter
|
name: cherrypick_flutter
|
||||||
description: "Flutter library that allows access to the root scope through the context using `CherryPickProvider`."
|
description: "Flutter library that allows access to the root scope through the context using `CherryPickProvider`."
|
||||||
version: 1.1.3-dev.10
|
version: 1.1.3-dev.11
|
||||||
homepage: https://cherrypick-di.dev/
|
homepage: https://cherrypick-di.dev/
|
||||||
documentation: https://cherrypick-di.dev/docs/intro
|
documentation: https://cherrypick-di.dev/docs/intro
|
||||||
repository: https://github.com/pese-git/cherrypick
|
repository: https://github.com/pese-git/cherrypick
|
||||||
@@ -19,7 +19,7 @@ environment:
|
|||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
cherrypick: ^3.0.0-dev.10
|
cherrypick: ^3.0.0-dev.11
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
## 1.1.0-dev.6
|
||||||
|
|
||||||
|
- Update a dependency to the latest release.
|
||||||
|
|
||||||
## 1.1.0-dev.5
|
## 1.1.0-dev.5
|
||||||
|
|
||||||
- **DOCS**(pub): update homepage and documentation URLs in pubspec.yaml to new official site.
|
- **DOCS**(pub): update homepage and documentation URLs in pubspec.yaml to new official site.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
name: talker_cherrypick_logger
|
name: talker_cherrypick_logger
|
||||||
description: A Talker logger integration for CherryPick DI to observe and log DI events and errors.
|
description: A Talker logger integration for CherryPick DI to observe and log DI events and errors.
|
||||||
version: 1.1.0-dev.5
|
version: 1.1.0-dev.6
|
||||||
homepage: https://cherrypick-di.dev/
|
homepage: https://cherrypick-di.dev/
|
||||||
documentation: https://cherrypick-di.dev/docs/intro
|
documentation: https://cherrypick-di.dev/docs/intro
|
||||||
repository: https://github.com/pese-git/cherrypick
|
repository: https://github.com/pese-git/cherrypick
|
||||||
@@ -18,7 +18,7 @@ environment:
|
|||||||
# Add regular dependencies here.
|
# Add regular dependencies here.
|
||||||
dependencies:
|
dependencies:
|
||||||
talker: ^4.9.3
|
talker: ^4.9.3
|
||||||
cherrypick: ^3.0.0-dev.10
|
cherrypick: ^3.0.0-dev.11
|
||||||
|
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
|
|||||||
Reference in New Issue
Block a user