Skip to content
Merged
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
27 changes: 25 additions & 2 deletions packages/catalyst_builder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,45 @@
## 5.0.0

I'm proud to release v5.0.0 🎉

This release contains a lot of rework in the underlying engine.

This is a list of the largest changes between v4.3.2 and v5.0.0

- New plugin based architecture
- The `ServiceContainer` (formerly `ServiceProvider`) is no longer generated code. Instead, I created a
`ServiceContainer` implementation that uses Plugins which are generated.
- Services from dependencies are no longer included. This improves the build speed and reliability of generated code.
Services from dependencies must be deployed as plugins. This gives you more control over what is registered in your
container.
- Aligned naming: In the previous versions, we mixed the terms `provider` and `container`. Starting with this version
we will use only `container`.

For upgrade guidance check the "[Upgrade from v4 to v5](https://github.com/mintware-de/catalyst_builder/wiki/v5)" Guide

## 5.0.0-rc.1

### Breaking Changes

- Removed the generation of the service container. Check the [GenerateServiceProvider](https://github.com/mintware-de/catalyst_builder/wiki/v5#generateserviceprovider) section for upgrade guidance.
- Removed the generation of the service container. Check
the [GenerateServiceProvider](https://github.com/mintware-de/catalyst_builder/wiki/v5#generateserviceprovider) section
for upgrade guidance.

## 5.0.0-dev.2

### Changes

- Removed export of `catalyst_builder_annotations`.

## 5.0.0-dev.1

We need a total makeover of the underlying architecture.
Services from packages you depend on are no longer resolved automatically!

More background information is available in the [Wiki](https://github.com/mintware-de/catalyst_builder/wiki/v5)
More background information is available in the [Wiki](https://github.com/mintware-de/catalyst_builder/wiki/v5)

### Changes

- `includePackageDependencies` was removed

## 4.3.2
Expand Down
4 changes: 2 additions & 2 deletions packages/catalyst_builder/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: catalyst_builder
description: A lightweight and easy to use dependency injection container builder for dart.
version: 5.0.0-rc.1
version: 5.0.0
homepage: 'https://github.com/mintware-de/catalyst_builder'
repository: 'https://github.com/mintware-de/catalyst_builder/tree/main/packages/catalyst_builder'
documentation: 'https://github.com/mintware-de/catalyst_builder/wiki'
Expand Down Expand Up @@ -34,7 +34,7 @@ dependencies:
path: ^1.8.0
analyzer: '>=6.2.0 <8.0.0'
yaml: ^3.0.0
catalyst_builder_contracts: ^2.0.0-rc.1
catalyst_builder_contracts: ^2.0.0

dev_dependencies:
test: any
Expand Down
7 changes: 6 additions & 1 deletion packages/catalyst_builder_contracts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.0

No additional changes were made. Check changes of previous version.

## 2.0.0-rc.1

### Breaking Changes
Expand All @@ -12,6 +16,7 @@
## 2.0.0-dev.2

### Breaking Changes

- Changed `ServiceProvider` and `ServiceRegistry` to interfaces
- Removed `EnhanceableProvider` and added `enhance` to `ServiceProvider`

Expand All @@ -33,7 +38,7 @@
## 0.0.2

- Fix export of EnhanceableProvider

## 0.0.1

- Initial version
2 changes: 1 addition & 1 deletion packages/catalyst_builder_contracts/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: catalyst_builder_contracts
description: This is the contracts package for the catalyst_builder package. It includes annotations and marker interfaces.
version: 2.0.0-rc.1
version: 2.0.0
homepage: 'https://github.com/mintware-de/catalyst_builder'
repository: 'https://github.com/mintware-de/catalyst_builder/tree/main/packages/catalyst_builder_contracts'
documentation: https://github.com/mintware-de/catalyst_builder/wiki
Expand Down