Skip to content

Commit

Permalink
Version 3.0.8
Browse files Browse the repository at this point in the history
PR-URL: #1916
  • Loading branch information
tshemsedinov committed Oct 8, 2023
1 parent e576b7a commit 0c8c502
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 41 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased][unreleased]

## [3.0.8][] - 2023-10-09

- Integration with custom test reporter
- Implement test timeout
- Metacom fix: do not serve API over http and ws on balancing port

## [3.0.7][] - 2023-10-06

- Fixed imtegration with node.js native test runner for windows
Expand Down Expand Up @@ -327,7 +333,8 @@ First generation of application server with following features
- Connection drivers for database engines: MongoDB, PgSQL, Oracle, MySQL
- Support GeoIP, health monitoring, task scheduling, server-side templating

[unreleased]: https://github.com/metarhia/impress/compare/v3.0.7...HEAD
[unreleased]: https://github.com/metarhia/impress/compare/v3.0.8...HEAD
[3.0.8]: https://github.com/metarhia/impress/compare/v3.0.7...v3.0.8
[3.0.7]: https://github.com/metarhia/impress/compare/v3.0.6...v3.0.7
[3.0.6]: https://github.com/metarhia/impress/compare/v3.0.5...v3.0.6
[3.0.5]: https://github.com/metarhia/impress/compare/v3.0.4...v3.0.5
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ const res = await metacom.api.example.citiesByCountry({ countryId: 3 });

## Requirements

- Node.js v16.0.0 or later (v18 preferred)
- Linux (tested on Fedora 36, 37, Ubuntu 18, 20 and 22, CentOS 7, 8, 9)
- Postgresql 11 or later (v14 preferred)
- Node.js v18.x or v20.x
- Linux (tested on Fedora v36-38, Ubuntu v18-23, CentOS v7-9)
- Postgresql v11-16
- OpenSSL v3 or later (optional, for https & wss)
- [certbot](https://github.com/certbot/certbot) (recommended but optional)

Expand Down
66 changes: 33 additions & 33 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "impress",
"version": "3.0.7",
"version": "3.0.8",
"author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",
"description": "Enterprise application server for Node.js",
"license": "MIT",
Expand Down Expand Up @@ -62,12 +62,12 @@
"node": "18 || 20"
},
"dependencies": {
"metacom": "^3.1.0",
"metacom": "^3.1.1",
"metaconfiguration": "^2.1.11",
"metalog": "^3.1.12",
"metaschema": "^2.1.5",
"metautil": "^3.13.0",
"metavm": "^1.2.6",
"metautil": "^3.14.0",
"metavm": "^1.3.0",
"metawatch": "^1.1.1"
},
"devDependencies": {
Expand Down

0 comments on commit 0c8c502

Please sign in to comment.