diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000000..10c38a09ba --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,49 @@ +################################### +##### Global Protection Rule ###### +################################### +# NOTE: This rule is overriden by the more specific rules below. This is the catch-all rule for all files not covered by the more specific rules below. +* @hashgraph/developer-advocates + +############################ +##### Project Files ###### +############################ + +/src/** @hashgraph/developer-advocates +/__tests__/** @hashgraph/developer-advocates + + +######################### +##### Core Files ###### +######################### + +# NOTE: Must be placed last to ensure enforcement over all other rules + +# Protection Rules for Github Configuration Files and Actions Workflows +/.github/ @hashgraph/devops-ci @hashgraph/devops-ci-committers @hashgraph/release-engineering-managers +/.github/workflows/ @hashgraph/devops-ci @hashgraph/devops-ci-committers + +# NodeJS project files +package.json @hashgraph/devops-ci @hashgraph/devops-ci-committers @hashgraph/developer-advocates +package-lock.json @hashgraph/devops-ci @hashgraph/devops-ci-committers @hashgraph/developer-advocates +jest.config.mjs @hashgraph/devops-ci @hashgraph/devops-ci-committers @hashgraph/developer-advocates + +# Codacy Tool Configurations +/config/ @hashgraph/devops-ci @hashgraph/devops-ci-committers @hashgraph/developer-advocates +.remarkrc @hashgraph/devops-ci @hashgraph/devops-ci-committers @hashgraph/developer-advocates + +# Semantic Release Configuration +.releaserc @hashgraph/devops-ci @hashgraph/devops-ci-committers + +# Self-protection for root CODEOWNERS files (this file should not exist and should definitely require approval) +/CODEOWNERS @hashgraph/release-engineering-managers + +# Protect the repository root files +/README.md @hashgraph/devops-ci @hashgraph/devops-ci-committers @hashgraph/release-engineering-managers +**/LICENSE @hashgraph/release-engineering-managers + +# CodeCov configuration +**/codecov.yml @hashgraph/devops-ci @hashgraph/devops-ci-committers + +# Git Ignore definitions +**/.gitignore @hashgraph/devops-ci @hashgraph/devops-ci-committers @hashgraph/release-engineering-managers +**/.gitignore.* @hashgraph/devops-ci @hashgraph/devops-ci-committers @hashgraph/release-engineering-managers diff --git a/.github/workflows/add-documentation-to-repo.yaml b/.github/workflows/add-documentation-to-repo.yaml index 8c9c379f3f..8e0b521401 100644 --- a/.github/workflows/add-documentation-to-repo.yaml +++ b/.github/workflows/add-documentation-to-repo.yaml @@ -10,7 +10,7 @@ on: jobs: runService: name: Run Service - runs-on: [self-hosted, Linux, medium, ephemeral] + runs-on: guardian-linux-medium strategy: matrix: node-version: [ 20.x ] @@ -38,9 +38,9 @@ jobs: run: yarn install - name: Start NatsMQ - uses: onichandame/nats-action@a8144f9009c5f67c39edd6a50f9de659c44bd135 # v0.0.0 + uses: step-security/nats-action@0306fc1c4e4f49dbe4db5865a3135ab1516a5aee # v0.1.0 with: - port: "4222" + port: '4222' - name: Config Repo run: | diff --git a/.github/workflows/api-manual.yml b/.github/workflows/api-manual.yml index 18d23e9d56..675f34a48f 100644 --- a/.github/workflows/api-manual.yml +++ b/.github/workflows/api-manual.yml @@ -81,9 +81,9 @@ jobs: popd - name: Start NatsMQ - uses: onichandame/nats-action@a8144f9009c5f67c39edd6a50f9de659c44bd135 # v0.0.0 + uses: step-security/nats-action@0306fc1c4e4f49dbe4db5865a3135ab1516a5aee # v0.1.0 with: - port: "4222" + port: '4222' - name: Start MongoDB uses: supercharge/mongodb-github-action@5a87bd81f88e2a8b195f8b7b656f5cda1350815a # v1.11.0 diff --git a/.github/workflows/api.yml b/.github/workflows/api.yml index 093e8bf230..22ad2302b1 100644 --- a/.github/workflows/api.yml +++ b/.github/workflows/api.yml @@ -79,9 +79,9 @@ jobs: popd - name: Start NatsMQ - uses: onichandame/nats-action@a8144f9009c5f67c39edd6a50f9de659c44bd135 # v0.0.0 + uses: step-security/nats-action@0306fc1c4e4f49dbe4db5865a3135ab1516a5aee # v0.1.0 with: - port: "4222" + port: '4222' - name: Start MongoDB uses: supercharge/mongodb-github-action@5a87bd81f88e2a8b195f8b7b656f5cda1350815a # v1.11.0 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 736e5d3a4c..221a85fb84 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ on: jobs: buildAndTest: name: Build and Test (Manual - Main) - runs-on: [self-hosted, Linux, medium, ephemeral] + runs-on: guardian-linux-medium strategy: matrix: node-version: [ 20.10.0 ] diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index da5c7f2ea8..ff9b686313 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,7 +11,7 @@ permissions: jobs: docker: name: Publish to Docker - runs-on: [self-hosted, Linux, medium, ephemeral] + runs-on: guardian-linux-medium permissions: id-token: write contents: read @@ -22,12 +22,12 @@ jobs: egress-policy: audit - name: Conditional values for Github Action - uses: haya14busa/action-cond@94f77f7a80cd666cb3155084e428254fea4281fd # v1.2.1 + uses: step-security/action-cond@667d0aa72b2bd9513536eb0ca8acd5549757bd3d # v1.2.1 id: latestTag with: cond: ${{ github.event.release.target_commitish == 'main' }} - if_true: "latest" - if_false: "hotfix" + if_true: 'latest' + if_false: 'hotfix' - name: Checkout uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 diff --git a/Methodology Library/Hackathon/UNFCCC_ACM0007/ACM0007_v2.0.policy b/Methodology Library/Hackathon/UNFCCC_ACM0007/ACM0007_v2.0.policy new file mode 100644 index 0000000000..175d2f4bc6 Binary files /dev/null and b/Methodology Library/Hackathon/UNFCCC_ACM0007/ACM0007_v2.0.policy differ diff --git a/Methodology Library/Hackathon/UNFCCC_ACM0007/ACM0007_v2.0.xlsx b/Methodology Library/Hackathon/UNFCCC_ACM0007/ACM0007_v2.0.xlsx new file mode 100644 index 0000000000..f7b99af656 Binary files /dev/null and b/Methodology Library/Hackathon/UNFCCC_ACM0007/ACM0007_v2.0.xlsx differ diff --git a/Methodology Library/Hackathon/UNFCCC_ACM0007/policy_1712610559572.policy b/Methodology Library/Hackathon/UNFCCC_ACM0007/policy_1712610559572.policy deleted file mode 100644 index 139bf485b8..0000000000 Binary files a/Methodology Library/Hackathon/UNFCCC_ACM0007/policy_1712610559572.policy and /dev/null differ diff --git a/Methodology Library/Hackathon/UNFCCC_ACM0007/policy_1712610570761.xlsx b/Methodology Library/Hackathon/UNFCCC_ACM0007/policy_1712610570761.xlsx deleted file mode 100644 index 41391b5cba..0000000000 Binary files a/Methodology Library/Hackathon/UNFCCC_ACM0007/policy_1712610570761.xlsx and /dev/null differ diff --git a/Methodology Library/Hackathon/UNFCCC_ACM0007/readme.md b/Methodology Library/Hackathon/UNFCCC_ACM0007/readme.md index 33d78cb1b9..b44789d831 100644 --- a/Methodology Library/Hackathon/UNFCCC_ACM0007/readme.md +++ b/Methodology Library/Hackathon/UNFCCC_ACM0007/readme.md @@ -96,6 +96,14 @@ User Page: 15) Finally the TrustChain contains all the important transaction data. ![image](https://github.com/ankurgupta007/guardian/assets/98680735/68322998-b1ef-4608-83e9-cad62a860402) + +## Comparison with a existing policy: +1) ACM0007 already exists, this was created by Envision BlockChain. +2) This is a improved version of the same, the differences are enlisted below: +3) This enhanced version has a more complete documentation & a video presentation too. +4) This enhanced version has more suggestive example fillouts. +5) This enhanced version has a new role "Token Manager" which simplies the process of viewing and managing tokens. +6) This enhanced version has a new token called CCPT (Combined Cycle Power Token). ## Epilogue: This project and documentation made by a contestant during the DLT Climate Hackathon. Therefore contains a few bugs. A few changes can be done to improve the system: diff --git a/Methodology Library/Hackathon/ZEV/Tesla Example/Verification Report - Tesla's Electric Vehicle Production.rtf b/Methodology Library/Hackathon/ZEV/Tesla Example/Verification Report - Tesla's Electric Vehicle Production.rtf new file mode 100644 index 0000000000..d969f0a15a --- /dev/null +++ b/Methodology Library/Hackathon/ZEV/Tesla Example/Verification Report - Tesla's Electric Vehicle Production.rtf @@ -0,0 +1,100 @@ +{\rtf1\ansi\ansicpg1252\cocoartf2639 +\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\froman\fcharset0 Times-Roman;\f1\fswiss\fcharset0 ArialMT;} +{\colortbl;\red255\green255\blue255;\red0\green0\blue0;} +{\*\expandedcolortbl;;\cssrgb\c0\c0\c0;} +\margl1440\margr1440\vieww11520\viewh8400\viewkind0 +\deftab720 +\pard\pardeftab720\partightenfactor0 + +\f0\fs24 \cf0 \expnd0\expndtw0\kerning0 +\outl0\strokewidth0 \strokec2 \ +\pard\pardeftab720\partightenfactor0 + +\f1\fs29\fsmilli14667 \cf0 Verification Report - Tesla's Electric Vehicle Production +\f0\fs24 \ +\ + +\f1\fs29\fsmilli14667 Project Title: Tesla Electric Vehicle Production Initiative +\f0\fs24 \ +\ + +\f1\fs29\fsmilli14667 Project ID: ZEV-2024-TESLA-001 +\f0\fs24 \ +\ + +\f1\fs29\fsmilli14667 Reporting Period: January 2024 - March 2024 +\f0\fs24 \ +\ + +\f1\fs29\fsmilli14667 Verified By: [Name of Verification Body] +\f0\fs24 \ +\ + +\f1\fs29\fsmilli14667 Date of Verification: April 30, 2024 +\f0\fs24 \ +\ + +\f1\fs29\fsmilli14667 Executive Summary: +\f0\fs24 \ + +\f1\fs29\fsmilli14667 This Verification Report validates the information provided in Tesla's Monitoring Report (MR) for the reporting period of January 2024 to March 2024. The report assesses the accuracy and completeness of Tesla's electric vehicle production data and compliance with regulatory guidelines. +\f0\fs24 \ +\ + +\f1\fs29\fsmilli14667 Key Findings: +\f0\fs24 \ + +\f1\fs29\fsmilli14667 1. Data Accuracy: The production data provided by Tesla in the MR aligns with the records and documentation reviewed during the verification process. The total number of electric vehicles produced and the distribution across different models are consistent with the reported figures. +\f0\fs24 \ + +\f1\fs29\fsmilli14667 2. Compliance with Regulatory Standards: Tesla's electric vehicle production activities comply with the regulatory guidelines outlined in the ZEV Ledger framework. The company has demonstrated adherence to emission standards and other environmental requirements applicable to electric vehicle manufacturers. +\f0\fs24 \ + +\f1\fs29\fsmilli14667 3. Documentation Review: The verification body has reviewed the supporting documentation, including production records, quality control reports, and regulatory certifications. The documentation corroborates the accuracy of the reported data and the implementation of sustainable practices in Tesla's manufacturing processes. +\f0\fs24 \ + +\f1\fs29\fsmilli14667 4. Transparency and Accountability: Tesla has exhibited transparency and accountability in reporting its electric vehicle production metrics. The company has provided comprehensive information in the MR, facilitating the verification process and ensuring the integrity of the ZEV Ledger. +\f0\fs24 \ +\ + +\f1\fs29\fsmilli14667 Conclusion: +\f0\fs24 \ + +\f1\fs29\fsmilli14667 Based on the findings of the verification process, it is confirmed that Tesla has accurately reported its electric vehicle production activities for the reporting period of January 2024 to March 2024. The company's commitment to sustainability and regulatory compliance is evident in its operations, contributing to the advancement of clean transportation solutions. +\f0\fs24 \ +\ + +\f1\fs29\fsmilli14667 Verified By: +\f0\fs24 \ + +\f1\fs29\fsmilli14667 [Name of Verification Body] +\f0\fs24 \ + +\f1\fs29\fsmilli14667 [Title/Position] +\f0\fs24 \ + +\f1\fs29\fsmilli14667 [Contact Information] +\f0\fs24 \ +\ + +\f1\fs29\fsmilli14667 Contact Information: +\f0\fs24 \ + +\f1\fs29\fsmilli14667 For inquiries regarding this verification report, please contact: +\f0\fs24 \ + +\f1\fs29\fsmilli14667 [Name] +\f0\fs24 \ + +\f1\fs29\fsmilli14667 [Title] +\f0\fs24 \ + +\f1\fs29\fsmilli14667 [Verification Body] +\f0\fs24 \ + +\f1\fs29\fsmilli14667 Email: [Email Address] +\f0\fs24 \ + +\f1\fs29\fsmilli14667 Phone: [Phone Number] +\f0\fs24 \ +} \ No newline at end of file diff --git a/Methodology Library/Work In Progress/readme.md b/Methodology Library/Work In Progress/readme.md new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/Methodology Library/Work In Progress/readme.md @@ -0,0 +1 @@ + diff --git a/ai-service/package.json b/ai-service/package.json index bec194a560..7ddb648b83 100644 --- a/ai-service/package.json +++ b/ai-service/package.json @@ -1,11 +1,11 @@ { "name": "ai-service", - "version": "2.27.0", + "version": "2.27.1", "main": "dist/app.js", "license": "Apache-2.0", "dependencies": { - "@guardian/common": "^2.27.0", - "@guardian/interfaces": "^2.27.0", + "@guardian/common": "^2.27.1", + "@guardian/interfaces": "^2.27.1", "@mikro-orm/core": "6.2.2", "@mikro-orm/mongodb": "6.2.2", "@nestjs/common": "^9.4.1", diff --git a/analytics-service/package.json b/analytics-service/package.json index 0981d383bc..419737f981 100644 --- a/analytics-service/package.json +++ b/analytics-service/package.json @@ -13,8 +13,8 @@ }, "author": "Envision Blockchain Solutions ", "dependencies": { - "@guardian/common": "^2.27.0", - "@guardian/interfaces": "^2.27.0", + "@guardian/common": "^2.27.1", + "@guardian/interfaces": "^2.27.1", "@nestjs/common": "^9.4.1", "@nestjs/core": "^9.4.1", "@nestjs/jwt": "^10.0.3", @@ -82,5 +82,5 @@ "test": "mocha tests/**/*.test.js --reporter mocha-junit-reporter --reporter-options mochaFile=../test_results/ui-service.xml" }, "type": "module", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/api-gateway/package.json b/api-gateway/package.json index bf7f514eab..de2bfbb9df 100644 --- a/api-gateway/package.json +++ b/api-gateway/package.json @@ -4,8 +4,8 @@ "@fastify/formbody": "^7.4.0", "@fastify/multipart": "^8.2.0", "@fastify/static": "^7.0.0", - "@guardian/common": "^2.27.0", - "@guardian/interfaces": "^2.27.0", + "@guardian/common": "^2.27.1", + "@guardian/interfaces": "^2.27.1", "@nestjs/common": "^9.4.1", "@nestjs/core": "^9.4.1", "@nestjs/jwt": "^10.0.3", @@ -88,5 +88,5 @@ "test": "mocha tests/**/*.test.js --reporter mocha-junit-reporter --reporter-options mochaFile=../test_results/ui-service.xml" }, "type": "module", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/api-tests/package.json b/api-tests/package.json index cc6ec94205..528c8c7f0d 100644 --- a/api-tests/package.json +++ b/api-tests/package.json @@ -1,6 +1,6 @@ { "name": "api-tests", - "version": "2.27.0", + "version": "2.27.1", "description": "API Tests", "main": "index.js", "type": "module", diff --git a/auth-service/package.json b/auth-service/package.json index c1bbae79b4..8a43b27d51 100644 --- a/auth-service/package.json +++ b/auth-service/package.json @@ -10,8 +10,8 @@ "image-size": "1.0.2" }, "dependencies": { - "@guardian/common": "^2.27.0", - "@guardian/interfaces": "^2.27.0", + "@guardian/common": "^2.27.1", + "@guardian/interfaces": "^2.27.1", "@meeco/cryppo": "^2.0.2", "@mikro-orm/core": "6.2.2", "@mikro-orm/mongodb": "6.2.2", @@ -79,5 +79,5 @@ "test": "mocha tests/**/*.test.js --reporter mocha-junit-reporter --reporter-options mochaFile=../test_results/ui-service.xml" }, "type": "module", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/auth-service/src/utils/user-access-token.ts b/auth-service/src/utils/user-access-token.ts index 1cdb1bb7b1..20b404702f 100644 --- a/auth-service/src/utils/user-access-token.ts +++ b/auth-service/src/utils/user-access-token.ts @@ -55,7 +55,7 @@ export class UserAccessTokenService { expireAt: number }> { return await util.promisify(verify)(refreshToken, this.JWT_PUBLIC_KEY, { - algorithm: 'RS256' + algorithms: ['RS256'] }); } @@ -92,7 +92,7 @@ export class UserAccessTokenService { expireAt?: number }> { return await util.promisify(verify)(accessToken, this.JWT_PUBLIC_KEY, { - algorithm: 'RS256' + algorithms: ['RS256'] }); } } diff --git a/common/package.json b/common/package.json index 750e854b50..41d014647d 100644 --- a/common/package.json +++ b/common/package.json @@ -5,7 +5,7 @@ "@azure/identity": "^3.2.2", "@azure/keyvault-secrets": "^4.7.0", "@google-cloud/secret-manager": "^4.2.2", - "@guardian/interfaces": "^2.27.0", + "@guardian/interfaces": "^2.27.1", "@hashgraph/sdk": "2.46.0", "@mattrglobal/jsonld-signatures-bbs": "^1.1.2", "@meeco/cryppo": "^2.0.2", @@ -87,5 +87,5 @@ "test:stability": "mocha tests/stability.test.js" }, "type": "module", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/exclude-secrets.txt b/exclude-secrets.txt index a65ec7720d..d0237d5281 100644 --- a/exclude-secrets.txt +++ b/exclude-secrets.txt @@ -3,3 +3,4 @@ youraccesstokensecret tls/vault/client/tls.key YOUR_ACCESS_TOKEN_SECRET_GOES_HERE YOUR_STORAGE_API_KEY_GOES_HERE +YOUR_JWT_PRIVATE_KEY_GOES_HERE diff --git a/frontend/package.json b/frontend/package.json index cab30c362b..9b938d5934 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -74,5 +74,5 @@ "test": "ng test", "watch": "ng build --watch --configuration development --output-path ../www-data" }, - "version": "2.27.0" + "version": "2.27.1" } diff --git a/guardian-service/package.json b/guardian-service/package.json index ecc5fd9642..ca9e851a29 100644 --- a/guardian-service/package.json +++ b/guardian-service/package.json @@ -16,8 +16,8 @@ "image-size": "1.0.2" }, "dependencies": { - "@guardian/common": "^2.27.0", - "@guardian/interfaces": "^2.27.0", + "@guardian/common": "^2.27.1", + "@guardian/interfaces": "^2.27.1", "@hashgraph/sdk": "2.46.0", "@mattrglobal/jsonld-signatures-bbs": "^1.1.2", "@meeco/cryppo": "^2.0.2", @@ -99,5 +99,5 @@ "test:stability": "mocha tests/stability.test.mjs" }, "type": "module", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/indexer-api-gateway/package.json b/indexer-api-gateway/package.json index 22f7e5bc46..90c4b4bf5a 100644 --- a/indexer-api-gateway/package.json +++ b/indexer-api-gateway/package.json @@ -14,8 +14,8 @@ }, "author": "Envision Blockchain Solutions ", "dependencies": { - "@indexer/interfaces": "^2.27.0", - "@indexer/common": "^2.27.0", + "@indexer/interfaces": "^2.27.1", + "@indexer/common": "^2.27.1", "@nestjs/common": "^9.4.1", "@nestjs/core": "^9.4.1", "@nestjs/microservices": "^9.4.1", @@ -85,5 +85,5 @@ "test": "mocha tests/**/*.test.js --reporter mocha-junit-reporter --reporter-options mochaFile=../test_results/ui-service.xml" }, "type": "module", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/indexer-common/package.json b/indexer-common/package.json index 6b571b4cdb..0c004f745c 100644 --- a/indexer-common/package.json +++ b/indexer-common/package.json @@ -44,5 +44,5 @@ "test:stability": "mocha tests/stability.test.js" }, "type": "module", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/indexer-frontend/package.json b/indexer-frontend/package.json index f513b73a1a..e39ac7ae1a 100644 --- a/indexer-frontend/package.json +++ b/indexer-frontend/package.json @@ -1,7 +1,7 @@ { "author": "Envision Blockchain Solutions ", "name": "indexer-frontend", - "version": "2.27.0", + "version": "2.27.1", "scripts": { "ng": "ng", "start": "ng serve --proxy-config ./proxy.conf.json", diff --git a/indexer-interfaces/package.json b/indexer-interfaces/package.json index 7146574e17..597f551993 100644 --- a/indexer-interfaces/package.json +++ b/indexer-interfaces/package.json @@ -21,5 +21,5 @@ "prepack": "npm run build" }, "type": "module", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/indexer-service/package.json b/indexer-service/package.json index 387d52d7eb..ed7ffc15ba 100644 --- a/indexer-service/package.json +++ b/indexer-service/package.json @@ -2,8 +2,8 @@ "author": "Envision Blockchain Solutions ", "dependencies": { "@elastic/elasticsearch": "^8.12.2", - "@indexer/common": "^2.27.0", - "@indexer/interfaces": "^2.27.0", + "@indexer/common": "^2.27.1", + "@indexer/interfaces": "^2.27.1", "mongodb": "6.5.0", "@mikro-orm/core": "6.2.2", "@mikro-orm/mongodb": "6.2.2", @@ -60,5 +60,5 @@ }, "type": "module", "types": "dist/index.d.ts", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/indexer-worker-service/package.json b/indexer-worker-service/package.json index 1d900a744f..7c396f72df 100644 --- a/indexer-worker-service/package.json +++ b/indexer-worker-service/package.json @@ -1,8 +1,8 @@ { "author": "Envision Blockchain Solutions ", "dependencies": { - "@indexer/interfaces": "^2.27.0", - "@indexer/common": "^2.27.0", + "@indexer/interfaces": "^2.27.1", + "@indexer/common": "^2.27.1", "@nestjs/common": "^9.4.1", "@nestjs/core": "^9.4.1", "@nestjs/microservices": "^9.4.1", @@ -55,5 +55,5 @@ }, "type": "module", "types": "dist/index.d.ts", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/interfaces/package.json b/interfaces/package.json index b6bbc97cc4..928243e217 100644 --- a/interfaces/package.json +++ b/interfaces/package.json @@ -33,5 +33,5 @@ "test": "echo \"Error: no test specified\" && exit 1" }, "type": "module", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/logger-service/package.json b/logger-service/package.json index e8b777fab6..a4be1adce9 100644 --- a/logger-service/package.json +++ b/logger-service/package.json @@ -5,8 +5,8 @@ "image-size": "1.0.2" }, "dependencies": { - "@guardian/common": "^2.27.0", - "@guardian/interfaces": "^2.27.0", + "@guardian/common": "^2.27.1", + "@guardian/interfaces": "^2.27.1", "@mikro-orm/core": "6.2.2", "@mikro-orm/mongodb": "6.2.2", "@nestjs/common": "^9.4.1", @@ -57,5 +57,5 @@ "watch": "nodemon src/index.ts" }, "type": "module", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/mrv-sender/package.json b/mrv-sender/package.json index d6d1f4261f..37bcf8a732 100644 --- a/mrv-sender/package.json +++ b/mrv-sender/package.json @@ -5,7 +5,7 @@ "image-size": "1.0.2" }, "dependencies": { - "@guardian/common": "^2.27.0", + "@guardian/common": "^2.27.1", "@transmute/credentials-context": "0.7.0-unstable.80", "@transmute/did-context": "0.7.0-unstable.80", "@transmute/ed25519-signature-2018": "0.7.0-unstable.80", @@ -44,5 +44,5 @@ "start": "node dist/index.js" }, "type": "module", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/notification-service/package.json b/notification-service/package.json index a78823fa6e..e0fadb0699 100644 --- a/notification-service/package.json +++ b/notification-service/package.json @@ -5,8 +5,8 @@ "image-size": "1.0.2" }, "dependencies": { - "@guardian/common": "^2.27.0", - "@guardian/interfaces": "^2.27.0", + "@guardian/common": "^2.27.1", + "@guardian/interfaces": "^2.27.1", "@mikro-orm/core": "6.2.2", "@mikro-orm/mongodb": "6.2.2", "@nestjs/common": "^9.4.1", @@ -56,5 +56,5 @@ "watch": "nodemon src/index.ts" }, "type": "module", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/package.json b/package.json index 0b9a3fa3fe..e9de94fc36 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "indexer-service", "indexer-worker-service" ], - "version": "2.27.0", + "version": "2.27.1", "devDependencies": { "detect-secrets": "^1.0.6" }, diff --git a/policy-service/package.json b/policy-service/package.json index f256186470..394b739e24 100644 --- a/policy-service/package.json +++ b/policy-service/package.json @@ -15,8 +15,8 @@ "image-size": "1.0.2" }, "dependencies": { - "@guardian/common": "2.27.0", - "@guardian/interfaces": "2.27.0", + "@guardian/common": "2.27.1", + "@guardian/interfaces": "2.27.1", "@hashgraph/sdk": "2.46.0", "@mattrglobal/jsonld-signatures-bbs": "^1.1.2", "@meeco/cryppo": "2.0.2", @@ -100,5 +100,5 @@ "test:stability": "mocha tests/stability.test.js" }, "type": "module", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/queue-service/package.json b/queue-service/package.json index 99885e2110..865813016f 100644 --- a/queue-service/package.json +++ b/queue-service/package.json @@ -2,8 +2,8 @@ "author": "Envision Blockchain Solutions ", "dependencies": { "@filebase/client": "^0.0.5", - "@guardian/common": "^2.27.0", - "@guardian/interfaces": "^2.27.0", + "@guardian/common": "^2.27.1", + "@guardian/interfaces": "^2.27.1", "@hashgraph/sdk": "2.34.1", "@nestjs/common": "^9.4.1", "@nestjs/core": "^9.4.1", @@ -66,5 +66,5 @@ }, "type": "module", "types": "dist/index.d.ts", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/topic-viewer/package.json b/topic-viewer/package.json index 253473e488..b921ff93ed 100644 --- a/topic-viewer/package.json +++ b/topic-viewer/package.json @@ -30,5 +30,5 @@ "start": "node dist/index.js" }, "type": "module", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/tree-viewer/package.json b/tree-viewer/package.json index c21a87da98..b8bdb35433 100644 --- a/tree-viewer/package.json +++ b/tree-viewer/package.json @@ -28,5 +28,5 @@ "start": "node dist/index.js" }, "type": "module", - "version": "2.27.0" + "version": "2.27.1" } diff --git a/worker-service/package.json b/worker-service/package.json index f7bf7a2b04..3820c929ec 100644 --- a/worker-service/package.json +++ b/worker-service/package.json @@ -2,8 +2,8 @@ "author": "Envision Blockchain Solutions ", "dependencies": { "@filebase/client": "^0.0.5", - "@guardian/common": "^2.27.0", - "@guardian/interfaces": "^2.27.0", + "@guardian/common": "^2.27.1", + "@guardian/interfaces": "^2.27.1", "@hashgraph/sdk": "2.46.0", "@nestjs/common": "^9.4.1", "@nestjs/core": "^9.4.1", @@ -69,5 +69,5 @@ }, "type": "module", "types": "dist/index.d.ts", - "version": "2.27.0" + "version": "2.27.1" }