-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from PLG-Works/prep_for_ph_launch
Release 1.0
- Loading branch information
Showing
33 changed files
with
568 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
package-lock.json | ||
|
||
# SDK | ||
/.idea | ||
/.idea/* | ||
.DS_Store | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# Bower dependency directory (https://bower.io/) | ||
bower_components | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directories | ||
node_modules/ | ||
jspm_packages/ | ||
|
||
# Dev Folder | ||
.dev | ||
|
||
# Debug log from npm | ||
npm-debug.log | ||
.vscode | ||
|
||
# Typescript v1 declaration files | ||
typings/ | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# dotenv environment variables file | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
dist: bionic | ||
language: node_js | ||
sudo: required | ||
branches: | ||
only: | ||
- master | ||
- prep_for_ph_launch | ||
- /^release-.*/ | ||
notifications: | ||
email: | ||
recipients: | ||
- [email protected] | ||
on_success: always | ||
on_failure: always | ||
node_js: | ||
- "18" | ||
- "16" | ||
services: | ||
- "memcached" | ||
before_install: | ||
- sudo apt-get update | ||
- sudo apt-get install nodejs | ||
- sudo apt-get install npm | ||
install: | ||
- npm install | ||
before_script: | ||
- memcached -p 11212 -d | ||
- memcached -p 11213 -d | ||
- memcached -p 11214 -d | ||
- memcached -p 11215 -d | ||
- sudo redis-server /etc/redis/redis.conf --port 6380 --requirepass 'my-secret' | ||
- sudo redis-server /etc/redis/redis.conf --port 6381 --requirepass 'my-secret' | ||
- ps aux | grep 'memcached' | ||
- ps aux | grep 'redis-server' | ||
script: | ||
- npm run test | ||
after_script: "skip" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,3 @@ | ||
## Cache v1.0.3 | ||
- LICENSE changes. | ||
|
||
## Cache v1.0.2 | ||
- `redis` NPM version updated to 3.1.1 for fixing `Potential exponential regex in monitor mode` security vulnerability. | ||
|
||
## Cache v1.0.1 | ||
- First time cache set intermittent issue fixed for memcached. | ||
|
||
## Cache v1.0.0 | ||
- Cache is cache implementation of three caching engines Memcached, Redis and In-memory. | ||
## UniCache v1.0.0-beta.1 | ||
- First release of UniCache having support for 3 caching engines - Memcached, Redis and In-memory Cache | ||
- Test case coverage improved to 95%. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Contributing | ||
|
||
Helping hands are always welcome to contribute with bug fixes and enhancements to UniCache. Feel free to report issues | ||
which you observe while integrating UniCache in your project. | ||
|
||
## How to Report Issues | ||
To report an issue, please use the [Github issues tracker](https://github.com/PLG-Works/UniCache/issues). When reporting issues, | ||
please mention the following details, whichever applicable: | ||
- Steps to reproduce with sample snippets. | ||
- Actual vs. expected behaviour. | ||
- Whether it is a bug or proposed enhancement. | ||
- Release version which the issue is concerned with. | ||
|
||
## Workflow for Pull Requests | ||
In order to contribute, please fork off the particular release-{version} branch and make your changes there. Your commit | ||
messages should detail why you made your change in addition to what you did (unless it is a tiny change). | ||
|
||
If you are enhancing with a new feature, please ensure to add appropriate test cases under `test/` folder. It's also a | ||
good practice to add new test cases in case of bug fixes too. | ||
|
||
Please update CHANGELOG.md with each PR. | ||
|
||
If you are taking up a big change, please add an issue and discuss with the UniCache team first to get opinions from | ||
multiple developers. | ||
|
||
Finally, please respect the coding style of this project. And of course, please test your code thoroughly before raising PR. | ||
|
||
Thank you for your help! | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.0.3 | ||
1.0.0-beta.1 |
Oops, something went wrong.