diff --git a/packages/operators/CHANGELOG.md b/packages/operators/CHANGELOG.md index e1d33c5..f348e3c 100644 --- a/packages/operators/CHANGELOG.md +++ b/packages/operators/CHANGELOG.md @@ -1,5 +1,13 @@ # Project Changelog +# [@rxjs-collection/operators-v1.0.8](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.0.7...@rxjs-collection/operators-v1.0.8) (2024-11-24) + + +### Bug Fixes + +* **operators:** optimized option declaration and added cache to request ([e1a0d3e](https://github.com/basics/rxjs-collection/commit/e1a0d3ed84e3d2c44cbdc939dfac48b330138b23)) +* **operators:** retry cleanup ([c46cbbe](https://github.com/basics/rxjs-collection/commit/c46cbbe1f06e9ab16ea551789fd3e8a3e85c7d1b)) + # [@rxjs-collection/operators-v1.0.8-beta.2](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.0.8-beta.1...@rxjs-collection/operators-v1.0.8-beta.2) (2024-11-24) diff --git a/packages/operators/package.json b/packages/operators/package.json index 9b9d0c3..f7737f5 100644 --- a/packages/operators/package.json +++ b/packages/operators/package.json @@ -1,6 +1,6 @@ { "name": "@rxjs-collection/operators", - "version": "1.0.8-beta.2", + "version": "1.0.8", "description": "rxjs operators", "license": "MIT", "contributors": [ diff --git a/packages/operators/src/request/autoPagination.test.js b/packages/operators/src/request/autoPagination.test.js index 9f23dd4..6951218 100644 --- a/packages/operators/src/request/autoPagination.test.js +++ b/packages/operators/src/request/autoPagination.test.js @@ -62,7 +62,8 @@ describe('auto pagination', () => { }); }); -describe('auto pagination - demo', () => { +/* v8 ignore start */ +describe.skip('auto pagination - demo', () => { test('sample', async () => { const { autoPagination } = await import('./autoPagination'); @@ -94,3 +95,4 @@ describe('auto pagination - demo', () => { ); }); }); +/* v8 ignore stop */ diff --git a/packages/operators/src/request/concurrentRequest.test.js b/packages/operators/src/request/concurrentRequest.test.js index 227545f..6d2548c 100644 --- a/packages/operators/src/request/concurrentRequest.test.js +++ b/packages/operators/src/request/concurrentRequest.test.js @@ -46,7 +46,8 @@ describe('concurrent request', () => { }); }); -describe('concurrent request - demo', () => { +/* v8 ignore start */ +describe.skip('concurrent request - demo', () => { test('sample', async () => { const { concurrentRequest } = await import('./concurrentRequest'); @@ -74,3 +75,4 @@ describe('concurrent request - demo', () => { ); }); }); +/* v8 ignore stop */ diff --git a/packages/operators/src/request/lazyPagination.test.js b/packages/operators/src/request/lazyPagination.test.js index 3d3f428..3873271 100644 --- a/packages/operators/src/request/lazyPagination.test.js +++ b/packages/operators/src/request/lazyPagination.test.js @@ -69,7 +69,8 @@ describe('lazy pagination', () => { }); }); -describe('lazy pagination - demo', () => { +/* v8 ignore start */ +describe.skip('lazy pagination - demo', () => { test('sample', async () => { const { lazyPagination } = await import('./lazyPagination'); @@ -111,3 +112,4 @@ describe('lazy pagination - demo', () => { await result; }); }); +/* v8 ignore stop */ diff --git a/packages/operators/src/request/request.test.js b/packages/operators/src/request/request.test.js index e0e849c..a9d6ec3 100644 --- a/packages/operators/src/request/request.test.js +++ b/packages/operators/src/request/request.test.js @@ -123,7 +123,8 @@ describe('request', () => { }); }); -describe('request - demo ', () => { +/* v8 ignore start */ +describe.skip('request - demo ', () => { test('sample - successfull upload', async () => { const { request } = await import('./request.js'); @@ -151,3 +152,4 @@ describe('request - demo ', () => { ); }); }); +/* v8 ignore stop */