Skip to content

Commit

Permalink
chore(release): publish packages
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanpodila committed Dec 16, 2024
1 parent 8d17718 commit 0cadcd0
Show file tree
Hide file tree
Showing 11 changed files with 133 additions and 8 deletions.
75 changes: 75 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2024-12-16

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`flutter_mobx` - `v2.3.0`](#flutter_mobx---v230)
- [`mobx` - `v2.5.0`](#mobx---v250)
- [`mobx_codegen` - `v2.7.0`](#mobx_codegen---v270)
- [`mobx_examples` - `v1.1.0`](#mobx_examples---v110)
- [`mobx_lint` - `v1.1.0`](#mobx_lint---v110)

---

#### `flutter_mobx` - `v2.3.0`

- **REFACTOR**: export `MultiReactionBuilder` from `flutter_mobx.dart` (#946).
- **FIX**: package upgrades, analysis issue fixes.
- **FIX**: stacktrace in computed (#988).
- **FIX**: If builder of Observer errors, further error LateInitializationError: Local 'built' has not been initialized. will happen in addition to the actual error, reducing developer experience #780.
- **FIX**: Disable button Remove Completed, when the completed task is occult on screen. (#73).
- **FEAT**: add `MultiReactionBuilder` widget (#917).

#### `mobx` - `v2.5.0`

- **FIX**: package upgrades, analysis issue fixes.
- **FIX**: Observable.value setter (covariant) (#993).
- **FIX**: stacktrace in computed (#988).
- **FIX**: observableset and observablemap notify all listeners when one is added with fireimmediately true (#962).
- **FIX**: revert #784 (#842).
- **FIX**: ObservableStream.listen() should also keep observable values updated (#708).
- **FIX**: Widgets failed to call super.dispose() (#334).
- **FIX**: issue 62 (#64).
- **FEAT**: add scheduler option to autorun and reaction (#979).
- **FEAT**: add keepAlive to Computed (#976).
- **FEAT**: Adds `useEquatable` for creating observables (#971).
- **FEAT**: Adds custom `equals` for creating observables. (#907).
- **FEAT**: Adds support for annotations (#904).
- **FEAT**: Allow a custom equals parameter for ObservableStream (#771).
- **FEAT**: Allow use custom context (#770).

#### `mobx_codegen` - `v2.7.0`

- **FIX**: package upgrades, analysis issue fixes.
- **FIX**: error with code generation when file has unnamed extension (#1020).
- **FIX**: make readonly work with computed (#710).
- **FIX**: ObservableStream.listen() should also keep observable values updated (#708).
- **FEAT**: add keepAlive to Computed (#976).
- **FEAT**: support late observables (#973).
- **FEAT**: Adds `useEquatable` for creating observables (#971).
- **FEAT**: require `analyzer: ^5.12.0` (#934).
- **FEAT**: Adds custom `equals` for creating observables. (#907).
- **FEAT**: Adds support for annotations (#904).
- **FEAT**: Allow use custom context (#770).

#### `mobx_examples` - `v1.1.0`

- **FEAT**: Adds support for annotations (#904).

#### `mobx_lint` - `v1.1.0`

- **FIX**: package upgrades, analysis issue fixes.
- **FEAT**: add wrap with observer assist (#949).

9 changes: 9 additions & 0 deletions flutter_mobx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 2.3.0

- **REFACTOR**: export `MultiReactionBuilder` from `flutter_mobx.dart` (#946).
- **FIX**: package upgrades, analysis issue fixes.
- **FIX**: stacktrace in computed (#988).
- **FIX**: If builder of Observer errors, further error LateInitializationError: Local 'built' has not been initialized. will happen in addition to the actual error, reducing developer experience #780.
- **FIX**: Disable button Remove Completed, when the completed task is occult on screen. (#73).
- **FEAT**: add `MultiReactionBuilder` widget (#917).

## 2.2.2

- fix: removed runtime asserts and nullables from `Observer.withBuiltChild` - [@subzero911](https://github.com/subzero911)
Expand Down
4 changes: 2 additions & 2 deletions flutter_mobx/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: flutter_mobx
description:
Flutter integration for MobX. It provides a set of Observer widgets that automatically rebuild
when the tracked observables change.
version: 2.2.2
version: 2.3.0

repository: https://github.com/mobxjs/mobx.dart
issue_tracker: https://github.com/mobxjs/mobx.dart/issues
Expand All @@ -19,7 +19,7 @@ environment:
dependencies:
flutter:
sdk: flutter
mobx: ^2.3.2
mobx: ^2.5.0
provider: ^6.0.0

dev_dependencies:
Expand Down
18 changes: 18 additions & 0 deletions mobx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 2.5.0

- **FIX**: package upgrades, analysis issue fixes.
- **FIX**: Observable.value setter (covariant) (#993).
- **FIX**: stacktrace in computed (#988).
- **FIX**: observableset and observablemap notify all listeners when one is added with fireimmediately true (#962).
- **FIX**: revert #784 (#842).
- **FIX**: ObservableStream.listen() should also keep observable values updated (#708).
- **FIX**: Widgets failed to call super.dispose() (#334).
- **FIX**: issue 62 (#64).
- **FEAT**: add scheduler option to autorun and reaction (#979).
- **FEAT**: add keepAlive to Computed (#976).
- **FEAT**: Adds `useEquatable` for creating observables (#971).
- **FEAT**: Adds custom `equals` for creating observables. (#907).
- **FEAT**: Adds support for annotations (#904).
- **FEAT**: Allow a custom equals parameter for ObservableStream (#771).
- **FEAT**: Allow use custom context (#770).

## 2.4.0

- Add `scheduler` to `reaction` and `autorun` to allow customizing the scheduler used to schedule the reaction. By [@amondnet]((https://github.com/amondnet).
Expand Down
2 changes: 1 addition & 1 deletion mobx/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: mobx
version: 2.4.0
version: 2.5.0
description: "MobX is a library for reactively managing the state of your applications. Use the power of observables, actions, and reactions to supercharge your Dart and Flutter apps."

repository: https://github.com/mobxjs/mobx.dart
Expand Down
14 changes: 14 additions & 0 deletions mobx_codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 2.7.0

- **FIX**: package upgrades, analysis issue fixes.
- **FIX**: error with code generation when file has unnamed extension (#1020).
- **FIX**: make readonly work with computed (#710).
- **FIX**: ObservableStream.listen() should also keep observable values updated (#708).
- **FEAT**: add keepAlive to Computed (#976).
- **FEAT**: support late observables (#973).
- **FEAT**: Adds `useEquatable` for creating observables (#971).
- **FEAT**: require `analyzer: ^5.12.0` (#934).
- **FEAT**: Adds custom `equals` for creating observables. (#907).
- **FEAT**: Adds support for annotations (#904).
- **FEAT**: Allow use custom context (#770).

## 2.6.2

- Fixes [error with code generation when file has unnamed extension](https://github.com/mobxjs/mobx.dart/issues/1010) by [@amondnet](https://github.com/amondnet) in [#1020](https://github.com/mobxjs/mobx.dart/pull/1020)
Expand Down
4 changes: 2 additions & 2 deletions mobx_codegen/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: mobx_codegen
description: Code generator for MobX that adds support for annotating your code with @observable, @computed, @action and also creating Store classes.
version: 2.6.2
version: 2.7.0

repository: https://github.com/mobxjs/mobx.dart
issue_tracker: https://github.com/mobxjs/mobx.dart/issues
Expand All @@ -18,7 +18,7 @@ dependencies:
build: ^2.2.1
build_resolvers: ^2.0.6
meta: ^1.3.0
mobx: ^2.3.0
mobx: ^2.5.0
path: ^1.8.0
source_gen: ^1.2.1

Expand Down
4 changes: 4 additions & 0 deletions mobx_examples/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## 1.1.0

- **FEAT**: Adds support for annotations (#904).

2 changes: 1 addition & 1 deletion mobx_examples/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: A set of examples showing effective use of MobX.
# Both the version and the builder number may be overridden in flutter
# build by specifying --build-name and --build-number, respectively.
# Read more about versioning at semver.org.
version: 1.0.0+1
version: 1.1.0

environment:
sdk: ">=2.15.0 <3.0.0"
Expand Down
5 changes: 5 additions & 0 deletions mobx_lint/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.1.0

- **FIX**: package upgrades, analysis issue fixes.
- **FEAT**: add wrap with observer assist (#949).

## 1.0.0

- add wrap with observer assist by [@amondnet](https://github.com/amondnet)
4 changes: 2 additions & 2 deletions mobx_lint/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: mobx_lint
description: mobx_lint is a developer tool for users of mobx, designed to help stop common issues and simplify repetitive tasks.
version: 1.0.0
version: 1.1.0

homepage: https://mobx.netlify.app/
repository: https://github.com/mobxjs/mobx.dart
Expand All @@ -20,7 +20,7 @@ dependencies:
custom_lint_builder: ^0.5.2
meta: ^1.7.0
path: ^1.8.1
mobx: ^2.2.0
mobx: ^2.5.0
dev_dependencies:
lints: ^5.0.0
test: ^1.21.0

0 comments on commit 0cadcd0

Please sign in to comment.