Skip to content

Commit

Permalink
chore(spectacular): release v0.4.0 (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
LayZeeDK committed Jul 20, 2022
1 parent 1df7e31 commit d1753ae
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions packages/spectacular/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# Spectacular changelog

# 0.4.0 (2022-07-20)

## Features

- Add back `pipeName` option to `createPipeHarness`
([#39](https://github.com/ngworker/ngworker/pull/39))

## **BREAKING CHANGES**

Add back the required pipeName option as `PipeResolver` is removed in Angular
13.1 and was internally used by Spectacular's Pipe Testing API.

### Migration

Add `pipeName` option argument for `createPipeHarness`.

Before:

```typescript
const harness = createPipeHarness({
pipe: PowPipe,
value: 2,
});
```

After:

```typescript
const harness = createPipeHarness({
pipe: PowPipe,
pipeName: 'pow',
value: 2,
});
```

# 0.3.0 (2022-05-31)

## Features
Expand Down
2 changes: 1 addition & 1 deletion packages/spectacular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngworker/spectacular",
"version": "0.3.0",
"version": "0.4.0",
"description": "Spectacular Angular integration testing. Test harnesses for Angular applications and libraries.",
"license": "MIT",
"peerDependencies": {
Expand Down

0 comments on commit d1753ae

Please sign in to comment.