Skip to content

Commit 9aa1d46

Browse files
committed
Updating changelog
1 parent e0bd0e1 commit 9aa1d46

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,24 @@
22

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

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

77
**Merged pull requests:**
88

9-
- dove & typescript refactor [\#118](https://github.com/feathersjs-ecosystem/feathers-stripe/pull/118) ([fratzinger](https://github.com/fratzinger))
9+
- feat: search for customer and invoice [\#119](https://github.com/feathersjs-ecosystem/feathers-stripe/pull/119) ([TheNoim](https://github.com/TheNoim))
10+
11+
## [v3.0.0](https://github.com/feathersjs-ecosystem/feathers-stripe/tree/v3.0.0) (2024-02-02)
12+
13+
[Full Changelog](https://github.com/feathersjs-ecosystem/feathers-stripe/compare/v2.0.0...v3.0.0)
1014

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

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

19+
**Merged pull requests:**
20+
21+
- dove & typescript refactor [\#118](https://github.com/feathersjs-ecosystem/feathers-stripe/pull/118) ([fratzinger](https://github.com/fratzinger))
22+
1523
## [v1.0.1](https://github.com/feathersjs-ecosystem/feathers-stripe/tree/v1.0.1) (2022-03-23)
1624

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

test/error-handler.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe("handleError", () => {
3535
});
3636

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

4040
expect(() => service.handleError(error)).to.throw(Unavailable);
4141
});

test/filter-params.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe("filterQuery", () => {
1818
it("replaces $limit with limit", () => {
1919
const query = service.filterQuery(params);
2020
expectTypeOf(query).toEqualTypeOf<{ limit: number; name: string }>();
21-
expectTypeOf(query).not.toHaveProperty('$limit');
21+
expectTypeOf(query).not.toHaveProperty("$limit");
2222
// @ts-expect-error $limit should not exits anymore on this type
2323
expect(query.$limit).to.equal(undefined);
2424
expect(query.limit).to.equal(5);

0 commit comments

Comments
 (0)