63e28dc964
feat(tracker): Gantt chart for the issue tracker ( #10992 )
...
* feat(tracker): Gantt chart for the issue tracker
Builds on the merged search/filter rework (#10998 ). Introduces @hcengineering/gantt, a dependency-free scheduling/zoom/drag/viewport engine package (with a neutral GanttDependency contract), and wires the tracker-specific adapter, Svelte UI, model schema, dependency-shift notifications and sanity coverage in tracker-resources.
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com >
* fix(tracker): source Gantt holidays from HR and scope confirm-gate per view
Follow-up to review feedback on #10992 :
- Confirm-gate: the module-global flag is replaced by a createConfirmGate()
factory - one instance per mounted GanttView, so two Gantt views mounted at
once in the same JS context no longer block each other's pointer input. A
two-instance independence test guards the regression.
- Sidebar sorting: the stale deadline cast is dropped and issue.deadline is
read directly (the field was added to the Issue model in this PR).
- HR holidays: the per-project WorkingDaysConfig.holidays field duplicated the
workspace-wide hr.class.PublicHoliday concept and could drift from the real
HR calendar. It is removed. WorkingDaysConfig now carries only the weekday
mask and an optional holidayDepartment. The tracker adapter resolves holidays
for the selected department plus all ancestors up to hr.ids.Head, matching
HR's existing inheritance semantics (hr-resources ScheduleView). A missing or
invalid reference falls back to company-wide (root) holidays; unrelated
departments are never included. The ancestor walk is cycle/missing-parent
safe.
A small WorkingDaysEditor in the existing project create/edit dialog lets
users with the existing project permission enable the mode, choose weekdays,
and select an HR department (default: Company-wide). It persists through the
existing project create/update transaction paths (createDoc on create,
client.update on edit) and uses $unset when the mode is disabled. At least
one working day must stay active.
Calendar loading is explicit via a CalendarStateMachine: project-scoped drag,
resize, cascade, keyboard-shift and auto-schedule mutations stay disabled
until both the project config and the holiday data have loaded. A monotonic
generation ticket (bumped synchronously on project switch) is re-checked
immediately before every calendar-dependent date commit, so work started in
one project can never persist after a switch to another. The all-projects
view has no single project calendar, so calendar-dependent edits are
read-only there; display, selection, the context menu and the manual
date-picker (which does no calendar arithmetic and takes no mutation ticket)
stay available.
This depends on the lightweight @hcengineering/hr model package, but not on
hr-resources; the tracker adapter uses hr.class.* and hr.ids.Head at runtime,
and actual HR model presence is checked through the hierarchy - without the
HR model, holidays resolve to an empty set. The @hcengineering/gantt engine
package stays domain-neutral (no @hcengineering imports, no runtime deps).
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com >
* fix(gantt): measure FS gap-preservation floor in working days
The finish-to-start gap-preservation floor in the cascade scheduler mixed
two time measures: the FS snap anchor is working-calendar aware, but the
floor added a raw calendar-millisecond start-side delta. With an active
working calendar the two diverge, so dragging a predecessor over a weekend
over-shifted the successor across non-working days (a Fri->Mon body drag is
3 calendar days but only 1 working day, and could even land a successor on
a Saturday).
Measure the floor on the DUE side in working days instead: translate the
predecessor's shift via the new workingDayDelta helper and advance the
floor base with addWorkingDays over the calendar. A day-granular resize
gate (utcMidnight comparison, not a raw === 0 test) arms the floor only on
a start-DAY move, so a pure due-resize stays a pure snap even when the
stored issue carries a time-of-day on the cascade-commit path. The floor
base is normalized via utcMidnight(targetAnchor). The legacy path
(cfg === undefined) stays byte-identical to today's raw-ms floor. A
left-resize in working-days mode now correctly no-ops the floor (the due,
and thus the FS gap, did not move) instead of shifting on the raw start
delta.
Engine: add workingDayDelta (signed, half-open from-exclusive/to-inclusive
working-day step count) and export the previously-private utcMidnight from
packages/gantt/src/working-days.ts. The engine stays domain-neutral (no
@hcengineering imports, empty dependencies).
Adds engine and adapter test coverage: workingDayDelta cases and the full
FS floor matrix (right-resize no-push, weekend-spanner body drag, floor
wins over snap, holiday in the floor path, floor-dominant multi-hop chain,
negative delta, legacy no-cfg, SS pure-snap, raw time-of-day right-resize,
direct left-resize).
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com >
---------
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com >
Co-authored-by: Michael Uray <michaeluray@users.noreply.github.com >
2026-08-27 20:24:38 +07:00
Artyom Savchenko and GitHub
dfe7d3d17c
feat: Add ability to schedule notifications ( #10789 )
...
* feat: Add ability to schedule notifications
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Clean up
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Clean up
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Add docker file
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Rename pod
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Add debug logging
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Reminder fixes
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix reminders
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Support reminders for all events
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Clean up
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Support for project todo
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix mismatched dependency
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Use base event class
Signed-off-by: Artem Savchenko <armisav@gmail.com >
---------
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2026-07-06 11:30:21 +05:00
Artyom Savchenko and GitHub
ecad38c940
Fix published packages ( #10788 )
...
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2026-04-21 20:31:22 +07:00
Artyom Savchenko and GitHub
111f9e14d7
Add data converter plugin ( #10460 )
...
* Add data converter plugin
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Clean up
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Apply templates
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix test
Signed-off-by: Artem Savchenko <armisav@gmail.com >
---------
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2026-01-29 14:44:13 +07:00
Alexander Onnikov and GitHub
2b3979030a
feat: link preview service ( #10424 )
...
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
2026-01-21 11:41:44 +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
Alexey Zinoviev and GitHub
df50eab941
Subscriptions ( #10114 )
2025-10-30 10:45:20 +07:00
Andrey Sobolev and GitHub
ffd8d90378
Support for rating system ( #10124 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-10-24 10:10:01 +07:00
Kristina and GitHub
e3c095ae4c
Merge inbox ( #10057 )
2025-10-22 09:14:35 +07:00
Alexey Zinoviev and GitHub
b86b3e46f3
UBERF-13891: global user profile ( #10102 )
...
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
2025-10-16 16:15:38 +04:00
Andrey Sobolev and GitHub
0aa4add180
Remove moved to huly.server packages ( #10061 )
2025-10-10 01:10:39 +07:00
Andrey Sobolev and GitHub
0a682d03e3
Switch huly core ( #10041 )
...
* Switch to huly.core
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
* Fix build
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
---------
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-10-07 20:23:46 +05:00
Kristina and GitHub
43d3fef71f
Auto translate service ( #9978 )
...
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
2025-10-05 22:45:51 +07:00
Andrey Sobolev and GitHub
f351ee1404
use of postgress-base ( #9989 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-10-01 14:52:13 +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
Kristina and GitHub
566b83ead7
Communication v2 ( #9867 )
...
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
2025-09-22 09:40:38 +04:00
Alexey Zinoviev and GitHub
d0a42d63ec
UBERF-13587: Huly secretary integration ( #9861 )
...
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
2025-09-17 16:23:35 +04: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
Kristina and GitHub
cf90627186
Init simple hulylake client ( #9866 )
...
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
2025-09-16 21:56:44 +07:00
Artyom Savchenko and GitHub
38bc85bf6c
Combine into one application chat, inbox and home ( #9865 )
...
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2025-09-16 13:15:56 +07:00
70ca4b1420
Ladies and gentlemen, introducing hulypulse-client and Typing ( #9778 )
...
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
Co-authored-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
2025-09-11 18:44:25 +07:00
Artyom Savchenko and GitHub
c62c4b932d
Add Home application ( #9811 )
...
* Add Home application
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Update labels and clean up
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Revert version
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Move home page
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix thread icon and translations
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Remove home from chat
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix typo
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Disable Home by default
Signed-off-by: Artem Savchenko <armisav@gmail.com >
---------
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2025-09-10 11:52:33 +07:00
Andrey Sobolev and GitHub
467e411eba
Bump rush to 158.1 ( #9752 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-09-03 13:15:23 +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
Denis Bykhov and GitHub
6ca5751e68
Add process temporal ( #9744 )
...
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
2025-09-01 22:10:14 +05:00
Artyom Savchenko and GitHub
4b9150f19d
UBERF-13271: Add Huly mail integration ( #9722 )
...
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2025-08-26 22:00:13 +07:00
0218c5d1ab
UBERF-13118: Send emails from Huly mail threads ( #9669 )
...
Signed-off-by: Artem Savchenko <armisav@gmail.com >
Signed-off-by: Artyom Savchenko <armisav@gmail.com >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-08-13 11:24:40 +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
Artyom Savchenko and GitHub
7e92c12073
UBERF-11414: Integrations ( #9610 )
...
* UBERF-11414: Use common integration kind
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Allow multiple gmail
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Merge with develop
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Refactor integration kinds
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Add integrations package
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Integrations
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Integration state and config
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Add integration events
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Refresh integration states
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Rename to integration-client
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Add filter button
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Add translations for filters
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Synced channels count
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Actions
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Add isLoading for connect
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Create connection and integration
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Use social id from hulygram
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Remove old integrations
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Gmail state
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Gmail state and disconnect all handler
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Add tests
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Formatting
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Gmail sync state
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Fix rush check
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Fix gmail tests
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Fix calendar actions and config
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Calendar state
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Access config
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Github integration state
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Fix svelte errors
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Fix formatting
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Fix typos
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Fix validate
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Fix translations
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-11414: Retry on network issues
Signed-off-by: Artem Savchenko <armisav@gmail.com >
---------
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2025-08-04 15:14:06 +07:00
Denis Bykhov and GitHub
5dd225dd51
Extract processor ( #9614 )
...
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
2025-07-30 18:06:22 +07:00
Andrey Sobolev and GitHub
8fef0d7f17
OpenTelemetry support ( #9584 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-07-23 13:49:14 +07:00
Alexander Platov and GitHub
881a12cc6e
Returned analytics collector with PostHog integration ( #9431 )
...
Signed-off-by: Alexander Platov <alexander.platov@hardcoreeng.com >
2025-07-10 21:28:07 +07:00
Alexander Onnikov and GitHub
0670e2c21a
UBERF-12145 Show downloads progress in desktop app ( #9492 )
...
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
2025-07-08 18:11:48 +07:00
Andrey Sobolev and GitHub
f44b9c427d
Extract postgres base package ( #9397 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-06-30 12:23:21 +07:00
Anton Alexeyev and GitHub
e5e9b1cb92
Billing service ( #9325 )
...
Signed-off-by: Anton Alexeyev <alexeyev.anton@gmail.com >
2025-06-24 11:10:27 +07:00
Andrey Sobolev and GitHub
feafc9a092
Backup Info API service ( #9273 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-06-17 23:44:53 +07:00
Alexander Onnikov and GitHub
2a945a0613
feat: use queue for transcoding tasks ( #9216 )
...
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
2025-06-12 22:53:03 +07:00
Artyom Savchenko and GitHub
2b5b00473b
UBERF-11451: Replace ses service with notification service ( #9200 )
...
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2025-06-12 12:26:09 +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
Kristina and GitHub
cd1a25bf52
Inbox UI & chat fixes ( #9165 )
...
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
2025-06-04 12:35:05 +07:00
Artyom Savchenko and GitHub
ceaa12b367
UBERF-11111/Move retry to packages ( #9121 )
...
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2025-05-28 13:06:17 +07:00
Alexander Onnikov and GitHub
a9cc6fef61
UBERF-9731 Rework loom ui ( #9113 )
...
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
2025-05-28 00:32:11 +07:00
Artyom Savchenko and GitHub
467267a67a
UBERF-10525: Update MTA-hook integration ( #8925 )
...
* UBERF-10525: Remove old mail resources
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10525: Use KVS for threads lookup
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10525: Use kvs for thread lookup
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10525: Integrate mail-common
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10525: Add tests
Signed-off-by: Artem Savchenko <armisav@gmail.com >
---------
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2025-05-14 16:06:58 +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
Anton Alexeyev and GitHub
b0c30707d6
Emoji node ( #8871 )
...
Signed-off-by: Anton Alexeyev <alexeyev.anton@gmail.com >
2025-05-13 14:19:14 +07:00
Artyom Savchenko and GitHub
a98b83d1e4
UBERF-10408: New gmail integration ( #8869 )
...
* UBERF-10375: Fix full message sync
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10375: Clean up
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Init new gmail integration
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Rename package
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Add mail channel and thread master tags
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Rename
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Create messages in cards
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Use new messages
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Use mail tags and add mail-common
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Use tags for mails
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Clean up tests
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Fix tests
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Clean up
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Clean up
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Apply client fixes
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Fix communication version
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Use adapter for message manager
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Remove gmail-next and improve performance
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Fix dep mismatch
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Add prefix for new history
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Fix failed tests
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* UBERF-10408: Fix composite emails and add channel cache
Signed-off-by: Artem Savchenko <armisav@gmail.com >
---------
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2025-05-12 11:26:46 +07:00
Kristina and GitHub
508cef27d4
New card layout ( #8796 )
2025-05-02 09:01:01 +07:00
Artyom Savchenko and GitHub
ac249c8273
UBERF-9764: Adjust gmail for new accounts ( #8681 )
...
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2025-04-28 11:37:30 +05:00
Alexander Onnikov and GitHub
06403b3507
feat: media state plugin ( #8674 )
2025-04-23 09:37:39 +07:00
Chunosov and GitHub
e7ff27fd53
Calendar event queue handler ( #8630 )
...
Signed-off-by: Nikolay Chunosov <Chunosov.N@gmail.com >
2025-04-18 21:27:50 +05:00