Skip to content

Commit

Permalink
chore(all): prepare release 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bigopon committed Aug 27, 2024
1 parent 230e7bd commit 4c19d1f
Show file tree
Hide file tree
Showing 14 changed files with 32 additions and 27 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-dependency-injection",
"version": "1.6.0",
"version": "1.6.1",
"description": "A lightweight, extensible dependency injection container for JavaScript.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/aurelia-dependency-injection.js.map

Large diffs are not rendered by default.

4 changes: 1 addition & 3 deletions dist/aurelia-dependency-injection.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -578,9 +578,7 @@ export declare class Container {
inject?: any;
}): InvocationHandler<TBase, TImpl, TArgs>;
}
export type ResolvedValue<T> = T extends {
new (...args: any[]): infer R;
} ? R : T extends Factory<infer R> ? (...args: unknown[]) => R : T extends Lazy<infer R> ? () => R : T extends NewInstance<infer R> ? R : T extends Optional<infer R> ? R | null : T extends All<infer R> ? R[] : T extends Parent<infer R> ? R | null : T extends [
export type ResolvedValue<T> = T extends (new (...args: any[]) => infer R) ? R : T extends (abstract new (...args: any[]) => infer R) ? R : T extends Factory<infer R> ? (...args: unknown[]) => R : T extends Lazy<infer R> ? () => R : T extends NewInstance<infer R> ? R : T extends Optional<infer R> ? R | null : T extends All<infer R> ? R[] : T extends Parent<infer R> ? R | null : T extends [
infer T1,
...infer T2
] ? [
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-dependency-injection.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/es2015/aurelia-dependency-injection.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/es2017/aurelia-dependency-injection.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/native-modules/aurelia-dependency-injection.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/system/aurelia-dependency-injection.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/umd-es2015/aurelia-dependency-injection.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/umd/aurelia-dependency-injection.js.map

Large diffs are not rendered by default.

29 changes: 18 additions & 11 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
# Changelog

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## [1.6.0](https://github.com/aurelia/dependency-injection/compare/1.5.2...1.6.0) (2024-08-11)


### Features

* backport resolve ([#228](https://github.com/aurelia/dependency-injection/issues/228)) ([ccac164](https://github.com/aurelia/dependency-injection/commit/ccac164c511274a5b37db441cdfea924c92b37fd))

# Changelog

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## [1.6.1](https://github.com/aurelia/dependency-injection/compare/1.6.0...1.6.1) (2024-08-27)


### Bug Fixes

* correctly infer type from abstract classes ([230e7bd](https://github.com/aurelia/dependency-injection/commit/230e7bd42f6d2e15dd94627620eb0c09402b90cc))

## [1.6.0](https://github.com/aurelia/dependency-injection/compare/1.5.2...1.6.0) (2024-08-11)


### Features

* backport resolve ([#228](https://github.com/aurelia/dependency-injection/issues/228)) ([ccac164](https://github.com/aurelia/dependency-injection/commit/ccac164c511274a5b37db441cdfea924c92b37fd))

## [1.5.2](https://github.com/aurelia/dependency-injection/compare/1.5.1...1.5.2) (2019-11-20)


Expand Down
2 changes: 1 addition & 1 deletion doc/api.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-dependency-injection",
"version": "1.6.0",
"version": "1.6.1",
"description": "A lightweight, extensible dependency injection container for JavaScript.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 4c19d1f

Please sign in to comment.