fb596e91dc
Bump actions/cache from 5 to 6 ( #10925 )
...
Bumps [actions/cache](https://github.com/actions/cache ) from 5 to 6.
- [Release notes](https://github.com/actions/cache/releases )
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md )
- [Commits](https://github.com/actions/cache/compare/v5...v6 )
---
updated-dependencies:
- dependency-name: actions/cache
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-07-12 08:32:47 +07:00
abf82c1e67
Bump actions/checkout from 6 to 7 ( #10916 )
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v6...v7 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-07-12 08:32:19 +07:00
Artyom Savchenko and GitHub
8541588be8
Revert "Fix publish npm ( #10950 )" ( #10951 )
...
This reverts commit 5bda0e790a .
2026-07-03 17:39:08 +07:00
Artyom Savchenko and GitHub
5bda0e790a
Fix publish npm ( #10950 )
...
Signed-off-by: Artyom Savchenko <armisav@gmail.com >
2026-07-03 12:18:03 +07:00
Igor Loskutov and GitHub
18ef71bc04
fix(ci): emit declarations in tag npm publish ( #10842 )
...
Signed-off-by: Igor Loskutov <igor.loskutoff@gmail.com >
2026-05-18 13:46:49 +07:00
Artyom Savchenko and GitHub
fc1f99bea1
Fix docker build ( #10831 )
...
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2026-05-08 16:00:08 +07:00
Denis Bykhov and GitHub
d2591a1e71
Markup properties ( #10804 )
...
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
2026-04-27 13:46:08 +05:00
7905e0a6cf
fix: re-enable model version check in CI ( #10796 )
...
The check_model_version.js CI step was commented out, which allowed
v0.7.413 to ship with MODEL_VERSION=0.7.343 baked into the desktop
client. This causes a blocking "New version is available" dialog for
self-hosted users whose servers have MODEL_VERSION > 0.7.343.
Re-enabling this check will catch future model/version.txt drift
before it reaches a release.
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com >
2026-04-23 11:31:30 +07:00
Igor Loskutov and GitHub
cc9c8b870b
fix(ci): emit TypeScript declarations before npm publish ( #10768 )
...
Published tarballs of several @hcengineering/* packages (0.7.411+)
are missing their .d.ts files, despite every package.json declaring
"types": "types/index.d.ts" and listing "types/**/*" in "files".
Repro: npm pack @hcengineering/core@0.7.413 --dry-run --json
(no `types/` entries in the file list)
Root cause
----------
`publish-npm.yml` runs `rush build`, which is defined in
`common/config/rush/command-line.json` as a phased command with
`"phases": ["_phase:build"]`. `_phase:build` resolves to
`compile transpile src` (an esbuild-only transpile → `lib/`). The
`.d.ts` emit lives in a separate phase, `_phase:validate`
(`compile validate` → `tsc --emitDeclarationOnly` →
`declarationDir: ./types`), which the publish workflow never runs.
Because `types/` does not exist when safe-publish.js invokes
`npm publish`, the `types/**/*` glob in each package's `files` field
matches nothing and the tarball ships without declarations.
Why this didn't regress earlier
-------------------------------
These packages used to live in the now-dormant `hcengineering/huly.core`
repo. That repo's `ci.yml` explicitly ran `rush validate` before
`rush publish`, so `types/` was always present at publish time.
After migration into this monorepo, the publish pipeline was rewritten
(PR #10542 , then extracted to `publish-npm.yml` in PR #10580 ) and the
validate step was not carried over. Versions 0.7.18–0.7.382 still
shipped declarations because:
- 0.7.18–0.7.26 were published from `huly.core` (validate present).
- 0.7.382 was published manually from a developer machine
(`_nodeVersion: 22.13.0, _npmVersion: 11.0.0` in npm metadata —
doesn't match the CI runner). `types/` happened to be left on
disk from prior local development.
- 0.7.411+ are the first versions published via `publish-npm.yml`
on a fresh runner (`_nodeVersion: 22.22.2, _npmVersion: 10.9.7`,
consistent with actions/setup-node@v6 resolving `.nvmrc: v22`).
Fresh workspace, no validate step, no `types/`.
Fix
---
Add a `rush validate` step between build and publish in
`publish-npm.yml`. Scoped to the publish workflow so regular CI build
times are unaffected. An alternative would be to add `_phase:validate`
to the `build` phased command in `command-line.json` (matching
`build:watch`, which already does `["_phase:build", "_phase:validate"]`),
but that would make any validate failure block all builds, not just
publishes — strictly worse blast radius for this particular bug.
Affected packages observed on npm (0.7.411+):
@hcengineering/core
@hcengineering/account-client
@hcengineering/api-client
@hcengineering/text
@hcengineering/text-core
@hcengineering/text-html
Fixes #10767
2026-04-15 12:47:45 +07:00
b7f85fb778
build(deps): bump pnpm/action-setup from 4 to 5 ( #10648 )
...
Bumps [pnpm/action-setup](https://github.com/pnpm/action-setup ) from 4 to 5.
- [Release notes](https://github.com/pnpm/action-setup/releases )
- [Commits](https://github.com/pnpm/action-setup/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: pnpm/action-setup
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-18 14:37:55 +07:00
Artyom Savchenko and GitHub
9fadd8c735
Fix publish config ( #10644 )
...
* Fix publish config
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Clean up
Signed-off-by: Artem Savchenko <armisav@gmail.com >
---------
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2026-03-18 14:27:55 +07:00
cdec274c14
build(deps): bump docker/setup-qemu-action from 3 to 4 ( #10590 )
...
Bumps [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action ) from 3 to 4.
- [Release notes](https://github.com/docker/setup-qemu-action/releases )
- [Commits](https://github.com/docker/setup-qemu-action/compare/v3...v4 )
---
updated-dependencies:
- dependency-name: docker/setup-qemu-action
dependency-version: '4'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-05 12:40:44 +07:00
2c13395e09
build(deps): bump docker/login-action from 3 to 4 ( #10589 )
...
Bumps [docker/login-action](https://github.com/docker/login-action ) from 3 to 4.
- [Release notes](https://github.com/docker/login-action/releases )
- [Commits](https://github.com/docker/login-action/compare/v3...v4 )
---
updated-dependencies:
- dependency-name: docker/login-action
dependency-version: '4'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-05 12:40:19 +07:00
e06c427762
build(deps): bump crazy-max/ghaction-setup-docker from 3 to 5 ( #10585 )
...
Bumps [crazy-max/ghaction-setup-docker](https://github.com/crazy-max/ghaction-setup-docker ) from 3 to 5.
- [Release notes](https://github.com/crazy-max/ghaction-setup-docker/releases )
- [Commits](https://github.com/crazy-max/ghaction-setup-docker/compare/v3...v5 )
---
updated-dependencies:
- dependency-name: crazy-max/ghaction-setup-docker
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-03 13:37:41 +07:00
c3eb219668
build(deps): bump docker/setup-docker-action from 4 to 5 ( #10584 )
...
Bumps [docker/setup-docker-action](https://github.com/docker/setup-docker-action ) from 4 to 5.
- [Release notes](https://github.com/docker/setup-docker-action/releases )
- [Commits](https://github.com/docker/setup-docker-action/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: docker/setup-docker-action
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-03 13:37:06 +07:00
38b97b6840
Allow to launch publish npm manually ( #10580 )
...
* Allow to launch publish npm manually
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Potential fix for code scanning alert no. 288: Workflow does not contain permissions
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Artyom Savchenko <armisav@gmail.com >
---------
Signed-off-by: Artem Savchenko <armisav@gmail.com >
Signed-off-by: Artyom Savchenko <armisav@gmail.com >
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
2026-03-02 13:44:07 +07:00
Artyom Savchenko and GitHub
a21764cbf0
Fix npm publish ( #10575 )
...
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2026-03-02 10:59:00 +07:00
Artyom Savchenko and GitHub
c3758432bf
Validate version bumped for v tags ( #10567 )
...
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2026-02-28 17:17:03 +07:00
Artyom Savchenko and GitHub
2dd45f56a0
Fix npm publish ( #10545 )
...
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2026-02-24 23:50:05 +05:00
Artyom Savchenko and GitHub
7c92000d0c
Bump and publish npm packages for v tags ( #10542 )
...
* Bump and publish npm packages for v tags
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Add permmission block
Signed-off-by: Artem Savchenko <armisav@gmail.com >
---------
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2026-02-23 08:59:09 +07:00
eac75aaf56
Bump actions/upload-artifact from 4 to 6 ( #10300 )
...
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact ) from 4 to 6.
- [Release notes](https://github.com/actions/upload-artifact/releases )
- [Commits](https://github.com/actions/upload-artifact/compare/v4...v6 )
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-16 10:25:30 +07:00
ba8cea10e2
Bump actions/cache from 4 to 5 ( #10297 )
...
Bumps [actions/cache](https://github.com/actions/cache ) from 4 to 5.
- [Release notes](https://github.com/actions/cache/releases )
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md )
- [Commits](https://github.com/actions/cache/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: actions/cache
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-13 21:22:16 +07:00
e5c97fd57d
Bump actions/checkout from 4 to 6 ( #10235 )
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 4 to 6.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v4...v6 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Artyom Savchenko <armisav@gmail.com >
2025-11-28 12:48:31 +07:00
+1
98652c6476
Include sub projects ( #10201 )
...
* Add bump-changes
* Add utility tests
* Add utility tests
* Bump to new version of esbuild and typescript
* v0.7.3
* use platform rig 0.7.10
* upgrade: memory engine optimized; change name to (was recommended by Copilot and Onnikov, TODO: CHANGE CLIENT TOO!!!)
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* Fix rate limits bug
* Bump versions
* Fix lock file
* Fix bug in queue cleanup
* Add more tests for queue
* Add api-test tests
* Initial commit
* Improve hierarchy + tests
Add tests for hierarchy and few performance/memory optimizations.
* Add more hierarchy tests
* Move from Huly platform repository
* Add docker tests setup
* Fix test to be executed only once
* Add connection tests
* Fix package include source files
* More tests
* Create README.md
* Fix pnpm lock
* Fix packages publish
* Remove broken tests
* feat: adjust hulylake client for storage adapter
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Fix export
* Fix publish
* Fix message update (#114 )
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
* Bump version
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
* Bump versions
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Fix lang store (#115 )
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
* update hulylake client
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Bump version
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Add hulylake storage adapter
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Bump version
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* fix validation issues
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* fix: do not fail on deseralization error and add logs
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* bump version -> 0.1.14
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* fix collaboration test
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Update prettier and new update-deps script
Prettier + svelte support
* fix unstable ydoc tests
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Add tx ordering middleware
* Fix ordering tests
* Fix Kafka close of admin
* Add tests for measurement and understand overhead
* Fix not updated lock file
* Fix update-deps
* Fix update-deps
* Use latest platform-rig
* Fix deps
* Add rush check to CI
* Use latest versions
* Bump versions
* Fix lock file
* validate json patch
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* bump version -> 0.1.15
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* fix merge unit tests
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Script to sync eslint deps
* Fix deps
* Fix tests
* Fix platform-rig detection
* Update to latest platform-rig
* Update to latest platform rig and core
* Bump typescript
* Bump typescript
* Rollback eslint plugins
* Fix lock file
* Bump platform-rig
* Update to latest platform-rig
* update to latest platform-rig
* Allow to compile svelte files
* Add ui-test component for checking compile
* Fix log levels rename compile ui -> compile ui-esbuild
* Fix build
* Bump esbuild svelte version
* Chore: use fixed versions in update-deps
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
* Chore: commit changes
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
* Update deps
* Add tests for session manager
* Fix txOrdering implementation
* Bump ordering
* Prevent metrics zero values in measure
+ Fix format svelte files
* Revert update-deps script logic
* v0.7.19
* update to latest platform-rig
* Update deps
* Fix pnpm
* Session counters
* Fix pnpm lock
* Add storage client
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Bump versions
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* fix versions
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Bump core
* Fix pnpm
* Get rid of communication dependency
* Add copilot memory file
* Use proper name for instructions file
* Fix instructions
* Use domain instead of test name in gauges
* Update instructions file
* fix front service upload
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* remove incorrect test
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Move packages to huly.core
* Move packages to core, since they are not utils
* Add global user profile
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
* Fix lock file
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
* Add support for memory limit check
* Bump version
* Fix pnpm
* report more accurate upload progress
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* fic validation issues
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Fix deps
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
* Move LowLevelStorage to server
* Fix linting
* Revert "Fix linting"
This reverts commit 54631d353e .
* Revert "Move LowLevelStorage to server"
This reverts commit aafb8f6f12 .
* feature: add regorus engine with permit file
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* Fix one second counters for memory usage
* Fix kafka test
* use fresh core
* Version bump
* fix: key parameter added
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* Fix readme and few author mistakes
* Export domain schemas
* Bump version
* Tests (#117 )
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
* Bump version
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
* feat: compact compact worker (#4 )
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* bump version -> 0.1.16
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Add TypeIdentifier
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Add change logs
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* rename send -> try_send
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Bump
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Fix pnpm lock
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Add identifier middleware, bump core
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Add subsciption methods to account client
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
* Fix lock file
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
* Fix reaction notification (#118 )
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
* Bump version
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
* Improve find methods schemas to convert to valid types
Signed-off-by: Nikolay Marchuk <nikolay.marchuk@hardcoreeng.com >
* Add change description
Signed-off-by: Nikolay Marchuk <nikolay.marchuk@hardcoreeng.com >
* Do not transcode while recording
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Open telemetry support
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* use proper content type in multipart upload
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Bump versions
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* fix build (#26 )
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Fix peers (#120 )
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
* Bump version
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
* Add ActivityCollaborativeChange
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Update pnpm
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Allow to suspend errors on with
* Fix pnpm cache
* update versions
* v0.7.17 for all
* v0.7.11
* v0.7.14
* remove arc from worker
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* bump version -> 0.1.17
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Rank for attributes
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Update pnpm
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Fix one second counters
* Fix withContext and allow pass options
* Fix formatting
* Use updated deps
* Bump versions
* Update deps
* Update deps to platform.core
* add support for textColor mark
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* add support for textStyle mark
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Bump versions
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Bump versions again
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Fix
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Rework on second timers
* fix merge of large blobs feched from s3
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* bump version -> 0.1.18
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* New subscription methods in account-client
* Update lock file
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
* Send error on find for wrong domain
* Suspend connect custom errors events in traces
* Bump client
* Bump core
* update deps
* Fix lock file
* Sorting for TypeIdentifier
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Bump version
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* add workspace usage info
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Bump versions
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Improve pg security perfomance
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Fix identifier middleware
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Update TxAccessLevel interface
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
* Allow guest to update its identities
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
* Add password login locked platform status
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
* Fix Uptrace normalizeMarkdown errors
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Add change log
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Add txMatch to permission
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* update pnpm lock
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Bump
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Fix permission middleware
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Fix enum sorting
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Enable formatting check
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
* Enable formatting check
* Add change
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
* Fix Uptrace NaN error
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* feature: removed actors, improved performance
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* feature: ping from server to clients added
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* feature: ping from server to clients added
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* Compress kafka messages and fix exception in findAll
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Bump versions
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Bump versions
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Rush change
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix compression param
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Trigger change
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Clean up
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Trigger change
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Bump markdown version
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Enable sub projects
* Fix wrong double symbol scripts
* Include foundation packages
* Add support for custom exclude filters
Add support for custom exclude filters - by Andrey Sobolev - haiodo@gmail.com
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
* Bump
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
* Fix Uptrace filter is not a function error
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Sync versions
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
---------
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
Signed-off-by: Nikolay Marchuk <nikolay.marchuk@hardcoreeng.com >
Signed-off-by: Artem Savchenko <armisav@gmail.com >
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
Co-authored-by: Leonid Kaganov <lleo@lleo.me >
Co-authored-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
Co-authored-by: Alexander Onnikov <Alexander.Onnikov@gmail.com >
Co-authored-by: Kristina <kristin.fefelova@gmail.com >
Co-authored-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
Co-authored-by: Denis Bykhov <bykhov.denis@gmail.com >
Co-authored-by: Nikolay Marchuk <nikolay.marchuk@hardcoreeng.com >
Co-authored-by: Alexander Onnikov <aonnikov@hardcoreeng.com >
Co-authored-by: Artem Savchenko <armisav@gmail.com >
2025-11-26 19:15:30 +05:00
Artyom Savchenko and GitHub
ea4e1c596d
Reuse and improve free space action ( #10226 )
...
* Reuse and improve free space action
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Checkout actions
Signed-off-by: Artem Savchenko <armisav@gmail.com >
---------
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2025-11-18 16:29:37 +07:00
Artyom Savchenko and GitHub
f75296e8fa
Free disk space for ui tests ( #10225 )
...
* Free disk space for ui tests
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Rollback space free
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Add free space action
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Remove temp
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix free space
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Add space check
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Free temp only
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Check root space
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Extened cleanup
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Do not remove temp
Signed-off-by: Artem Savchenko <armisav@gmail.com >
---------
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2025-11-18 14:54:43 +07:00
1cd34ea353
Optimise docker build space usage ( #10224 )
...
* Use BuildKit builder instead of legacy one
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* fix: use slim docker image
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Add dockerignore
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Clean up build artifacts
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Clean up
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix flag
Signed-off-by: Artem Savchenko <armisav@gmail.com >
---------
Signed-off-by: Artem Savchenko <armisav@gmail.com >
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
Co-authored-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
2025-11-17 21:50:06 +07:00
dc0890ca2e
Bump actions/setup-node from 4 to 6 ( #10093 )
...
Bumps [actions/setup-node](https://github.com/actions/setup-node ) from 4 to 6.
- [Release notes](https://github.com/actions/setup-node/releases )
- [Commits](https://github.com/actions/setup-node/compare/v4...v6 )
---
updated-dependencies:
- dependency-name: actions/setup-node
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-16 12:49:05 +07:00
Andrey Sobolev and GitHub
b7e083c553
Allow build without login to docker hub ( #10095 )
2025-10-15 14:54:42 +07:00
Alexander Onnikov and GitHub
1fa510506b
add check-versions script ( #10089 )
2025-10-14 18:49:32 +07:00
Andrey Sobolev and GitHub
7cfc470cb5
Remove templates check on CI ( #10084 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-10-14 13:53:26 +07:00
Andrey Sobolev and GitHub
aea7f8ab4e
qfix: Use measurements from published packages ( #9984 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-09-30 23:24:48 +07:00
Andrey Sobolev and GitHub
459dec3b5d
switch to public npm registry ( #9863 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-09-17 11:43:25 +07:00
Alexander Onnikov and GitHub
567fd3b4dc
UBERF-11387 Preview service ( #9738 )
...
* UBERF-11387 Preview service
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* code review fixes
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* optimize build
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* use base preview image
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* free some disk space in github runner
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* fix: try to clean builder cache
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* fix: update sharp version for preview
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* some cache fixes
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
---------
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
2025-09-03 01:08:37 +07:00
Alexey Zinoviev and GitHub
07a5ebeb91
Qfix: do not cache desktop packaging results ( #9708 )
...
* Qfix: do not cache desktop packaging results
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
* Move bump version to CI
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
2025-08-21 17:52:07 +07:00
Alexey Zinoviev and GitHub
42c7de17af
EQMS-1548: TraceX desktop app ( #9666 )
...
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
2025-08-12 18:01:10 +07:00
Alexey Zinoviev and GitHub
f84f1c8714
uberf-11798: win arm build ( #9366 )
...
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
2025-06-25 15:32:39 +07:00
Kristina and GitHub
25272e3431
Communication submodule ( #9170 )
...
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
2025-06-06 01:29:11 +07:00
Andrey Sobolev and GitHub
51cc82b175
Enable cpu profiling for ui tests ( #9149 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-06-02 17:56:17 +07:00
Andrey Sobolev and GitHub
bd6bbf8d15
UBERF-11398: Fixing rate limits ( #9143 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-06-02 10:03:24 +07:00
Andrey Sobolev
cee1b17d7f
Disable github integrations
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-05-15 12:34:43 +07:00
Alexey Aristov and GitHub
29d9e26a9c
pods / external ( #8913 )
...
* remove individual hulykvs build job from workflows/main.yml
* pods_external build/push support
* no-op format command
---------
Signed-off-by: Alexey Aristov <aav@acm.org >
2025-05-14 10:21:21 +02:00
Alexey Aristov and GitHub
02759df0fd
Github Action: add hulykvs build job ( #8878 )
2025-05-09 12:50:13 +07:00
Alexander Onnikov and GitHub
8ec4ba968f
fix: increase beforeAll timeout on API tests ( #8707 )
...
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
2025-04-25 16:51:27 +07:00
Andrey Sobolev and GitHub
bd009bbc6a
QFIX: Build for external PRs. ( #8579 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-04-16 15:02:16 +07:00
Denis Bykhov and GitHub
d398dc54ec
Switch init to main ( #8462 )
2025-04-04 08:29:48 +07:00
Andrey Sobolev and GitHub
08434ccb3c
UBERF-9694: Queue processing improvements ( #8418 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-04-02 00:15:06 +07:00
Kristina and GitHub
af9bb74670
New chat & inbox ( #8328 )
...
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
2025-03-31 17:09:09 +07:00
Andrey Sobolev and GitHub
f6c8085583
Use authorized docker pull ( #8375 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-03-28 12:23:34 +07:00
Andrey Sobolev and GitHub
58eb205688
use redpanda queue ( #8291 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-03-22 13:55:46 +05:00