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
cc16352be9
Sync with foundations packages ( #10703 )
...
* fix: redesign and compact
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* fix: comments
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* fix: correctly dropping connections in timeout
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* feature: loglevel in config
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* fix: loglevel in config
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* features lopt: direct personal messages between websockets by username
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* fix collaborator security query
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Fix svelte warnings
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Change log
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Add workspace permissions enum
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Add changelog
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Permission methods
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Update core and account versions
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix predicate
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Add changelog
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix object clone
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Bump and add changelog
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix exception in getTypeOf
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Disable changelog check
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix failed to fetch errors in account client
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Clean up
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Support in-memory mode for hulypulse
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Update platform-rig
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Comment change log verification
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Update pnpm lock
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Sync with foundation
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Update platform-rig
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Sync with foundation and bump versions
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Sync with foundations
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Update and increment versions
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Skip change log verification
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix hulypulse connections
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix formatting and ci
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix validation warnings
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix formatting
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix validation
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Fix pnpm lock
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Update versions
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Update hulypulse version
Signed-off-by: Artem Savchenko <armisav@gmail.com >
---------
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
Signed-off-by: Artem Savchenko <armisav@gmail.com >
Co-authored-by: Leonid Kaganov <lleo@lleo.me >
Co-authored-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
2026-03-31 10:23:56 +07:00
d2d8fb74eb
Update dependencies ( #10305 )
...
* fix: redesign and compact
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* fix: comments
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* fix: correctly dropping connections in timeout
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* feature: loglevel in config
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* fix: loglevel in config
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* features lopt: direct personal messages between websockets by username
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
* fix collaborator security query
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
* Fix svelte warnings
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Change log
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Add workspace permissions enum
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Add changelog
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Permission methods
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Update core and account versions
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Update core and account versions
Signed-off-by: Artem Savchenko <armisav@gmail.com >
---------
Signed-off-by: Leonid Kaganov <lleo@lleo.me >
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
Signed-off-by: Artem Savchenko <armisav@gmail.com >
Co-authored-by: Leonid Kaganov <lleo@lleo.me >
Co-authored-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
2025-12-18 00:40:41 +05:00
Denis Bykhov
c3eba17a7e
update deps
...
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
2025-11-26 23:24:41 +05: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
4b8a40bb92
Bump core and server versions ( #10230 )
...
* Bump versions
Signed-off-by: Artem Savchenko <armisav@gmail.com >
* Add package lock
Signed-off-by: Artem Savchenko <armisav@gmail.com >
---------
Signed-off-by: Artem Savchenko <armisav@gmail.com >
2025-11-19 17:00:43 +07:00
Andrey Sobolev and GitHub
225f6036c3
Enable PNPM workspaces ( #10192 )
...
* Enable PNPM workspaces
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
* Fix love-agent build
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
* Fix formatting
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
---------
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-11-08 13:00:13 +07:00
Denis Bykhov and GitHub
efd539c297
Bump server ( #10185 )
...
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
2025-11-01 15:19:31 +07:00
Alexander Onnikov and GitHub
621a61da22
add usage info to workspace status ( #10172 )
...
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com >
2025-10-30 19:40:20 +07:00
Denis Bykhov and GitHub
5921428143
Bump versions ( #10170 )
...
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
2025-10-30 14:07:36 +07:00
Andrey Sobolev and GitHub
924f0e7b22
Bump packages ( #10162 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-10-28 15:59:45 +07:00
Andrey Sobolev and GitHub
1a618be120
Bump core deps ( #10156 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-10-27 22:29:51 +05:00
Andrey Sobolev and GitHub
770802e79d
Bump versions of all deps ( #10154 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-10-27 13:26:59 +07:00
Kristina and GitHub
986490ac62
Fix inbox ( #10129 )
...
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
2025-10-22 19:12:28 +04:00
Andrey Sobolev and GitHub
2e0cbd9242
Bump versions to latest core/server ( #10108 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-10-17 13:31:50 +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
57d2c5b666
Bump versions ( #10087 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-10-14 21:17:08 +07:00
Andrey Sobolev and GitHub
152befc628
Bump all core/server packages to latest version ( #10082 )
...
* Bump all core/server packages to latest version
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
* Fix platform-rig
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
---------
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-10-14 14:23:22 +07:00
Andrey Sobolev and GitHub
aa7829bb93
Update deps oct 11 ( #10069 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-10-12 08:55:50 +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
Andrey Sobolev and GitHub
fcb67d20f8
Switch to typescript 5.8.3 ( #9152 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-06-04 17:57:10 +05:00
Andrey Sobolev and GitHub
cfafaaf025
Bump node to v22 ( #9151 )
...
* Bump node to v22
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
* Fix deps
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
---------
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-06-02 14:23:33 +07:00
Andrey Sobolev and GitHub
8452c1f650
Fix ts-config to fix ts-server ( #9019 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-05-22 17:22:04 +07:00
utkaka and GitHub
590ac43d59
Fix TypedSpaces empty owners ( #8574 )
...
Signed-off-by: Anton Alexeyev <alexeyev.anton@gmail.com >
2025-04-18 11:34:31 +05:00
Alexey Zinoviev and GitHub
f3c231df0a
UBERF-9502: Account uuids in models ( #8125 )
...
Signed-off-by: Alexey Zinoviev <alexey.zinoviev@xored.com >
2025-03-05 12:22:15 +07:00
Andrey Sobolev
56a656bc6a
Merge branch 'staging' into develop
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2025-02-06 13:52:19 +07:00
Denis Bykhov and GitHub
997d910821
Fix remove project ( #7941 )
...
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
2025-02-06 12:41:36 +07:00
Alexey Zinoviev and GitHub
2c64ceadb8
UBERF-8425: Global accounts ( #7573 )
2025-02-04 10:31:03 +07:00
Kristina and GitHub
1e9fea356e
UBERF-7239: Support short/custom links in inbox/chat/planner ( #5815 )
...
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com >
2024-06-18 19:21:51 +07:00
Andrey Sobolev and GitHub
07d35f0827
Bump package versions ( #5728 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2024-06-05 12:46:40 +07:00
Alexey Zinoviev and GitHub
4bc1534ee0
EZQMS-729: Restrict spaces operations ( #5500 )
2024-05-04 20:49:24 +07:00
Andrey Sobolev and GitHub
67e81b35dd
Update to svelte 4.2.12 and some template fixes ( #4982 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2024-03-15 16:33:12 +07:00
Andrey Sobolev and GitHub
ec8dd14664
Fix validate build ( #4780 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2024-02-27 15:29:41 +07:00
Andrey Sobolev and GitHub
0d2501a95a
UBERF-5673: Esbuild transpile ( #4748 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2024-02-23 11:37:22 +06:00
Andrey Sobolev and GitHub
c23af625f6
Enhanced Phased build ( #4599 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2024-02-12 23:57:11 +07:00
Alexander Onnikov and GitHub
99564ddcb7
Update node version to v20 ( #4532 )
...
Signed-off-by: Alexander Onnikov <alexander.onnikov@xored.com >
2024-02-06 09:57:31 +07:00
Andrey Sobolev and GitHub
7621bccf22
UBER-1074: Svelte 4 ( #4014 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2023-11-20 17:01:43 +07:00
Andrey Sobolev and GitHub
e85cf1eeab
Allow to cache rush format action ( #3878 ) ( #3880 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2023-10-24 23:00:18 +07:00
Andrey Sobolev and GitHub
4bdd95b413
Allow to cache rush format action ( #3878 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2023-10-24 17:10:04 +07:00
Andrey Sobolev and GitHub
f4a86e1b1c
Upgrade Typescript to 5.2.0 ( #3810 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2023-10-08 03:14:00 +07:00
Andrey Sobolev and GitHub
9075e300ca
:Apply templates ( #3799 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2023-10-07 16:38:21 +06:00
Maksim Karmatskikh and GitHub
1ca9de297a
UBER-845: Add NotificationPresenter to send rich text notifications ( #3729 )
...
Signed-off-by: Maxim Karmatskikh <mkarmatskih@gmail.com >
2023-09-28 12:08:00 +07:00
Andrey Sobolev and GitHub
6b2f2bd548
bump-v0.6.110 ( #3489 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2023-07-10 10:52:33 +06:00
Andrey Sobolev and GitHub
4782a17cf0
TSK-1409: Bump. client resources 0.6.16 ( #3134 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2023-05-04 11:12:11 +06:00
Vyacheslav Tumanov and GitHub
e4a53a1b37
TSK-1032: add confirmation dialog for projects, fix sprint deleting and allow deleting for Owner or creator only ( #2964 )
...
Signed-off-by: Vyacheslav Tumanov <me@slavatumanov.me >
2023-04-17 13:08:41 +07:00
Denis Bykhov and GitHub
0f24fe80d6
TSK-810 Rename Team -> Project, Project -> Component ( #2756 )
...
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com >
2023-03-17 12:17:53 +06:00
Vyacheslav Tumanov and GitHub
93305b512a
Remove team ( #2625 )
...
Signed-off-by: Vyacheslav Tumanov <me@slavatumanov.me >
2023-02-13 15:18:31 +07:00
Vyacheslav Tumanov and GitHub
61fbb4b78b
Remove project button ( #2578 )
...
Signed-off-by: Vyacheslav Tumanov <me@slavatumanov.me >
2023-02-07 11:48:59 +07:00
Andrey Sobolev and GitHub
cee22d6d89
Bump versions ( #2494 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2023-01-09 12:35:54 +07:00
Andrey Sobolev and GitHub
688434a0e6
Bump versions ( #2430 )
...
Signed-off-by: Andrey Sobolev <haiodo@gmail.com >
2022-12-07 17:40:54 +06:00