├── .gitattributes ├── .prettierignore ├── .github ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── question.md │ ├── feature_request.md │ └── bug_report.md └── workflows │ └── test.yml ├── .gitignore ├── .npmignore ├── schemas ├── Config.js ├── Signin.js ├── Division.js ├── Register.js ├── Field.js ├── Session.js ├── Role.js ├── .types.js ├── Catalog.js ├── Cursor.js ├── Journal.js ├── Locking.js ├── Server.js ├── Permission.js ├── .database.js ├── File.js ├── Account.js ├── Identifier.js └── Entity.js ├── prettier.config.js ├── eslint.config.js ├── .editorconfig ├── metadomain.js ├── test └── load.js ├── README.md ├── SECURITY.md ├── LICENSE ├── CONTRIBUTING.md ├── package.json └── CHANGELOG.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: tshemsedinov 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /schemas/Config.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Entity: {}, 3 | 4 | name: { type: 'string', unique: true }, 5 | data: 'json', 6 | }); 7 | -------------------------------------------------------------------------------- /schemas/Signin.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Projection: { 3 | schema: 'Account', 4 | fields: ['login', 'password'], 5 | }, 6 | }); 7 | -------------------------------------------------------------------------------- /schemas/Division.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Registry: {}, 3 | 4 | name: { type: 'string', unique: true }, 5 | parent: '?Division', 6 | }); 7 | -------------------------------------------------------------------------------- /schemas/Register.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Projection: { 3 | schema: 'Account', 4 | fields: ['login', 'password', 'email', 'phone'], 5 | }, 6 | }); 7 | -------------------------------------------------------------------------------- /schemas/Field.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Registry: {}, 3 | 4 | entity: { type: 'Entity', delete: 'cascade' }, 5 | name: 'string', 6 | 7 | naturalKey: { unique: ['entity', 'name'] }, 8 | }); 9 | -------------------------------------------------------------------------------- /schemas/Session.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Details: {}, 3 | 4 | account: { type: 'Account', delete: 'cascade' }, 5 | token: { type: 'string', unique: true }, 6 | ip: 'ip', 7 | data: 'json', 8 | }); 9 | -------------------------------------------------------------------------------- /schemas/Role.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Entity: {}, 3 | 4 | name: { type: 'string', unique: true }, 5 | active: { type: 'boolean', default: true }, 6 | division: { type: 'Division', delete: 'restrict' }, 7 | }); 8 | -------------------------------------------------------------------------------- /schemas/.types.js: -------------------------------------------------------------------------------- 1 | ({ 2 | datetime: { js: 'string', metadata: { pg: 'timestamp with time zone' } }, 3 | json: { metadata: { pg: 'jsonb' } }, 4 | ip: { js: 'string', metadata: { pg: 'inet' } }, 5 | }); 6 | -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | printWidth: 80, 5 | singleQuote: true, 6 | trailingComma: 'all', 7 | tabWidth: 2, 8 | useTabs: false, 9 | semi: true, 10 | }; 11 | -------------------------------------------------------------------------------- /schemas/Catalog.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Registry: {}, 3 | 4 | parent: '?Catalog', 5 | name: { type: 'string', index: true }, 6 | entities: { many: 'Identifier' }, 7 | 8 | naturalKey: { unique: ['parent', 'name'] }, 9 | }); 10 | -------------------------------------------------------------------------------- /schemas/Cursor.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Details: {}, 3 | 4 | session: { type: 'Session', delete: 'cascade' }, 5 | hashsum: 'string', 6 | created: { type: 'datetime', default: 'now' }, 7 | query: 'json', 8 | version: { type: 'number', default: 0 }, 9 | }); 10 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const init = require('eslint-config-metarhia'); 4 | 5 | module.exports = [ 6 | ...init, 7 | { 8 | files: ['schemas/**/*.js'], 9 | languageOptions: { 10 | sourceType: 'module', 11 | }, 12 | }, 13 | ]; 14 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | end_of_line = lf 6 | charset = utf-8 7 | insert_final_newline = true 8 | trim_trailing_whitespace = true 9 | 10 | [{*.js,*.mjs,*.ts,*.json,*.yml}] 11 | indent_size = 2 12 | indent_style = space 13 | -------------------------------------------------------------------------------- /metadomain.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const path = require('node:path'); 4 | const { loadModel } = require('metaschema'); 5 | 6 | const load = () => { 7 | const modelPath = path.join(__dirname, 'schemas'); 8 | return loadModel(modelPath); 9 | }; 10 | 11 | module.exports = { load }; 12 | -------------------------------------------------------------------------------- /schemas/Journal.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Journal: { scope: 'local', allow: 'append' }, 3 | 4 | identifier: 'Identifier', 5 | account: 'Account', 6 | server: 'Server', 7 | action: 'string', 8 | dateTime: { type: 'datetime', default: 'now' }, 9 | ip: 'ip', 10 | details: 'json', 11 | }); 12 | -------------------------------------------------------------------------------- /schemas/Locking.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Details: {}, 3 | 4 | identifier: 'Identifier', 5 | session: 'Session', 6 | request: { type: 'datetime', index: true }, 7 | start: { type: 'datetime', index: true }, 8 | expire: { type: 'datetime', index: true }, 9 | updates: { type: 'number', default: 0 }, 10 | }); 11 | -------------------------------------------------------------------------------- /schemas/Server.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Registry: { scope: 'global' }, 3 | 4 | name: { type: 'string', unique: true }, 5 | suffix: { type: 'string', unique: true }, 6 | ip: { type: 'ip', unique: true }, 7 | kind: { enum: ['root', 'server', 'backup', 'reserve'], default: 'server' }, 8 | ports: 'json', 9 | }); 10 | -------------------------------------------------------------------------------- /schemas/Permission.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Relation: {}, 3 | 4 | role: { type: 'Role', delete: 'cascade' }, 5 | identifier: { type: 'Identifier', delete: 'cascade' }, 6 | action: { 7 | type: 'string', 8 | enum: ['read', 'insert', 'update', 'delete', 'audit'], 9 | default: 'update', 10 | }, 11 | 12 | naturalKey: { unique: ['role', 'identifier'] }, 13 | }); 14 | -------------------------------------------------------------------------------- /test/load.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const { test } = require('node:test'); 4 | const assert = require('node:assert/strict'); 5 | const metadomain = require('..'); 6 | 7 | test('Load metadomain', async () => { 8 | const model = await metadomain.load(); 9 | assert.ok(model); 10 | if (model.warnings.length) console.log(model.warnings.join('\n')); 11 | assert.equal(model.warnings.length, 0); 12 | }); 13 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 6 | 7 | - [ ] tests and linter show no problems (`npm t`) 8 | - [ ] tests are added/updated for bug fixes and new features 9 | - [ ] code is properly formatted (`npm run fix`) 10 | - [ ] description of changes is added in CHANGELOG.md 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Metadomain is Metarhia core database model 2 | 3 | [![npm version](https://badge.fury.io/js/metadomain.svg)](https://badge.fury.io/js/metadomain) 4 | [![npm downloads/month](https://img.shields.io/npm/dm/metadomain.svg)](https://www.npmjs.com/package/metadomain) 5 | [![npm downloads](https://img.shields.io/npm/dt/metadomain.svg)](https://www.npmjs.com/package/metadomain) 6 | [![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/metarhia/metadomain/blob/master/LICENSE) 7 | -------------------------------------------------------------------------------- /schemas/.database.js: -------------------------------------------------------------------------------- 1 | ({ 2 | name: 'example', 3 | description: 'Example database schema', 4 | version: 3, 5 | driver: 'pg', 6 | 7 | authors: [ 8 | { name: 'Timur Shemsedinov', email: 'timur.shemsedinov@gmail.com' }, 9 | ], 10 | 11 | extensions: ['hstore', 'postgis', 'postgis_topology', 'pg_trgm'], 12 | 13 | connection: { 14 | host: '127.0.0.1', 15 | port: 5432, 16 | database: 'application', 17 | user: 'postgres', 18 | password: 'postgres', 19 | }, 20 | }); 21 | -------------------------------------------------------------------------------- /schemas/File.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Registry: {}, 3 | 4 | filename: { type: 'string', index: true }, 5 | crc32: { type: 'string', index: true }, 6 | hashsum: { type: 'string', note: 'use only to resolve collisions' }, 7 | size: 'number', 8 | mediaType: 'string', 9 | 10 | access: { 11 | last: { type: 'datetime', default: 'now' }, 12 | count: { type: 'number', default: 0 }, 13 | }, 14 | 15 | compression: { 16 | format: 'string', 17 | size: 'number', 18 | ratio: (file) => file.compression.size / file.size, 19 | }, 20 | }); 21 | -------------------------------------------------------------------------------- /schemas/Account.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Registry: {}, 3 | 4 | login: { type: 'string', length: { min: 8, max: 64 }, unique: true }, 5 | password: { type: 'string', note: 'Password hash' }, 6 | active: { type: 'boolean', default: true }, 7 | division: { many: 'Division' }, 8 | roles: { many: 'Role' }, 9 | fullName: '?string', 10 | email: { 11 | type: 'string', 12 | length: { min: 6, max: 255 }, 13 | index: true, 14 | required: false, 15 | }, 16 | phone: { 17 | type: 'string', 18 | length: { min: 10, max: 15 }, 19 | index: true, 20 | required: false, 21 | }, 22 | }); 23 | -------------------------------------------------------------------------------- /schemas/Identifier.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Entity: {}, 3 | 4 | entity: '?Identifier', 5 | storage: { 6 | enum: ['master', 'cache', 'backup', 'replica'], 7 | default: 'master', 8 | index: true, 9 | }, 10 | status: { 11 | enum: ['prealloc', 'init', 'actual', 'historical'], 12 | default: 'actual', 13 | index: true, 14 | }, 15 | creation: { type: 'datetime', default: 'now' }, 16 | change: { type: 'datetime', default: 'now' }, 17 | locked: { type: 'boolean', default: false }, 18 | version: { type: 'number', default: 0 }, 19 | hashsum: { type: 'string', default: '' }, 20 | }); 21 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | | Version | Supported | 6 | | ------- | ------------------ | 7 | | 1.x | :white_check_mark: | 8 | | 2.x | :white_check_mark: | 9 | 10 | ## Reporting a Vulnerability 11 | 12 | If you believe you have found a security vulnerability, let us know by sending 13 | email to [timur.shemsedinov@gmail.com](mailto:timur.shemsedinov@gmail.com) 14 | We will investigate that and do our best to quickly fix the problem. 15 | 16 | Please don't open an issue to or discuss this security vulnerability in a public 17 | place. Thanks for understanding! 18 | -------------------------------------------------------------------------------- /schemas/Entity.js: -------------------------------------------------------------------------------- 1 | ({ 2 | Registry: { realm: 'global', allow: 'append' }, 3 | 4 | name: { type: 'string', unique: true }, 5 | kind: { 6 | enum: [ 7 | 'entity', 8 | 'registry', 9 | 'dictionary', 10 | 'journal', 11 | 'details', 12 | 'relation', 13 | 'view', 14 | 'form', 15 | 'projection', 16 | ], 17 | default: 'entity', 18 | }, 19 | scope: { enum: ['system', 'global', 'local'], default: 'system' }, 20 | store: { enum: ['persistent', 'memory'], default: 'persistent' }, 21 | allow: { enum: ['write', 'append', 'read'], default: 'write' }, 22 | }); 23 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Question 3 | about: Please don't open an issue to ask questions 4 | --- 5 | 6 | Issues on GitHub are intended to be related to problems and feature requests 7 | so we recommend not using this medium to ask them here grin. Thanks for 8 | understanding! 9 | 10 | If you have a question, please check out our support groups and channels for 11 | developers community: 12 | 13 | Telegram: 14 | 15 | - Channel for Metarhia community: https://t.me/metarhia 16 | - Group for Metarhia technology stack community: https://t.me/metaserverless 17 | - Group for NodeUA community: https://t.me/nodeua 18 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | --- 8 | 9 | **Is your feature request related to a problem? Please describe.** 10 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 11 | 12 | **Describe the solution you'd like** 13 | A clear and concise description of what you want to happen. 14 | 15 | **Describe alternatives you've considered** 16 | A clear and concise description of any alternative solutions or features you've considered. 17 | 18 | **Additional context** 19 | Add any other context or screenshots about the feature request here. 20 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | --- 8 | 9 | **Describe the bug** 10 | A clear and concise description of what the bug is. 11 | 12 | **To Reproduce** 13 | Steps to reproduce the behavior: usage example or test. 14 | 15 | **Expected behavior** 16 | A clear and concise description of what you expected. 17 | 18 | **Screenshots** 19 | If applicable, add screenshots to help explain your problem. 20 | 21 | **Desktop (please complete the following information):** 22 | 23 | - OS: [e.g. Fedora 30 64-bit] 24 | - Node.js version [e.g. 14.15.1] 25 | 26 | **Additional context** 27 | Add any other context about the problem here. 28 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: Testing CI 2 | on: pull_request 3 | jobs: 4 | build: 5 | runs-on: ${{ matrix.os }} 6 | strategy: 7 | matrix: 8 | node: 9 | - 18 10 | - 20 11 | - 22 12 | - 24 13 | os: 14 | - ubuntu-latest 15 | steps: 16 | - uses: actions/checkout@v4 17 | - name: Use Node.js ${{ matrix.node }} 18 | uses: actions/setup-node@v4 19 | with: 20 | node-version: ${{ matrix.node }} 21 | - uses: actions/cache@v4 22 | with: 23 | path: ~/.npm 24 | key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} 25 | restore-keys: | 26 | ${{ runner.os }}-node- 27 | - run: npm ci 28 | - run: npm test 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021-2025 Metarhia contributors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | - [Issues](#issues) 4 | - [Pull Requests](#pull-requests) 5 | 6 | ## Issues 7 | 8 | There are two reasons to open an issue: 9 | 10 | - Bug report 11 | - Feature request 12 | 13 | For bug reports please describe the bug with a clear and concise description, 14 | steps to reproduce the behavior (usage example or test), expected behavior, 15 | provide OS and Node.js version, you can upload screenshots and any additional 16 | context for better understanding. 17 | 18 | Please don't open an issue to ask questions. 19 | 20 | Issues on GitHub are intended to be related to problems and feature requests 21 | so we recommend not using this medium to ask them here grin. Thanks for 22 | understanding! 23 | 24 | If you have a question, please check out our support groups and channels for 25 | developers community: 26 | 27 | Telegram: 28 | 29 | - Channel for Metarhia community: https://t.me/metarhia 30 | - Group for Metarhia technology stack community: https://t.me/metaserverless 31 | - Group for NodeUA community: https://t.me/nodeua 32 | 33 | ## Pull Requests 34 | 35 | Before open pull request please follow checklist: 36 | 37 | - [ ] tests and linter show no problems (`npm t`) 38 | - [ ] tests are added/updated for bug fixes and new features 39 | - [ ] code is properly formatted (`npm run fix`) 40 | - [ ] description of changes is added in CHANGELOG.md 41 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "metadomain", 3 | "version": "2.0.0-alpha.3", 4 | "author": "Timur Shemsedinov ", 5 | "license": "MIT", 6 | "description": "Metarhia core model: database schemas", 7 | "keywords": [ 8 | "metarhia", 9 | "model", 10 | "schema", 11 | "domain", 12 | "metamodel", 13 | "metaschma", 14 | "database" 15 | ], 16 | "main": "metadomain.js", 17 | "files": [ 18 | "schemas/" 19 | ], 20 | "engines": { 21 | "node": ">=18" 22 | }, 23 | "repository": { 24 | "type": "git", 25 | "url": "git+https://github.com/metarhia/metadomain.git" 26 | }, 27 | "bugs": { 28 | "url": "https://github.com/metarhia/metadomain/issues", 29 | "email": "timur.shemsedinov@gmail.com" 30 | }, 31 | "homepage": "https://metarhia.com", 32 | "funding": { 33 | "type": "patreon", 34 | "url": "https://www.patreon.com/tshemsedinov" 35 | }, 36 | "scripts": { 37 | "test": "npm run lint && node --test", 38 | "types": "tsc -p tsconfig.json", 39 | "lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\"", 40 | "fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\"" 41 | }, 42 | "dependencies": { 43 | "metaschema": "^2.2.2" 44 | }, 45 | "devDependencies": { 46 | "@types/node": "^24.3.1", 47 | "eslint": "^9.35.0", 48 | "eslint-config-metarhia": "^9.1.3", 49 | "prettier": "^3.6.2" 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## [Unreleased][unreleased] 4 | 5 | ## [2.0.0-alpha.3][] - 2024-06-20 6 | 7 | - Add node.j 23 and 24 to CI 8 | - Update dependencies 9 | 10 | ## [2.0.0-alpha.2][] - 2024-09-02 11 | 12 | - Add node.j 21 and 22, remove 16 and 19 in CI 13 | - Update dependencies 14 | - Upgrade eslint to 9.x, prettier, and configs 15 | 16 | ## [2.0.0-alpha.1][] - 2023-05-27 17 | 18 | - Rename `Category` to `Entity` 19 | - Rename `Unit` to `Division` 20 | - Change `email`, `phone` and `fullName` fields 21 | 22 | ## [1.0.10][] - 2023-04-01 23 | 24 | - Drop node.js 14 support, add node.js 20 25 | - Convert package_lock.json to lockfileVersion 2 26 | - Update dependencies 27 | 28 | ## [1.0.9][] - 2022-06-24 29 | 30 | - Hotfix 31 | 32 | ## [1.0.8][] - 2022-06-24 33 | 34 | - Update to metaschema 2.x 35 | - Update dependencies and package maintenance 36 | 37 | ## [1.0.7][] - 2022-03-17 38 | 39 | - Update dependencies and package maintenance 40 | 41 | ## [1.0.6][] - 2021-09-10 42 | 43 | - Add `{ delete: 'cascade' }` and to generate ON DELETE CASCADE 44 | - Update dependencies 45 | 46 | ## [1.0.5][] - 2021-08-04 47 | 48 | - Use relative path to load schemas from node_modules 49 | 50 | ## [1.0.4][] - 2021-08-02 51 | 52 | - Identifier schema is not a Registry, it's a regular entity 53 | - Add default: `now` for datetime fields 54 | - Add Category kinds and default kind 55 | - Fix enum for Permission 56 | 57 | ## [1.0.3][] - 2021-06-30 58 | 59 | - Role linked to Units 60 | - Projection examples 61 | 62 | ## [1.0.2][] - 2021-05-22 63 | 64 | - Improve core schemas 65 | - Add fail on warnings in tests 66 | - Fix warnings (unknown types) 67 | 68 | ## [1.0.1][] - 2021-05-21 69 | 70 | - Fix package files 71 | 72 | ## [1.0.0][] - 2021-05-20 73 | 74 | - Move initial implementation from metasql 75 | 76 | [unreleased]: https://github.com/metarhia/metadomain/compare/v2.0.0-alpha.3...HEAD 77 | [2.0.0-alpha.3]: https://github.com/metarhia/metadomain/compare/v2.0.0-alpha.2...v2.0.0-alpha.3 78 | [2.0.0-alpha.2]: https://github.com/metarhia/metadomain/compare/v2.0.0-alpha.1...v2.0.0-alpha.2 79 | [2.0.0-alpha.1]: https://github.com/metarhia/metadomain/compare/v1.0.10...v2.0.0-alpha.1 80 | [1.0.10]: https://github.com/metarhia/metadomain/compare/v1.0.9...v1.0.10 81 | [1.0.9]: https://github.com/metarhia/metadomain/compare/v1.0.8...v1.0.9 82 | [1.0.8]: https://github.com/metarhia/metadomain/compare/v1.0.7...v1.0.8 83 | [1.0.7]: https://github.com/metarhia/metadomain/compare/v1.0.6...v1.0.7 84 | [1.0.6]: https://github.com/metarhia/metadomain/compare/v1.0.5...v1.0.6 85 | [1.0.5]: https://github.com/metarhia/metadomain/compare/v1.0.4...v1.0.5 86 | [1.0.4]: https://github.com/metarhia/metadomain/compare/v1.0.3...v1.0.4 87 | [1.0.3]: https://github.com/metarhia/metadomain/compare/v1.0.2...v1.0.3 88 | [1.0.2]: https://github.com/metarhia/metadomain/compare/v1.0.1...v1.0.2 89 | [1.0.1]: https://github.com/metarhia/metadomain/compare/v1.0.0...v1.0.1 90 | [1.0.0]: https://github.com/metarhia/metadomain/compare/v0.0.0...v1.0.0 91 | --------------------------------------------------------------------------------