Skip to content

Commit

Permalink
v1.2.51
Browse files Browse the repository at this point in the history
  • Loading branch information
binary-person committed Dec 11, 2022
1 parent dad4acd commit 3ef1e8a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.2.51

- add newly added classes to exports in src/index.js

## v1.2.5

- replace broken `keyv-lru-files` with own implementation of JS caching
Expand Down
2 changes: 1 addition & 1 deletion 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": "rammerhead",
"version": "1.2.5",
"version": "1.2.51",
"description": "User friendly web proxy powered by testcafe-hammerhead",
"main": "src/index.js",
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ const addStaticFilesToProxy = require('./util/addStaticDirToProxy');
const RammerheadSessionMemoryStore = require('./classes/RammerheadMemoryStore');
const StrShuffler = require('./util/StrShuffler');
const URLPath = require('./util/URLPath');
const RammerheadJSAbstractCache = require('./classes/RammerheadJSAbstractCache.js');
const RammerheadJSFileCache = require('./classes/RammerheadJSFileCache.js');
const RammerheadJSMemCache = require('./classes/RammerheadJSMemCache.js');

module.exports = {
RammerheadProxy,
Expand All @@ -16,6 +19,9 @@ module.exports = {
RammerheadSessionAbstractStore,
RammerheadSessionMemoryStore,
RammerheadSessionFileCache,
RammerheadJSAbstractCache,
RammerheadJSFileCache,
RammerheadJSMemCache,
StrShuffler,
generateId,
addStaticFilesToProxy,
Expand Down

0 comments on commit 3ef1e8a

Please sign in to comment.