Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

chore: release 0.10.0 #251

Closed
wants to merge 3 commits into from
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ src/**/*.js
src/**/*.js.map
src/**/*.metadata.json
yarn.lock
.idea
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ because this is a development tool, not a production product.
We do try to tell you about such changes in this `CHANGELOG.md`
and we fix bugs as fast as we can.

<a id="0.10.0"></a>
## 0.10.0 (2020-03-12)

* update to support Angular version 9.x and forward
* no functional changes

<a id="0.9.0"></a>
## 0.9.0 (2019-06-20)

Expand Down
2 changes: 1 addition & 1 deletion backend.service.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export declare abstract class BackendService {
private passThruBackend;
protected requestInfoUtils: RequestInfoUtilities;
constructor(inMemDbService: InMemoryDbService, config?: InMemoryBackendConfigArgs);
protected readonly dbReady: Observable<boolean>;
protected get dbReady(): Observable<boolean>;
/**
* Process Request and return an Observable of Http Response object
* in the manner of a RESTy web api.
Expand Down
4 changes: 2 additions & 2 deletions http-client-in-memory-web-api.module.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ export declare class HttpClientInMemoryWebApiModule {
* HttpInMemoryWebApiModule.forRoot(dbCreator);
* HttpInMemoryWebApiModule.forRoot(dbCreator, {useValue: {delay:600}});
*/
static forRoot(dbCreator: Type<InMemoryDbService>, options?: InMemoryBackendConfigArgs): ModuleWithProviders;
static forRoot(dbCreator: Type<InMemoryDbService>, options?: InMemoryBackendConfigArgs): ModuleWithProviders<HttpClientInMemoryWebApiModule>;
/**
*
* Enable and configure the in-memory web api in a lazy-loaded feature module.
* Same as `forRoot`.
* This is a feel-good method so you can follow the Angular style guide for lazy-loaded modules.
*/
static forFeature(dbCreator: Type<InMemoryDbService>, options?: InMemoryBackendConfigArgs): ModuleWithProviders;
static forFeature(dbCreator: Type<InMemoryDbService>, options?: InMemoryBackendConfigArgs): ModuleWithProviders<HttpClientInMemoryWebApiModule>;
}
2 changes: 1 addition & 1 deletion http-client-in-memory-web-api.module.js.map

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

4 changes: 2 additions & 2 deletions in-memory-web-api.module.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ export declare class InMemoryWebApiModule {
* InMemoryWebApiModule.forRoot(dbCreator);
* InMemoryWebApiModule.forRoot(dbCreator, {useValue: {delay:600}});
*/
static forRoot(dbCreator: Type<InMemoryDbService>, options?: InMemoryBackendConfigArgs): ModuleWithProviders;
static forRoot(dbCreator: Type<InMemoryDbService>, options?: InMemoryBackendConfigArgs): ModuleWithProviders<InMemoryWebApiModule>;
/**
*
* Enable and configure the in-memory web api in a lazy-loaded feature module.
* Same as `forRoot`.
* This is a feel-good method so you can follow the Angular style guide for lazy-loaded modules.
*/
static forFeature(dbCreator: Type<InMemoryDbService>, options?: InMemoryBackendConfigArgs): ModuleWithProviders;
static forFeature(dbCreator: Type<InMemoryDbService>, options?: InMemoryBackendConfigArgs): ModuleWithProviders<InMemoryWebApiModule>;
}
2 changes: 1 addition & 1 deletion in-memory-web-api.module.js.map

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

Loading