Compare commits

..

2 Commits

Author SHA1 Message Date
c344e47ae6 1.5.3
Some checks failed
Default (tags) / security (push) Failing after 17s
Default (tags) / test (push) Failing after 13s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-04-09 15:55:29 +00:00
209af50a4c fix(test): Await file writes in Handelsregister tests to ensure all downloads complete before test end 2025-04-09 15:55:29 +00:00
4 changed files with 10 additions and 4 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## 2025-04-09 - 1.5.3 - fix(test)
Await file writes in Handelsregister tests to ensure all downloads complete before test end
- Replaced array.map with await Promise.all to properly await asynchronous file writes in test/test.handelsregister.ts
- Improved robustness of asynchronous operations in test suite
## 2025-04-09 - 1.5.2 - fix(readme)
Improve .env configuration code block formatting in documentation

View File

@ -1,6 +1,6 @@
{
"name": "@fin.cx/opendata",
"version": "1.5.2",
"version": "1.5.3",
"private": false,
"description": "A comprehensive TypeScript library that manages open business data for German companies by integrating MongoDB, processing JSONL bulk data, and automating browser interactions for Handelsregister data retrieval.",
"main": "dist_ts/index.js",

View File

@ -27,9 +27,9 @@ tap.test('should get the data for a specific company', async () => {
const result = await testOpenDataInstance.handelsregister.getSpecificCompany(testCompany);
console.log(result);
result.files.map(async (file) => {
await Promise.all(result.files.map(async (file) => {
await file.writeToDir('./.nogit/testoutput');
});
}));
});

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@fin.cx/opendata',
version: '1.5.2',
version: '1.5.3',
description: 'A comprehensive TypeScript library that manages open business data for German companies by integrating MongoDB, processing JSONL bulk data, and automating browser interactions for Handelsregister data retrieval.'
}