Skip to content

Commit

Permalink
Merge pull request #18 from reflectivedevelopment/feature/v1.1.0
Browse files Browse the repository at this point in the history
Feature/v1.1.0
  • Loading branch information
KimEbert42 committed Nov 15, 2023
2 parents 2a6c315 + ae79ace commit 264270c
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 6 deletions.
83 changes: 83 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,86 @@
### 1.1.0 (2023-11-15)

##### Build System / Dependencies

* **deps:**
* bump semver from 7.3.8 to 7.5.4 in /load-testing/load-agent (#84) (d020c0a0)
* bump http-cache-semantics in /load-testing/load-agent (#51) (83872898)

##### Chores

* cleanup base package.json for version and changelog (f842af2d)
* remove npm lock file (93ac349c)
* cleanup using manual AFJ build (8a24f6e5)
* merge with main (d577aebc)
* clean up, add reminders (79d05db1)
* add design doc folder (ef0f1a15)
* move files to base folder (23325c3b)

##### Documentation Changes

* add CHANGELOG. update README.md (36e2d7e0)

##### New Features

* fix changelog and version numbering (d7506466)
* upgrade AFJ, add proof and cred modules (4976d200)
* upgade AFJ (9e1a0bf5)
* add WITH_MEDIATION env var (43e68c88)
* add master and worker docker-compose files (c198d08b)
* add env variable WITH_MEDIATION (733a45a6)
* add transparent design png (77e0cff1)
* add nonclustered instructions (27fda024)
* add README.md (c02f118d)
* add wait-for-it.sh (8292e7fb)
* add scenario with arbitrary fractions (aa7af648)
* add files necessary to up instances (d75e221a)
* add sample.env (4a172424)
* create verification flows and scenarios (84c7cb3f)
* variable message for mediatorMsg (da75d0db)
* abstract away credential type (974ae978)
* update ledger (2ab7de68)
* add verification timeout var (0b18d5f0)
* add revoke test (9316ab38)
* add additional load tests (5b8a3fc5)
* add load testing using AFJ as client and Locust as load testing framework (76134136)

##### Bug Fixes

* fix paths (fdea421d)
* fix network naming (bf7c12a5)
* fix mediator configuration and allow timeouts to be specified in configuration file (c984b6fc)
* make changes to upgrade afj to 0.4 (d1bb649e)
* add getting started portion (98e62a22)
* unexpose extra ports (c0e8bfd4)
* fix up nonclustered documentation (feaf9741)
* default WITH_MEDIATION to True (08930f1a)
* remove duplicate files with the WITH_MEDIATION env var (41503482)
* instructions for setting up VM for locust (98b300dc)
* ACA-Py VM to Database VM (8ee8e9f8)
* remove file (9dcb8b92)
* name, folder of NONCLUSTERED.md (e085ac0d)
* put design png as transparent (8c7f14d3)
* var for genesis url (c99d2b0b)
* remove print statements (c508ad6a)
* update genesis file (54fd0487)
* port number for unclustered (05540bae)
* dockerfile (b3ddaedd)
* switch dir sample.env, change to loremipsum 1KB (e5d5b8ea)
* add os.getenv for CRED_ATTR (91b94245)
* move sample.env to root dir (00b48476)
* fix instructions (4fe83e73)
* fix clone url (4d9c92a4)
* fix copyright header (fc8354dc)

##### Other Changes

* add issuer post notes (9b373f1c)
* add additional doc files. (1ff6391c)
* adding more design doc details (5379c8c4)
* add command documentation (29dbb47e)
* adding subprocess doc (0805c148)
* continuing doc about design (7b3dc7de)

#### 1.0.0 (2023-10-03)

##### Build System / Dependencies
Expand Down
2 changes: 1 addition & 1 deletion load-agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "load-agent",
"version": "1.0.0",
"version": "1.1.0",
"description": "",
"main": "agent.ts",
"scripts": {
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.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "aries-akrida",
"version": "1.0.0",
"version": "1.1.0",
"description": "The Aries Akrida is designed to load test various Hyperledger Aries deployments",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -s -m 'updated CHANGELOG.md' && npm version --no-git-tag-version major && cd load-agent && npm version --no-git-tag-version major",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -s -m 'updated CHANGELOG.md' && npm version --no-git-tag-version minor && cd load-agent && npm --no-git-tag-version version minor",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -s -m 'updated CHANGELOG.md' && npm version --no-git-tag-version patch && cd load-agent && npm version --no-git-tag-version patch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
Expand Down

0 comments on commit 264270c

Please sign in to comment.