Skip to content

Commit

Permalink
Merge branch 'release/2.1.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
dhenl2 committed Jan 31, 2024
2 parents d6c7e67 + ab0e500 commit 5a082d7
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [2.1.3] - 2024-01-31
### FIXED
- Added utility class `EntityCriteria` to package exports.

## [2.1.2] - 2024-01-19
### FIXED
- Fixed bug `TypeError: Cannot read properties of undefined (reading '0')` when using `WideSkyClient.batch.hisWrite`.
Expand Down
6 changes: 4 additions & 2 deletions dist/wideskyClient.develop.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/wideskyClient.min.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const exprParser = require('./src/graphql/exprParser');
const find = require('./src/graphql/find');
const HaystackTools = require('./src/utils/haystack');
const HisWritePayload = require('./src/utils/hisWritePayload');
const EntityCriteria = require("./src/utils/EntityCriteria");

/* Exported symbols */
const jsWidesky = {
Expand All @@ -38,7 +39,8 @@ const jsWidesky = {
find
},
hsTools: HaystackTools,
HisWritePayload
HisWritePayload,
EntityCriteria
};

module.exports = jsWidesky;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@widesky/jswidesky-client",
"version": "2.1.2",
"version": "2.1.3",
"description": "WideSky Client in JavaScript",
"main": "index.js",
"private": false,
Expand Down

0 comments on commit 5a082d7

Please sign in to comment.