author
int64
658
755k
date
stringlengths
19
19
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
list
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
86,096
18.12.2020 12:12:57
28,800
d1e61a442b36ad358d14b1cb204744fed0e10cf7
Format v4 topic search responses
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v3/serializers/search.py", "new_path": "server/vcr-server/api/v3/serializers/search.py", "diff": "@@ -112,7 +112,7 @@ class AddressAutocompleteSerializer(AriesAutocompleteSerializer):\n\"topic_type\" \"credential_id\", \"credential_type\"...
Python
Apache License 2.0
bcgov/aries-vcr
Format v4 topic search responses Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
18.12.2020 15:56:43
28,800
b9f113cc95c0907b3025c75404b888472f5a5efa
Fix v4 topic search filtering
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v2/serializers/search.py", "new_path": "server/vcr-server/api/v2/serializers/search.py", "diff": "@@ -305,18 +305,14 @@ class CredentialFacetSerializer(HaystackFacetSerializer):\nfields = [\n\"category\",\n\"credential_type_id\",\n- \"iss...
Python
Apache License 2.0
bcgov/aries-vcr
Fix v4 topic search filtering Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
18.12.2020 16:12:43
28,800
956511699e14d639ca2b82b996711972a77a8b68
Format v4 topic facet search responses
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v4/serializers/search/topic.py", "new_path": "server/vcr-server/api/v4/serializers/search/topic.py", "diff": "import logging\n+from collections import OrderedDict\nfrom rest_framework.serializers import SerializerMethodField\nfrom drf_hay...
Python
Apache License 2.0
bcgov/aries-vcr
Format v4 topic facet search responses Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
21.12.2020 11:41:34
28,800
325f04d46ee8fd6462adaa424056e6c1f2f62ef7
v4 credential search iherits from v3 credential search
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v4/views/search/credential.py", "new_path": "server/vcr-server/api/v4/views/search/credential.py", "diff": "@@ -10,9 +10,8 @@ from api.v2.search.filters import (\nStatusFilter,\n)\n-from api.v2.views.search import CredentialSearchView\n-\...
Python
Apache License 2.0
bcgov/aries-vcr
v4 credential search iherits from v3 credential search Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
23.12.2020 12:41:47
28,800
b81f329de714147681b7b08166d806d34d135140
Adds None checks on TopicIndex creation
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v3/indexes/Topic.py", "new_path": "server/vcr-server/api/v3/indexes/Topic.py", "diff": "@@ -27,25 +27,35 @@ class TopicIndex(TxnAwareSearchIndex, indexes.Indexable):\n@staticmethod\ndef prepare_topic_issuer_id(obj):\n+ if obj.foundational...
Python
Apache License 2.0
bcgov/aries-vcr
Adds None checks on TopicIndex creation Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
24.12.2020 09:57:31
28,800
c1cdb8929f7df8dca52c5d84ff2c312bbb08dd30
Memoizes field name lookups when formatting facet counts
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v4/serializers/search/topic.py", "new_path": "server/vcr-server/api/v4/serializers/search/topic.py", "diff": "@@ -4,7 +4,12 @@ from collections import OrderedDict\nfrom rest_framework.serializers import SerializerMethodField\nfrom drf_hay...
Python
Apache License 2.0
bcgov/aries-vcr
Memoizes field name lookups when formatting facet counts Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
24.12.2020 18:22:29
28,800
27a7ae3fd5781b9ab58e5bb11cc659ee6f43e6c0
Update search to v4. Fix UI issues in search result list
[ { "change_type": "MODIFY", "old_path": "client/src/app/data-types.ts", "new_path": "client/src/app/data-types.ts", "diff": "@@ -369,6 +369,9 @@ export namespace Model {\naddresses: Address[];\nlocal_name: Name;\nremote_name: Name;\n+ credential_type: CredentialType;\n+ credential_set: CredentialSet;...
Python
Apache License 2.0
bcgov/aries-vcr
Update search to v4. Fix UI issues in search result list Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
24.12.2020 19:04:40
28,800
bab0a12419a9c13844abedc7fbb985e3e5fcd97b
Fix search query in basic search
[ { "change_type": "MODIFY", "old_path": "client/src/app/search/form.component.ts", "new_path": "client/src/app/search/form.component.ts", "diff": "@@ -9,7 +9,7 @@ import { Subscription } from 'rxjs';\nconst FilterSpec = [\n{\n- name: \"name\",\n+ name: \"q\",\nalias: \"query\",\nhidden: true\n},\n@@ ...
Python
Apache License 2.0
bcgov/aries-vcr
Fix search query in basic search Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
25.12.2020 09:56:12
28,800
61e08fee3639384aa88d19cdd5e458689eb058ad
Fix category facet filtering for v4 search
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v4/search/filters/topic.py", "new_path": "server/vcr-server/api/v4/search/filters/topic.py", "diff": "@@ -19,12 +19,13 @@ filter_display_names = ['category', 'type_id', 'issuer_id', 'inactive', 'revoked\nclass FilterBuilderBase(BaseQueryB...
Python
Apache License 2.0
bcgov/aries-vcr
Fix category facet filtering for v4 search Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
25.12.2020 10:20:20
28,800
f33a98147f958a822ec472820bc8de003bb59a70
Query params map between basic and advanced search
[ { "change_type": "MODIFY", "old_path": "client/src/app/search/advanced-search.component.ts", "new_path": "client/src/app/search/advanced-search.component.ts", "diff": "@@ -14,7 +14,8 @@ export interface IAdvancedSearchOption {\nconst FilterSpec = [\n{\n- name: \"name\",\n+ name: \"q\",\n+ alias: \"q...
Python
Apache License 2.0
bcgov/aries-vcr
Query params map between basic and advanced search Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
25.12.2020 12:29:48
28,800
2dd17a733416641a1b7d94c30e340b2d2161630a
Historical facet filtering on advanced search aligns with basic search
[ { "change_type": "MODIFY", "old_path": "client/src/app/search/advanced-search.component.ts", "new_path": "client/src/app/search/advanced-search.component.ts", "diff": "@@ -44,7 +44,7 @@ const FilterSpec = [\noptions: [\n{\ntlabel: \"general.show-inactive\",\n- value: \"true\"\n+ value: \"any\"\n}\n]...
Python
Apache License 2.0
bcgov/aries-vcr
Historical facet filtering on advanced search aligns with basic search Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
27.12.2020 13:21:25
28,800
790c7282326c9f257bd66476a56441d78c9eec79
Re-organizes indexes. Adds new topic index
[ { "change_type": "MODIFY", "old_path": "server/solr/cores/credential_registry/conf/schema.xml", "new_path": "server/solr/cores/credential_registry/conf/schema.xml", "diff": "<field name=\"django_ct\" type=\"string\" indexed=\"true\" stored=\"true\" multiValued=\"false\"/>\n<field name=\"django_id\" ...
Python
Apache License 2.0
bcgov/aries-vcr
Re-organizes indexes. Adds new topic index Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
27.12.2020 16:19:27
28,800
1b86485c8e766eaedd7b9f16d9a2a7726e3a4893
Adds faceting for credential type on advanced search
[ { "change_type": "MODIFY", "old_path": "client/src/app/general-data.service.ts", "new_path": "client/src/app/general-data.service.ts", "diff": "@@ -270,6 +270,8 @@ export class GeneralDataService {\ncount: optitem.count,\n};\n}\n+ } else if (optname === 'credential_type_id') {\n+ optval.label = this...
Python
Apache License 2.0
bcgov/aries-vcr
Adds faceting for credential type on advanced search Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
28.12.2020 13:28:49
28,800
c7edbdde87a01052576c4837f88cef690e76d8ad
Fixes facet narrowing on topic category query paramters
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v4/search/filters/topic.py", "new_path": "server/vcr-server/api/v4/search/filters/topic.py", "diff": "@@ -24,7 +24,7 @@ class FilterBuilderBase(BaseQueryBuilder):\ndef format_filters(self, **filters):\nfor fname, fval in filters.copy().it...
Python
Apache License 2.0
bcgov/aries-vcr
Fixes facet narrowing on topic category query paramters Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
28.12.2020 13:31:03
28,800
5b183439840e1b9f9b05009753505e1e4e583213
All query parameters map over from basic search to advanced search
[ { "change_type": "MODIFY", "old_path": "client/src/app/search/advanced-search.component.ts", "new_path": "client/src/app/search/advanced-search.component.ts", "diff": "@@ -78,6 +78,7 @@ export class AdvancedSearchComponent implements OnInit, OnDestroy {\ncredentialTypeOptions$: Observable<ISelectOpt...
Python
Apache License 2.0
bcgov/aries-vcr
All query parameters map over from basic search to advanced search Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
28.12.2020 13:31:39
28,800
ce0f03e8bf5d4c26cb8c716ecc6f67243ee98430
Update client autocomplete to v3
[ { "change_type": "MODIFY", "old_path": "client/src/app/general-data.service.ts", "new_path": "client/src/app/general-data.service.ts", "diff": "@@ -148,26 +148,13 @@ export class GeneralDataService {\nreturn from([]);\n}\nlet params = new HttpParams().set('q', term).append('inactive', inactive.toStr...
Python
Apache License 2.0
bcgov/aries-vcr
Update client autocomplete to v3 Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
28.12.2020 14:18:57
28,800
e1e299c9c81b56f9e0b5d106123165f987721963
Advanced search form values map from query params on page load
[ { "change_type": "MODIFY", "old_path": "client/src/app/search/advanced-search.component.ts", "new_path": "client/src/app/search/advanced-search.component.ts", "diff": "@@ -89,9 +89,6 @@ export class AdvancedSearchComponent implements OnInit, OnDestroy {\n{ label: 'historical credentials', helper: 'I...
Python
Apache License 2.0
bcgov/aries-vcr
Advanced search form values map from query params on page load Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
28.12.2020 19:47:48
28,800
2ca7b4c2eb9a7b73d1c8f333d16fb290916e6181
Ensure inactive and revoked tags show in search results
[ { "change_type": "MODIFY", "old_path": "client/src/app/data-types.ts", "new_path": "client/src/app/data-types.ts", "diff": "@@ -372,6 +372,8 @@ export namespace Model {\ncredential_type: CredentialType;\ncredential_set: CredentialSet;\neffective_date: string;\n+ inactive: boolean;\n+ revoked: boolea...
Python
Apache License 2.0
bcgov/aries-vcr
Ensure inactive and revoked tags show in search results Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
29.12.2020 07:10:59
28,800
428d06bf1387b1bf067de84e7983f51c3c4f8dd0
Declare abstract serializer methods
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v3/serializers/search.py", "new_path": "server/vcr-server/api/v3/serializers/search.py", "diff": "import logging\n+from abc import abstractmethod\n+\nfrom rest_framework.serializers import SerializerMethodField\nfrom drf_haystack.serializ...
Python
Apache License 2.0
bcgov/aries-vcr
Declare abstract serializer methods Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
30.12.2020 10:27:03
28,800
2e2a69821794b13d500327bb729cb5f1c6a26c64
Fix credential links and labels
[ { "change_type": "MODIFY", "old_path": "client/themes/base/cred/list.component.html", "new_path": "client/themes/base/cred/list.component.html", "diff": "+<!-- Credential cards -->\n<div class=\"creds-grid\" *ngIf=\"format==='cards' && records?.length\">\n<div class=\"cred-card\" *ngFor=\"let cred o...
Python
Apache License 2.0
bcgov/aries-vcr
Fix credential links and labels Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
04.01.2021 14:31:28
28,800
3d65c6f18292864bfeb5f7ffda47436b833356de
Select FormControl should not be private
[ { "change_type": "MODIFY", "old_path": "client/src/app/shared/components/select/select.component.ts", "new_path": "client/src/app/shared/components/select/select.component.ts", "diff": "@@ -20,7 +20,7 @@ export interface ISelectOption {\n],\n})\nexport class SelectComponent implements ControlValueAc...
Python
Apache License 2.0
bcgov/aries-vcr
Select FormControl should not be private Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
08.01.2021 09:34:40
28,800
9f2d7098bb3ae99e948677514ab7952554774a41
Restores DEBUG flags to resolve swagger page loading
[ { "change_type": "MODIFY", "old_path": "docker/manage", "new_path": "docker/manage", "diff": "@@ -425,7 +425,7 @@ configureEnvironment() {\nexport STI_SCRIPTS_PATH=${STI_SCRIPTS_PATH:-/usr/libexec/s2i}\nexport RUST_LOG=${RUST_LOG:-warn}\nexport RUST_BACKTRACE=${RUST_BACKTRACE:-full}\n- export DEBUG=...
Python
Apache License 2.0
bcgov/aries-vcr
Restores DEBUG flags to resolve swagger page loading Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
08.01.2021 10:30:41
28,800
158d78d8385cc59dec95ed369b3ebdabe0d82a43
`DEBUG` flag is case sensitive in docker
[ { "change_type": "MODIFY", "old_path": "docker/manage", "new_path": "docker/manage", "diff": "@@ -425,7 +425,7 @@ configureEnvironment() {\nexport STI_SCRIPTS_PATH=${STI_SCRIPTS_PATH:-/usr/libexec/s2i}\nexport RUST_LOG=${RUST_LOG:-warn}\nexport RUST_BACKTRACE=${RUST_BACKTRACE:-full}\n- export DEBUG=...
Python
Apache License 2.0
bcgov/aries-vcr
`DEBUG` flag is case sensitive in docker Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
23.01.2021 20:34:49
28,800
b2f7b6a633bf6a6ff908ca8e47e54d5397e922d5
Format credential names correctly on timeline
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v2/models/Credential.py", "new_path": "server/vcr-server/api/v2/models/Credential.py", "diff": "@@ -55,10 +55,10 @@ class Credential(Auditable):\nreturn cache[key]\ndef get_local_name(self):\n- return local_name(self.all_names)\n+ return ...
Python
Apache License 2.0
bcgov/aries-vcr
Format credential names correctly on timeline Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,093
25.01.2021 09:54:33
28,800
a9e0eee94fb0536c8cc088b4d5bfb3ab578f16e2
External Schema/Services credential type rendering bug When 'name.' + <value> not found in translation resources, displays as name.<value>, just display <value>
[ { "change_type": "MODIFY", "old_path": "client/src/app/app.module.ts", "new_path": "client/src/app/app.module.ts", "diff": "@@ -35,6 +35,7 @@ import { UtilModule } from './util/util.module';\nimport { environment } from '../environments/environment';\nconst ROUTE_PREFIX: string = 'ROUTES.';\n+const ...
Python
Apache License 2.0
bcgov/aries-vcr
External Schema/Services credential type rendering bug When 'name.' + <value> not found in translation resources, displays as name.<value>, just display <value> Signed-off-by: Jason Sherman <jsherman@parcsystems.ca>
86,096
02.02.2021 09:04:23
28,800
8cbf34e4ef71c782a61a3224d1e6707304f87514
Excludes names in formatted Topics unless `entity_name` or `entity_name_assumed`
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v2/serializers/search.py", "new_path": "server/vcr-server/api/v2/serializers/search.py", "diff": "@@ -159,7 +159,11 @@ class CustomTopicSerializer(TopicSerializer):\ndef get_names(self, obj):\nnames = Name.objects.filter(\ncredential__top...
Python
Apache License 2.0
bcgov/aries-vcr
Excludes names in formatted Topics unless `entity_name` or `entity_name_assumed` Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
08.02.2021 17:46:49
28,800
9d9eac0b855b1432a86f68d3b3ec81567b6547c7
Setting `DEBUG` to `false` will still allow Swagger API to load
[ { "change_type": "ADD", "old_path": null, "new_path": "docker/docker-compose.dev.yml", "diff": "+version: \"3\"\n+services:\n+ vcr-api:\n+ volumes:\n+ - ../server/vcr-server/vcr_server:/home/indy/vcr_server\n+ - ../server/vcr-server/subscriptions:/home/indy/subscriptions\n+ - ../server/vcr-server/ag...
Python
Apache License 2.0
bcgov/aries-vcr
Setting `DEBUG` to `false` will still allow Swagger API to load Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
09.02.2021 10:13:47
28,800
5f53a10a89a42eb902ae49e64f2b1f64c9c1bf12
Update docker-compose.dev.yml
[ { "change_type": "MODIFY", "old_path": "docker/docker-compose.dev.yml", "new_path": "docker/docker-compose.dev.yml", "diff": "# This configuration file overrides the settings in\n-# `./docker-compose.dev.yml` when `DEBUG` is set\n+# `./docker-compose.yml` when `DEBUG` is set\n# to `true`.\n#\n# For ...
Python
Apache License 2.0
bcgov/aries-vcr
Update docker-compose.dev.yml Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
16.03.2021 13:32:43
25,200
50e40c668b1e5cdf443f8460547788ee5ed11be6
Add reindex signal to credential, remove from topic
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v2/models/Credential.py", "new_path": "server/vcr-server/api/v2/models/Credential.py", "diff": "@@ -7,6 +7,8 @@ from api.v2.utils import local_name, remote_name\nclass Credential(Auditable):\n+ reindex_related = [\"topic\"]\n+\ntopic = mo...
Python
Apache License 2.0
bcgov/aries-vcr
Add reindex signal to credential, remove from topic Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
23.03.2021 13:24:25
25,200
2c49f00bb4a8d3db7ac92fc2b8ff88a91ac98d1d
Prevent duplicate autocomplete results from displaying
[ { "change_type": "MODIFY", "old_path": "client/src/app/general-data.service.ts", "new_path": "client/src/app/general-data.service.ts", "diff": "@@ -142,12 +142,16 @@ export class GeneralDataService {\nreturn this._recordCounts[type] || 0;\n}\n- autocomplete(term, inactive: '' | boolean = false): Obs...
Python
Apache License 2.0
bcgov/aries-vcr
Prevent duplicate autocomplete results from displaying Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,103
07.04.2021 09:53:39
25,200
1f1a687dc7bd1410a5dce40da51e7d51874a2268
update solr version
[ { "change_type": "MODIFY", "old_path": "server/solr/cores/credential_registry/conf/solrconfig.xml", "new_path": "server/solr/cores/credential_registry/conf/solrconfig.xml", "diff": "that you fully re-index after changing this setting as it can\naffect both how text is indexed and queried.\n-->\n- <l...
Python
Apache License 2.0
bcgov/aries-vcr
update solr version Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,096
08.04.2021 21:51:36
25,200
47374285a8da6ff1540a3e28e325373b1253360b
First pass at processing credentials using `issue-credential` 2.0 protocol
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/agent_webhooks/views.py", "new_path": "server/vcr-server/agent_webhooks/views.py", "diff": "@@ -3,6 +3,7 @@ import logging\nimport time\nimport os\nimport random\n+import base64\nfrom django.conf import settings\nfrom drf_yasg.utils import sw...
Python
Apache License 2.0
bcgov/aries-vcr
First pass at processing credentials using `issue-credential` 2.0 protocol Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,103
13.04.2021 11:29:24
25,200
0f0e0a7e195a4020316a43f8b7b5e8de097db2b8
update solr for mange script
[ { "change_type": "MODIFY", "old_path": "docker/manage", "new_path": "docker/manage", "diff": "@@ -278,7 +278,7 @@ build-solr() {\n#\necho -e \"\\nBuilding solr-base image ...\"\ndocker build \\\n- https://github.com/bcgov/openshift-solr.git \\\n+ 'https://github.com/bcgov/openshift-solr.git#solr-8.8...
Python
Apache License 2.0
bcgov/aries-vcr
update solr for mange script Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,096
15.04.2021 18:49:41
25,200
b6fd73c15f72faef316b69c003f3d2056ace4a32
Remove IP address from feedback email
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v2/feedback.py", "new_path": "server/vcr-server/api/v2/feedback.py", "diff": "@@ -8,7 +8,7 @@ from smtplib import SMTP, SMTPException\nLOGGER = logging.getLogger(__name__)\n-def email_feedback(ip_addr, reply_name, reply_email, reason, com...
Python
Apache License 2.0
bcgov/aries-vcr
Remove IP address from feedback email Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
26.04.2021 08:32:34
25,200
6f1eebbd7451bd5f716036068ba9429ed2d5a1c7
Fixes indexing bug when credential added for the first time
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/agent_webhooks/utils/credential.py", "new_path": "server/vcr-server/agent_webhooks/utils/credential.py", "diff": "@@ -58,6 +58,7 @@ else:\nprint(\">>> NO not creating detail claims for credentials\")\nCREATE_CREDENTIAL_CLAIMS = False\n+\ndef ...
Python
Apache License 2.0
bcgov/aries-vcr
Fixes indexing bug when credential added for the first time Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,100
26.04.2021 11:10:46
21,600
2e0439dc6479545c2311a1316843c2d5744d094f
New readme and images New README, which includes new Aries VCR logo and new architecture diagram
[ { "change_type": "ADD", "old_path": "docs/assets/aries-vcr-architecture-diagram.png", "new_path": "docs/assets/aries-vcr-architecture-diagram.png", "diff": "Binary files /dev/null and b/docs/assets/aries-vcr-architecture-diagram.png differ\n" }, { "change_type": "ADD", "old_path": "docs/...
Python
Apache License 2.0
bcgov/aries-vcr
New readme and images New README, which includes new Aries VCR logo and new architecture diagram Signed-off-by: alexgmetcalf <75134312+alexgmetcalf@users.noreply.github.com>
86,096
29.04.2021 12:05:02
25,200
90d195d9ced0755f8f9dc4db6a157a8ec215f911
Refactor 1.0 and 2.0 Issue Credential protocol handler code into common functions'
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/agent_webhooks/views.py", "new_path": "server/vcr-server/agent_webhooks/views.py", "diff": "@@ -191,75 +191,8 @@ def handle_credentials(state, message):\nfor attr in raw_credential[\"values\"]:\ncredential_data[\"attrs\"][attr] = raw_credenti...
Python
Apache License 2.0
bcgov/aries-vcr
Refactor 1.0 and 2.0 Issue Credential protocol handler code into common functions' Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
29.04.2021 20:51:58
25,200
a75efb890f507f136089392b911eb1c9eeb6bdb5
Refactor random errors into functions
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/agent_webhooks/views.py", "new_path": "server/vcr-server/agent_webhooks/views.py", "diff": "@@ -172,13 +172,11 @@ def handle_credentials(state, message):\nraw_credential = message[\"raw_credential\"]\n# You can include this exception to test ...
Python
Apache License 2.0
bcgov/aries-vcr
Refactor random errors into functions Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
03.05.2021 12:06:44
25,200
cd027eb0c9104f45c866cfe34d8c026d2c1ef32f
Refactor random error functions
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/agent_webhooks/views.py", "new_path": "server/vcr-server/agent_webhooks/views.py", "diff": "@@ -172,11 +172,11 @@ def handle_credentials(state, message):\nraw_credential = message[\"raw_credential\"]\n# You can include this exception to test ...
Python
Apache License 2.0
bcgov/aries-vcr
Refactor random error functions Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
03.05.2021 12:27:55
25,200
e9c97210cefeb76048e4564c3a6924537b2942cf
Remove random 404 error, better done with a unit test
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/agent_webhooks/views.py", "new_path": "server/vcr-server/agent_webhooks/views.py", "diff": "@@ -174,9 +174,6 @@ def handle_credentials(state, message):\n# You can include this exception to test error reporting\nif RANDOM_ERRORS:\nraise_random...
Python
Apache License 2.0
bcgov/aries-vcr
Remove random 404 error, better done with a unit test Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
07.05.2021 07:19:06
25,200
cef7cd153def38f6e559d5e81068dd0f233952bd
Add GDX analytics to header
[ { "change_type": "MODIFY", "old_path": "client/themes/bcgov/index.html", "new_path": "client/themes/bcgov/index.html", "diff": "<!doctype html>\n<html class=\"fill-height-md\">\n+\n<head>\n<meta charset=\"utf-8\">\n<title>OrgBook BC</title>\n</script>\n<!-- End Matomo Code -->\n+ <script type=\"text...
Python
Apache License 2.0
bcgov/aries-vcr
Add GDX analytics to header Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
10.05.2021 17:16:38
25,200
ce53bf80f4be40276bbecb62876be424af27c2ef
Update message family for registering issuer
[ { "change_type": "MODIFY", "old_path": "docker/vcr-agent/Dockerfile", "new_path": "docker/vcr-agent/Dockerfile", "diff": "-FROM bcgovimages/aries-cloudagent:py36-1.15-1_0.6.0\n+FROM bcgovimages/aries-cloudagent:py36-1.16-0_0.7-pre.0\nRUN pip3 install --no-cache-dir -e \"git+https://github.com/bcgov/...
Python
Apache License 2.0
bcgov/aries-vcr
Update message family for registering issuer Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
12.05.2021 13:10:57
25,200
e32d475996f2dbde8677d7fb695fac09d80e131b
Adds missing properties back to `IssuerRegistrationState` model
[ { "change_type": "MODIFY", "old_path": "docker/vcr-agent/Dockerfile", "new_path": "docker/vcr-agent/Dockerfile", "diff": "FROM bcgovimages/aries-cloudagent:py36-1.16-0_0.7-pre.0\n-RUN pip3 install --no-cache-dir -e \"git+https://github.com/bcgov/aries-vcr.git#egg=issuer-registration&subdirectory=ser...
Python
Apache License 2.0
bcgov/aries-vcr
Adds missing properties back to `IssuerRegistrationState` model Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
19.05.2021 12:22:38
25,200
342a8535a572a5cce81559ac54748324901dc06a
Update collector variable
[ { "change_type": "MODIFY", "old_path": "client/themes/bcgov/index.html", "new_path": "client/themes/bcgov/index.html", "diff": "n.src = w; g.parentNode.insertBefore(n, g)\n}\n}(window, document, \"script\", \"https://www2.gov.bc.ca/StaticWebResources/static/sp/sp-2-14-0.js\", \"snowplow\"));\n- var ...
Python
Apache License 2.0
bcgov/aries-vcr
Update collector variable Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
21.05.2021 08:49:49
25,200
5fcfb3232281f1a7a1e81444bc789e8a554f836f
Wraps credential receiver in a try/except block, updates parameter for problem report
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/agent_webhooks/views.py", "new_path": "server/vcr-server/agent_webhooks/views.py", "diff": "@@ -511,7 +511,9 @@ def handle_credentials_2_0(state, message):\nresp = call_agent_with_retry(\nf\"{settings.AGENT_ADMIN_URL}/issue-credential-2.0/rec...
Python
Apache License 2.0
bcgov/aries-vcr
Wraps credential receiver in a try/except block, updates parameter for problem report Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
21.01.2021 16:00:17
28,800
3f6fe85377f4d7c7238e138c22f06a77ce242d57
Remove deprecated manage functions for building client
[ { "change_type": "MODIFY", "old_path": "docker/docker-compose.yml", "new_path": "docker/docker-compose.yml", "diff": "@@ -35,8 +35,7 @@ services:\n- NODE_ENV=development\n- NPM_CONFIG_LOGLEVEL=notice\n- NPM_RUN=dev\n- - THEME=${THEME}\n- - THEME_PATH=${THEME_PATH_DEV}\n+ - WEB_REPO_URL=${WEB_REPO_UR...
Python
Apache License 2.0
bcgov/aries-vcr
Remove deprecated manage functions for building client Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
21.01.2021 20:24:41
28,800
6ca7c9c865cfe6467997d0984f4e24846d58d56d
Manage command for pulling and extracting client repo
[ { "change_type": "MODIFY", "old_path": "docker/manage", "new_path": "docker/manage", "diff": "@@ -147,9 +147,13 @@ function echoYellow (){\n}\nfunction copyClientRepo(){\n- _dirname = '../client'\n+ _client_dirname=\"../client\"\n+ _gitignore=\"../.gitignore\"\necho \"Creating client directory\"\n- ...
Python
Apache License 2.0
bcgov/aries-vcr
Manage command for pulling and extracting client repo Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
22.01.2021 14:03:32
28,800
73bb3b395f7013de713383b6d76ea5b00c552243
Only build client when env variable specified
[ { "change_type": "MODIFY", "old_path": "docker/docker-compose.yml", "new_path": "docker/docker-compose.yml", "diff": "@@ -13,6 +13,8 @@ services:\n- RealIpFrom=${RealIpFrom}\n- HTTP_BASIC_USERNAME=${HTTP_BASIC_USERNAME}\n- HTTP_BASIC_PASSWORD=${HTTP_BASIC_PASSWORD}\n+ - CLIENT=${CLIENT}\n+ - WEB_REP...
Python
Apache License 2.0
bcgov/aries-vcr
Only build client when env variable specified Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
22.01.2021 14:45:31
28,800
1625cb47d6ddfb24b825ebee6d76ccac4aaab6d7
Updates documentation for running client build
[ { "change_type": "MODIFY", "old_path": "docker/README.md", "new_path": "docker/README.md", "diff": "@@ -84,9 +84,6 @@ The Credential Registry can also be brought up in a state where local modificati\n./manage web-dev\n```\n-*Please note:* when using a custom theme and running in web development mode...
Python
Apache License 2.0
bcgov/aries-vcr
Updates documentation for running client build Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
16.02.2021 11:21:02
28,800
fb0a4a7febd1882d175e7c1190b5b1138bf9ab33
Rename instances of Indy Catalyst to Aries VCR
[ { "change_type": "MODIFY", "old_path": "docs/README.md", "new_path": "docs/README.md", "diff": "-# Hyperledger Indy Catalyst <!-- omit in toc -->\n-\n-![logo](/docs/assets/indy-catalyst-logo-bw.png)\n+# Hyperledger Aries VCR <!-- omit in toc -->\n# Table of Contents <!-- omit in toc -->\n- [Prerequi...
Python
Apache License 2.0
bcgov/aries-vcr
Rename instances of Indy Catalyst to Aries VCR Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
16.02.2021 12:43:13
28,800
79f10273d1d0235777d4eb673cf230f0dd073068
Update docs to add details for Aries VCR client
[ { "change_type": "MODIFY", "old_path": "docs/README.md", "new_path": "docs/README.md", "diff": "- [Prerequisites](##prerequisites)\n- [Running a VON - Verified Organizations Network](##running-a-von---verified-organizations-network)\n- [Running on Docker Locally](###running-the-network-on-docker-loc...
Python
Apache License 2.0
bcgov/aries-vcr
Update docs to add details for Aries VCR client Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
21.02.2021 12:33:04
28,800
10410ff950a4b96b208a6e856bb71cf57c306857
Removes `manage` commands and `docker-compose` configs for web/web-dev
[ { "change_type": "MODIFY", "old_path": "docker/docker-compose.yml", "new_path": "docker/docker-compose.yml", "diff": "version: \"3\"\nservices:\n- #\n- # vcr-web\n- #\n- vcr-web:\n- image: vcr-web\n- environment:\n- - DEBUG=${DEBUG}\n- - API_URL=${API_URL}\n- - APPLICATION_URL=${APPLICATION_URL}\n- ...
Python
Apache License 2.0
bcgov/aries-vcr
Removes `manage` commands and `docker-compose` configs for web/web-dev Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
21.02.2021 13:43:41
28,800
835d68d77515fd0fb191e6f03642e10df18e4f65
Updates doc links and readds `THEME` variable
[ { "change_type": "MODIFY", "old_path": "docker/manage", "new_path": "docker/manage", "diff": "@@ -347,6 +347,8 @@ configureEnvironment() {\nexport TRACE_PROOF_EVENTS=${TRACE_PROOF_EVENTS:-false}\nexport TRACE_TARGET=${TRACE_TARGET:-log}\n+ export THEME=${THEME:-base}\n+\n# rabbitmq\nexport RABBITMQ_...
Python
Apache License 2.0
bcgov/aries-vcr
Updates doc links and readds `THEME` variable Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
21.02.2021 15:34:17
28,800
039fdb0239c43f11844d020f82becf953247fbed
Remove deprecated build commands and dockerfiles
[ { "change_type": "DELETE", "old_path": "docker/angular-on-nginx/Dockerfile", "new_path": null, "diff": "-# Get community edition of nodejs v6.x\n-FROM angular-app:latest as builder\n-FROM nginx-runtime:latest\n-\n-# Copy the build artifacts from the 'builder' image\n-# to the distribution folder on ...
Python
Apache License 2.0
bcgov/aries-vcr
Remove deprecated build commands and dockerfiles Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
22.02.2021 10:21:28
28,800
843f312665d0630c8728cb6bbef46f0ba8b1ad4f
Updates docs to reflect manage scropts on client
[ { "change_type": "MODIFY", "old_path": "docs/README.md", "new_path": "docs/README.md", "diff": "@@ -255,10 +255,11 @@ To submit credentials, use Postman (or similar, based on your local configuratio\nThe Client is an optional web application that provides a UI to the API for searching and viewing cr...
Python
Apache License 2.0
bcgov/aries-vcr
Updates docs to reflect manage scropts on client Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
25.05.2021 09:45:02
25,200
88b4e6892d83f78a7d4ac48c9a5f031570a1ca58
Updates documentation for creating a new credential registry
[ { "change_type": "MODIFY", "old_path": "docs/create-new-credential-registry.md", "new_path": "docs/create-new-credential-registry.md", "diff": "+# Running Aries VCR\n-# Running the Indy Catalyst Credential Registry\n-\n-TODO overview\n-\n-\n-## How can I run the Credential Registry?\n+## How can I r...
Python
Apache License 2.0
bcgov/aries-vcr
Updates documentation for creating a new credential registry Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
26.05.2021 13:45:29
25,200
c04a27fda64b1f9d362d8d013203fa1140de41db
Adds fuzzy search endpoint to directly query solr
[ { "change_type": "ADD", "old_path": null, "new_path": "server/vcr-server/api/v4/serializers/search/fuzzy.py", "diff": "+from rest_framework import serializers\n+from rest_framework.serializers import Serializer, SerializerMethodField\n+\n+\n+class SearchSerializer(Serializer):\n+ id = SerializerMeth...
Python
Apache License 2.0
bcgov/aries-vcr
Adds fuzzy search endpoint to directly query solr Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
26.05.2021 14:20:09
25,200
d674f15c0dc98e7a64457d4522ea0bdde6abeaf8
Fix Circle CI build errors
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v4/views/search/fuzzy.py", "new_path": "server/vcr-server/api/v4/views/search/fuzzy.py", "diff": "@@ -13,7 +13,9 @@ from vcr_server.haystack import config\nfrom api.v4.serializers.search.fuzzy import SearchSerializer\n# Create a solr clie...
Python
Apache License 2.0
bcgov/aries-vcr
Fix Circle CI build errors Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
26.05.2021 16:12:43
25,200
6e0df418118a53abdce7a79f8eaa9c0b33f55234
Forward error directly to user as a 500 error
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v4/views/search/fuzzy.py", "new_path": "server/vcr-server/api/v4/views/search/fuzzy.py", "diff": "-import pysolr\n-import json\n+import json, logging, pysolr\nfrom rest_framework import permissions, status\nfrom rest_framework.response im...
Python
Apache License 2.0
bcgov/aries-vcr
Forward error directly to user as a 500 error Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
26.05.2021 16:34:54
25,200
4f8cea279d554ed0d3ecfb5ec3581434805daacd
Adds examples to the swagger description
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v4/views/search/fuzzy.py", "new_path": "server/vcr-server/api/v4/views/search/fuzzy.py", "diff": "@@ -25,7 +25,16 @@ swagger_params = [\nopenapi.Parameter(\n\"q\",\nopenapi.IN_QUERY,\n- description=\"Enter an Apache Leucene query that wil...
Python
Apache License 2.0
bcgov/aries-vcr
Adds examples to the swagger description Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
19.08.2021 15:46:35
25,200
c2162a589d335e8998b513a93e8db0a72bb70a11
Adds new Credential Type endpoint that optionally disables paging
[ { "change_type": "MODIFY", "old_path": "docker/vcr-agent/Dockerfile", "new_path": "docker/vcr-agent/Dockerfile", "diff": "-FROM bcgovimages/aries-cloudagent:py36-1.16-1_0.7.0rc1\n+FROM bcgovimages/aries-cloudagent:py36-1.16-1_0.7.0\nRUN pip3 install --no-cache-dir -e \"git+https://github.com/bcgov/a...
Python
Apache License 2.0
bcgov/aries-vcr
Adds new Credential Type endpoint that optionally disables paging Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
20.08.2021 09:10:04
25,200
fe97cfb0f89c8eafdcf0e2ca2b36e7d4e767a681
Adds new Issuer endpoint that optionally disables paging
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v4/urls.py", "new_path": "server/vcr-server/api/v4/urls.py", "diff": "@@ -7,7 +7,7 @@ from rest_framework.routers import SimpleRouter\nfrom rest_framework.urlpatterns import format_suffix_patterns\nfrom api.v4.views.search import topic, c...
Python
Apache License 2.0
bcgov/aries-vcr
Adds new Issuer endpoint that optionally disables paging Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
20.08.2021 12:30:19
25,200
8d169bbb8ce88e56df78bd792bf0e6acaab49474
Adds new Credential Set endpoint
[ { "change_type": "ADD", "old_path": null, "new_path": "server/vcr-server/api/v4/serializers/rest/credential.py", "diff": "+from rest_framework.serializers import (\n+ BooleanField,\n+ ModelSerializer,\n+)\n+\n+from api.v2.models.Attribute import Attribute\n+from api.v2.models.Credential import Crede...
Python
Apache License 2.0
bcgov/aries-vcr
Adds new Credential Set endpoint Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
26.08.2021 08:28:46
25,200
d77f7288e8020b4df48a55b3f37a13d60b054710
Adds names to credential set results
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v4/serializers/rest/credential.py", "new_path": "server/vcr-server/api/v4/serializers/rest/credential.py", "diff": "@@ -8,6 +8,8 @@ from api.v2.models.Credential import Credential\nfrom api.v2.models.CredentialType import CredentialType\n...
Python
Apache License 2.0
bcgov/aries-vcr
Adds names to credential set results Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,103
28.09.2021 15:51:35
25,200
27ad7420711bafa49e0405263f7328a3c3e4ba3b
updated schema to have highlighted attributes
[ { "change_type": "MODIFY", "old_path": "server/message_families/issuer_registration/indy_catalyst_issuer_registration/messages/register.py", "new_path": "server/message_families/issuer_registration/indy_catalyst_issuer_registration/messages/register.py", "diff": "@@ -66,7 +66,6 @@ class IssuerRegist...
Python
Apache License 2.0
bcgov/aries-vcr
updated schema to have highlighted attributes Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,103
28.09.2021 15:57:17
25,200
888ad305b6193e07627f159cee7b49de11475467
nit: remove print statements, fixed spelling
[ { "change_type": "MODIFY", "old_path": "server/message_families/issuer_registration/indy_catalyst_issuer_registration/messages/register.py", "new_path": "server/message_families/issuer_registration/indy_catalyst_issuer_registration/messages/register.py", "diff": "@@ -173,8 +173,6 @@ class IssuerRegi...
Python
Apache License 2.0
bcgov/aries-vcr
nit: remove print statements, fixed spelling Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,103
30.09.2021 11:03:25
25,200
0f9420b1683240bed386158fc6a80090234b9d94
fix: fixed CircleCI tests and build
[ { "change_type": "MODIFY", "old_path": ".circleci/config.yml", "new_path": ".circleci/config.yml", "diff": "@@ -18,7 +18,7 @@ jobs:\ncd ./server/vcr-server\npython3 -m venv venv\n. venv/bin/activate\n- pip install setuptools_scm\n+ pip install 'setuptools_scm<=6.0.1'\npip install -r requirements.txt...
Python
Apache License 2.0
bcgov/aries-vcr
fix: fixed CircleCI tests and build Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,103
08.10.2021 12:59:34
25,200
b285185ef29b1760fac421691da12b72ad13e5be
feat: added feedback email functionality
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v2/feedback.py", "new_path": "server/vcr-server/api/v2/feedback.py", "diff": "@@ -8,10 +8,11 @@ from smtplib import SMTP, SMTPException\nLOGGER = logging.getLogger(__name__)\n-def email_feedback(reply_name, reply_email, reason, comments):...
Python
Apache License 2.0
bcgov/aries-vcr
feat: added feedback email functionality Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,103
13.10.2021 14:16:18
25,200
f0faec27e5c815ab33b36d41adf157b0eb0c6fdd
migrated new feedback & contact endpoints to v4
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v2/feedback.py", "new_path": "server/vcr-server/api/v2/feedback.py", "diff": "@@ -8,11 +8,10 @@ from smtplib import SMTP, SMTPException\nLOGGER = logging.getLogger(__name__)\n-def email_contact(reply_name, reply_email, reason, comments, e...
Python
Apache License 2.0
bcgov/aries-vcr
migrated new feedback & contact endpoints to v4 Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,103
19.10.2021 17:23:41
25,200
aa074a49d3791b6b45627a2b44029183c2a086e3
added support for multilingunal schema labels
[ { "change_type": "MODIFY", "old_path": "server/message_families/issuer_registration/indy_catalyst_issuer_registration/messages/register.py", "new_path": "server/message_families/issuer_registration/indy_catalyst_issuer_registration/messages/register.py", "diff": "@@ -189,6 +189,9 @@ class IssuerRegi...
Python
Apache License 2.0
bcgov/aries-vcr
added support for multilingunal schema labels Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,096
25.10.2021 09:37:31
25,200
0ce65943ba38cc45290006023b6994fe949eff5a
Set paging back to 10 per result. Paging is configurable from env
[ { "change_type": "MODIFY", "old_path": "docker/docker-compose.yml", "new_path": "docker/docker-compose.yml", "diff": "@@ -79,6 +79,8 @@ services:\n- RTI_RAISE_ERRORS=${RTI_RAISE_ERRORS}\n- RANDOM_ERRORS=${RANDOM_ERRORS}\n- STARTUP_DELAY=${STARTUP_DELAY}\n+ - PAGE_SIZE=${PAGE_SIZE}\n+ - MAX_PAGE_SIZE...
Python
Apache License 2.0
bcgov/aries-vcr
Set paging back to 10 per result. Paging is configurable from env Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
25.10.2021 10:22:09
25,200
800fe4b232f97521573631123b0074fa1c145b29
Set max paging back to 200
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/vcr_server/settings.py", "new_path": "server/vcr-server/vcr_server/settings.py", "diff": "@@ -166,7 +166,7 @@ REST_FRAMEWORK = {\n# \"DEFAULT_VERSIONING_CLASS\": \"rest_framework.versioning.NamespaceVersioning\",\n\"DEFAULT_PAGINATION_CLASS\"...
Python
Apache License 2.0
bcgov/aries-vcr
Set max paging back to 200 Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,103
25.10.2021 14:35:44
25,200
f4cb0ae77695fa095a029e7b08918298a6de1fb6
added schema labels to realtionship objects
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/vcr_server/custom_settings_bcgov.py", "new_path": "server/vcr-server/vcr_server/custom_settings_bcgov.py", "diff": "@@ -39,6 +39,10 @@ def list_related_to_relations(self, request, pk=None):\n\"credential_type\": {\n\"id\": topic_relationship....
Python
Apache License 2.0
bcgov/aries-vcr
added schema labels to realtionship objects Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,103
29.10.2021 12:31:58
25,200
d04105ed39f77159dd60d4d95c42b1f0682b1c01
added claim labels to v4 credential_type endpoint
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v4/serializers/rest/credential.py", "new_path": "server/vcr-server/api/v4/serializers/rest/credential.py", "diff": "@@ -55,6 +55,22 @@ class CredentialTypeSerializer(ModelSerializer):\n\"schema\",\n)\n+class CredentialTypeClaimLabelsSeria...
Python
Apache License 2.0
bcgov/aries-vcr
added claim labels to v4 credential_type endpoint Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,103
17.11.2021 15:41:12
28,800
e5b6b28ddd63d27ef0f63b0519f2f371fc743d87
changed schema label to correct json type
[ { "change_type": "MODIFY", "old_path": "server/message_families/issuer_registration/indy_catalyst_issuer_registration/messages/register.py", "new_path": "server/message_families/issuer_registration/indy_catalyst_issuer_registration/messages/register.py", "diff": "@@ -189,8 +189,7 @@ class IssuerRegi...
Python
Apache License 2.0
bcgov/aries-vcr
changed schema label to correct json type Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,103
29.11.2021 10:02:01
28,800
315788bc8b5362ed8401c73b5a2e501c968ded6b
fixed swagger generation error
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v4/serializers/rest/credential.py", "new_path": "server/vcr-server/api/v4/serializers/rest/credential.py", "diff": "@@ -8,18 +8,9 @@ from api.v2.models.Credential import Credential\nfrom api.v2.models.CredentialType import CredentialType\...
Python
Apache License 2.0
bcgov/aries-vcr
fixed swagger generation error Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,103
30.11.2021 12:12:49
28,800
ee269b97a572ad81e69a7b6cceccc7073dcae76b
created endpoint to list cred_types by schema
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v4/serializers/rest/credential.py", "new_path": "server/vcr-server/api/v4/serializers/rest/credential.py", "diff": "@@ -7,11 +7,11 @@ from api.v2.models.Attribute import Attribute\nfrom api.v2.models.Credential import Credential\nfrom api...
Python
Apache License 2.0
bcgov/aries-vcr
created endpoint to list cred_types by schema Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,103
06.12.2021 13:57:13
28,800
4e60eaa5c0c1cce337df21e202698850a594cace
added issuer back into credential_type
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v4/serializers/rest/credential.py", "new_path": "server/vcr-server/api/v4/serializers/rest/credential.py", "diff": "@@ -29,7 +29,8 @@ class CredentialAttributeSerializer(AttributeSerializer):\nread_only_fields = fields\n-class CredentialT...
Python
Apache License 2.0
bcgov/aries-vcr
added issuer back into credential_type Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,103
08.12.2021 09:18:04
28,800
30cf7d58b4c359fbd1e8c79cc531e700928a1a90
spit credential serializer into two
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v4/serializers/rest/credential.py", "new_path": "server/vcr-server/api/v4/serializers/rest/credential.py", "diff": "@@ -29,8 +29,7 @@ class CredentialAttributeSerializer(AttributeSerializer):\nread_only_fields = fields\n-class CredentialT...
Python
Apache License 2.0
bcgov/aries-vcr
spit credential serializer into two Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,103
10.12.2021 13:06:20
28,800
1b6d2c10baaee7197ea2937b84d6eabb6edfe810
removed schema description from migrations
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v2/migrations/0029_credentialtype_schema_labels.py", "new_path": "server/vcr-server/api/v2/migrations/0029_credentialtype_schema_labels.py", "diff": "-\nfrom django.db import migrations, models\nimport django.contrib.postgres.fields.jsonb...
Python
Apache License 2.0
bcgov/aries-vcr
removed schema description from migrations Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,103
10.12.2021 15:03:01
28,800
5b1c656a46debc2ad4acdc0148f4bc72a71e60bf
Updates to schema docs
[ { "change_type": "MODIFY", "old_path": "docs/README.md", "new_path": "docs/README.md", "diff": "# Table of Contents <!-- omit in toc -->\n-- [Introduction](##introduction)\n-- [Before You Start](##before-you-start)\n-- [Repositories](##before-you-start)\n-- [Prerequisites](##prerequisites)\n-- [Runn...
Python
Apache License 2.0
bcgov/aries-vcr
Updates to schema docs Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,103
01.06.2022 09:54:31
25,200
39db80218ceddc0f484719cf75bc4aa5aa8f62a1
added support to celery 5+
[ { "change_type": "MODIFY", "old_path": "docker/manage", "new_path": "docker/manage", "diff": "@@ -176,7 +176,7 @@ build-api() {\n#\n# vcr-api\n#\n- BASE_IMAGE=\"bcgovimages/von-image:py36-1.7-ew-0-s2i\"\n+ BASE_IMAGE=\"registry.access.redhat.com/ubi9/python-39:1-52\"\necho -e \"\\nBuilding vcr-api i...
Python
Apache License 2.0
bcgov/aries-vcr
added support to celery 5+ Signed-off-by: wadeking98 <wkingnumber2@gmail.com>
86,096
21.09.2022 11:43:02
25,200
a8891ba38e719dc8be25e6ebb3d12947f0e9face
Postgres image now pulled from docker hub
[ { "change_type": "MODIFY", "old_path": "docker/docker-compose.yml", "new_path": "docker/docker-compose.yml", "diff": "@@ -292,12 +292,12 @@ services:\n# vcr-db\n#\nvcr-db:\n- image: registry.access.redhat.com/rhscl/postgresql-10-rhel7:latest\n+ image: postgres:14\nenvironment:\n- - POSTGRESQL_USER=$...
Python
Apache License 2.0
bcgov/aries-vcr
Postgres image now pulled from docker hub Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
21.09.2022 11:43:19
25,200
0f83c472fdeb214cb2c1de06e199aa95ac42c6ad
Adds new v4 autocomplete endpoint
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v2/models/Credential.py", "new_path": "server/vcr-server/api/v2/models/Credential.py", "diff": "@@ -67,13 +67,16 @@ class Credential(Auditable):\ndef all_names(self):\nreturn self._cached(\"names\", self.names.all())\n+ # DEPRECATED\n@pro...
Python
Apache License 2.0
bcgov/aries-vcr
Adds new v4 autocomplete endpoint Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
86,096
23.09.2022 14:43:03
25,200
8147e8959fa9c7525a3b8a3566874f93d51a5742
Autocomplete directly on topic name so that combo filters can be applied
[ { "change_type": "MODIFY", "old_path": "server/vcr-server/api/v3/search_filters.py", "new_path": "server/vcr-server/api/v3/search_filters.py", "diff": "@@ -97,7 +97,7 @@ class AutocompleteFilter(CustomFilter):\n\"\"\"\nquery_builder_class = get_autocomplete_builder(\n- (\"name_text\", \"address_civi...
Python
Apache License 2.0
bcgov/aries-vcr
Autocomplete directly on topic name so that combo filters can be applied Signed-off-by: Akiff Manji <akiff.manji@gmail.com>
696,952
11.01.2017 23:13:59
-3,600
5d366ffb66d96a80ae028fd9dea70899c637c0fb
Add tests for recordingStatusCallback and recordingStatusCallbackMethod parameters in Record TwiML
[ { "change_type": "MODIFY", "old_path": "src/test/java/com/twilio/twiml/RecordTest.java", "new_path": "src/test/java/com/twilio/twiml/RecordTest.java", "diff": "@@ -15,6 +15,8 @@ public class RecordTest {\n.finishOnKey(\"3\")\n.maxLength(35)\n.method(Method.GET)\n+ .recordingStatusCallback(\"/recordi...
Java
MIT License
twilio/twilio-java
Add tests for recordingStatusCallback and recordingStatusCallbackMethod parameters in Record TwiML
696,960
29.01.2017 09:03:43
-19,080
3b9dc0e4f16227cceab06d44d528052d6d2d3a52
Add gradle dependency info
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "twilio-java uses Maven. At present the jars *are* available from a public [maven](http://mvnrepository.com/artifact/com.twilio.sdk/twilio) repository.\n-Use the following dependency in your project:\n+Use the follo...
Java
MIT License
twilio/twilio-java
Add gradle dependency info
696,970
24.02.2017 10:49:58
-3,600
deb2275dcbdca6dc1fa2edbf830efeeab47d6982
add test equals() on request
[ { "change_type": "MODIFY", "old_path": "src/test/java/com/twilio/http/RequestTest.java", "new_path": "src/test/java/com/twilio/http/RequestTest.java", "diff": "@@ -166,5 +166,13 @@ public class RequestTest {\nassertTrue(request.requiresAuthentication());\n}\n+ @Test\n+ public void testEquals() {\n+ ...
Java
MIT License
twilio/twilio-java
add test equals() on request
696,963
02.03.2017 00:31:45
18,000
f893e81641e413755019887e4951ffa5dbe8e074
Bump up Jackson dependencies to version 2.8.7
[ { "change_type": "MODIFY", "old_path": "pom.xml", "new_path": "pom.xml", "diff": "</developers>\n<properties>\n- <jackson.version>2.4.3</jackson.version>\n+ <jackson.version>2.8.7</jackson.version>\n</properties>\n<dependencies>\n" }, { "change_type": "MODIFY", "old_path": "src/main/java...
Java
MIT License
twilio/twilio-java
Bump up Jackson dependencies to version 2.8.7
696,963
02.03.2017 11:49:53
18,000
9303b9f5b105f4ec6bb3747ec8c3e30fe9e126b0
Use individual imports for Jackson
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/taskrouter/Workflow.java", "new_path": "src/main/java/com/twilio/taskrouter/Workflow.java", "diff": "package com.twilio.taskrouter;\n-import com.fasterxml.jackson.annotation.*;\n+import com.fasterxml.jackson.annotation.JsonInclude;\n+i...
Java
MIT License
twilio/twilio-java
Use individual imports for Jackson
696,950
06.03.2017 11:34:12
28,800
c184d38e6832581e61e3d75d26145d2168888f4c
Update Public Key Client Validation naming
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/example/ValidationExample.java", "new_path": "src/main/java/com/twilio/example/ValidationExample.java", "diff": "@@ -59,7 +59,7 @@ public class ValidationExample {\nMessage m = Message.creator(\nnew PhoneNumber(\"+1XXXXXXXXXX\"),\nnew ...
Java
MIT License
twilio/twilio-java
Update Public Key Client Validation naming
697,000
25.04.2017 02:30:21
0
9c8b9253b1ae5a89e54f19170a74c6aa0dee54e6
Ensuring all HTTP connections are properly closed
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/http/NetworkHttpClient.java", "new_path": "src/main/java/com/twilio/http/NetworkHttpClient.java", "diff": "@@ -7,6 +7,8 @@ import org.apache.http.Header;\nimport org.apache.http.HttpHeaders;\nimport org.apache.http.HttpResponse;\nimpor...
Java
MIT License
twilio/twilio-java
Ensuring all HTTP connections are properly closed
697,014
12.05.2017 14:12:16
25,200
0b98ed1f5ae023b645e1b3197ed65152037fb866
Client Validation Signature calculator path and query fixes according to the spec
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/jwt/validation/ValidationToken.java", "new_path": "src/main/java/com/twilio/jwt/validation/ValidationToken.java", "diff": "@@ -3,7 +3,6 @@ package com.twilio.jwt.validation;\nimport com.google.common.base.Charsets;\nimport com.google.c...
Java
MIT License
twilio/twilio-java
Client Validation Signature calculator path and query fixes according to the spec
697,014
19.05.2017 12:41:47
25,200
d864939945519498defd1826907279c5a9dea0df
added attribution to AWS
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/jwt/validation/SignatureCreator.java", "new_path": "src/main/java/com/twilio/jwt/validation/SignatureCreator.java", "diff": "@@ -171,6 +171,15 @@ class SignatureCreator {\n}\n};\n+ /**\n+ * Replaces the special characters in the URLEnc...
Java
MIT License
twilio/twilio-java
added attribution to AWS
697,014
19.05.2017 13:04:43
25,200
c2f9eed31527ed491083df1707f737bb2142440c
Renamed SignatureCreator
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/jwt/validation/ValidationToken.java", "new_path": "src/main/java/com/twilio/jwt/validation/ValidationToken.java", "diff": "@@ -79,12 +79,12 @@ public class ValidationToken extends Jwt {\nString includedHeaders = Joiner.on(\";\").join(l...
Java
MIT License
twilio/twilio-java
Renamed SignatureCreator
696,976
18.08.2017 19:25:20
-3,600
c66a93013b21debab446f4d408a2d6eb4bf2446f
Fixes default max connection per route setting Current NetworkHttpClient tries to set MaxConnectionPerRoute to 10 but it does not succeed as the HttpClient level config is overridden by that of the ConnectionPoolManager. Hence it needs to be set on the ConnectionPoolManager.
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/http/NetworkHttpClient.java", "new_path": "src/main/java/com/twilio/http/NetworkHttpClient.java", "diff": "@@ -55,11 +55,14 @@ public class NetworkHttpClient extends HttpClient {\nclientBuilder.useSystemProperties();\n}\n+ PoolingHttpC...
Java
MIT License
twilio/twilio-java
Fixes default max connection per route setting (#375) Current NetworkHttpClient tries to set MaxConnectionPerRoute to 10 but it does not succeed as the HttpClient level config is overridden by that of the ConnectionPoolManager. Hence it needs to be set on the ConnectionPoolManager.
697,007
09.08.2018 11:37:37
25,200
38bee5aa162ff2e7eeff0ef3329f70363c7e7fe8
add type OutboundPrefixPriceWithOrigin * create OutboundPrefixPriceWithOrigin class ; * add type OutboundPrefixPriceWithOrigin * remove docs comment
[ { "change_type": "ADD", "old_path": null, "new_path": "src/main/java/com/twilio/type/OutboundPrefixPriceWithOrigin.java", "diff": "+package com.twilio.type;\n+\n+import com.fasterxml.jackson.annotation.JsonCreator;\n+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;\n+import com.fasterxm...
Java
MIT License
twilio/twilio-java
add type OutboundPrefixPriceWithOrigin (#434) * create OutboundPrefixPriceWithOrigin class ; * add type OutboundPrefixPriceWithOrigin * remove docs comment
696,991
24.05.2019 15:53:16
21,600
3f5c130332a8ce81b3ef0358378eac84bb324ac3
Remove call to deprecated method, remove unnecessary type declaration, remove unneeded import.
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/security/RequestValidator.java", "new_path": "src/main/java/com/twilio/security/RequestValidator.java", "diff": "@@ -11,6 +11,7 @@ import javax.crypto.spec.SecretKeySpec;\nimport java.net.URI;\nimport java.net.URISyntaxException;\n+imp...
Java
MIT License
twilio/twilio-java
Remove call to deprecated method, remove unnecessary type declaration, remove unneeded import. (#456)
697,011
10.07.2019 09:33:48
-36,000
c00c64c5abb3c4d41e7ada9c5fbdf4ee30dc03fa
Update library dependencies * Update library dependencies Issues found and libraries updated to latest versions: guava-18.0: CVE-2018-10237 jackson-databind-2.9.8: CVE-2019-12086, Ignored CVE-2019-12814 until 2.9.9.1 or 2.9.10 is published * Disable owasp for jdk 1.7 builds
[ { "change_type": "ADD", "old_path": null, "new_path": "owasp-dependency-checker-suppressions.xml", "diff": "+<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n+<suppressions xmlns=\"https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.1.xsd\">\n+<suppress>\n+ <notes><![CDATA[Until 2.9.9.1...
Java
MIT License
twilio/twilio-java
Update library dependencies (#459) * Update library dependencies Issues found and libraries updated to latest versions: guava-18.0: CVE-2018-10237 jackson-databind-2.9.8: CVE-2019-12086, Ignored CVE-2019-12814 until 2.9.9.1 or 2.9.10 is published * Disable owasp for jdk 1.7 builds
696,993
27.08.2019 16:10:33
-7,200
f6235a4cc3183a48dad93560d00bc65c34feea05
Add jsonToMap in converter
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/twilio/converter/Converter.java", "new_path": "src/main/java/com/twilio/converter/Converter.java", "diff": "@@ -4,6 +4,8 @@ package com.twilio.converter;\nimport com.fasterxml.jackson.core.JsonProcessingException;\nimport com.fasterxml.jackso...
Java
MIT License
twilio/twilio-java
Add jsonToMap in converter (#410)