Skip to content

Commit

Permalink
Updating changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
fratzinger committed Feb 2, 2024
1 parent e0bd0e1 commit 9aa1d46
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,24 @@

## [Unreleased](https://github.com/feathersjs-ecosystem/feathers-stripe/tree/HEAD)

[Full Changelog](https://github.com/feathersjs-ecosystem/feathers-stripe/compare/v2.0.0...HEAD)
[Full Changelog](https://github.com/feathersjs-ecosystem/feathers-stripe/compare/v3.0.0...HEAD)

**Merged pull requests:**

- dove & typescript refactor [\#118](https://github.com/feathersjs-ecosystem/feathers-stripe/pull/118) ([fratzinger](https://github.com/fratzinger))
- feat: search for customer and invoice [\#119](https://github.com/feathersjs-ecosystem/feathers-stripe/pull/119) ([TheNoim](https://github.com/TheNoim))

## [v3.0.0](https://github.com/feathersjs-ecosystem/feathers-stripe/tree/v3.0.0) (2024-02-02)

[Full Changelog](https://github.com/feathersjs-ecosystem/feathers-stripe/compare/v2.0.0...v3.0.0)

## [v2.0.0](https://github.com/feathersjs-ecosystem/feathers-stripe/tree/v2.0.0) (2023-08-31)

[Full Changelog](https://github.com/feathersjs-ecosystem/feathers-stripe/compare/v1.0.1...v2.0.0)

**Merged pull requests:**

- dove & typescript refactor [\#118](https://github.com/feathersjs-ecosystem/feathers-stripe/pull/118) ([fratzinger](https://github.com/fratzinger))

## [v1.0.1](https://github.com/feathersjs-ecosystem/feathers-stripe/tree/v1.0.1) (2022-03-23)

[Full Changelog](https://github.com/feathersjs-ecosystem/feathers-stripe/compare/v1.0.0...v1.0.1)
Expand Down
2 changes: 1 addition & 1 deletion test/error-handler.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe("handleError", () => {
});

it("handles StripeConnectionError", () => {
error = new Stripe.errors.StripeConnectionError({ type: "api_error" })
error = new Stripe.errors.StripeConnectionError({ type: "api_error" });

expect(() => service.handleError(error)).to.throw(Unavailable);
});
Expand Down
2 changes: 1 addition & 1 deletion test/filter-params.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe("filterQuery", () => {
it("replaces $limit with limit", () => {
const query = service.filterQuery(params);
expectTypeOf(query).toEqualTypeOf<{ limit: number; name: string }>();
expectTypeOf(query).not.toHaveProperty('$limit');
expectTypeOf(query).not.toHaveProperty("$limit");
// @ts-expect-error $limit should not exits anymore on this type
expect(query.$limit).to.equal(undefined);
expect(query.limit).to.equal(5);
Expand Down

0 comments on commit 9aa1d46

Please sign in to comment.