Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
Nandana-NNR committed Nov 30, 2023
1 parent 2bedb9a commit ab67a31
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

All notable changes to this project will be documented in this file.

## [1.0.3] - 2023-11-30

### Added

* New unit test to validate updated error handling function and functional test update to capture updated error message

### Changed

* Refined `logErr()` and `fErr()` functions which handles event error messages to appropriately throw both event validation and event registration errors.

### Fixed

* Fixedbug related to event error message handling wherein all event errors were previously thrown as an improper generic error which was misleading to users. Implemented a mechanism to correctly distinguish different types of event errors and throw them appropriately

## [1.0.2] - 2023-11-10

### Added
Expand Down
2 changes: 1 addition & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@firebolt-js/mock-firebolt-cli",
"version": "1.0.2",
"version": "1.0.3",
"description": "Command-line interface for controlling the Mock Firebolt server",
"main": "./src/cli.mjs",
"scripts": {},
Expand Down
2 changes: 1 addition & 1 deletion conduit/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "conduit",
"description": "A TV app that works in concert with Mock Firebolt in Reverse Proxy mode",
"version": "1.0.2",
"version": "1.0.3",
"private": true,
"license": "Apache 2.0",
"author": "Mike Fine <[email protected]>",
Expand Down
6 changes: 3 additions & 3 deletions functional/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@firebolt-js/mock-firebolt-functional-tests",
"version": "1.0.2",
"version": "1.0.3",
"description": "Command-line interface for controlling the Mock Firebolt server",
"scripts": {
"test": "NODE_ENV=test npx jest --config=jest.config.js --silent -i",
"test": "NODE_ENV=test npx jest --config=jest.config.js",
"test:openRpcCall": "NODE_ENV=test npx jest --config=jest.config.js --forceExit -- ./tests/openRpcCall.test.mjs",
"test:healthCheck": "NODE_ENV=test npx jest --config=jest.config.js --forceExit -- ./tests/health-check.test.mjs",
"test:scope": "NODE_ENV=test npx jest --config=jest.config.js --forceExit -- ./tests/scope.test.mjs"
Expand All @@ -20,7 +20,7 @@
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-env": "^7.23.5",
"jest": "^27.0.4"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@firebolt-js/mock-firebolt",
"version": "1.0.2",
"version": "1.0.3",
"description": "Controllable mock Firebolt server",
"main": "./build/index.mjs",
"scripts": {
Expand Down

0 comments on commit ab67a31

Please sign in to comment.