Skip to content

Commit 7dcb2b1

Browse files
authored
Merge branch 'master' into anna/master
2 parents 9143a2e + 0e24cc6 commit 7dcb2b1

58 files changed

Lines changed: 2268 additions & 1213 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
password: ${{ secrets.DOCKERHUB_TOKEN }}
5555

5656
- name: Build and push Docker image
57-
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1
57+
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0
5858
with:
5959
push: true
6060
file: ./Dockerfile-core

.github/workflows/docker-image.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
password: ${{ secrets.DOCKERHUB_TOKEN }}
3333

3434
- name: Build and push Docker image
35-
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1
35+
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0
3636
with:
3737
context: .
3838
push: true
@@ -63,7 +63,7 @@ jobs:
6363
password: ${{ secrets.DOCKERHUB_TOKEN }}
6464

6565
- name: Build and push Docker image
66-
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1
66+
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0
6767
with:
6868
push: true
6969
file: ./Dockerfile-api
@@ -94,7 +94,7 @@ jobs:
9494
password: ${{ secrets.DOCKERHUB_TOKEN }}
9595

9696
- name: Build and push Docker image
97-
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1
97+
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0
9898
with:
9999
push: true
100100
file: ./Dockerfile-frontend
@@ -125,7 +125,7 @@ jobs:
125125
password: ${{ secrets.DOCKERHUB_TOKEN }}
126126

127127
- name: Build and push Docker image
128-
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1
128+
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0
129129
with:
130130
push: true
131131
file: ./Dockerfile-core

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,28 @@
11

22
## Version 25.03.x
3+
Enterprise Features:
4+
- [journey_engine] Record Event block added
35

46
Fixes:
57
- [core] Unifying alphabetical order for dropdowns with dashboard apps
8+
- [hooks] Added null check for incoming data
69

710
Enterprise Fixes:
811
- [content] Asset URL was wrongly constructed when user switches between apps
912
- [ab-testing] Updates
1013
- Do not wait for result calculation when requesting experiments
1114
- Do not calculate result for completed experiments
12-
15+
- [drill] [license] Shorten warning period from 14 days to 3 days
1316

1417
Dependencies:
18+
- Bump eslint-plugin-vue from 9.33.0 to 10.1.0
1519
- Bump lint-staged from 15.5.2 to 16.0.0
20+
- Bump moment-timezone from 0.5.48 to 0.6.0
1621
- Bump nodemailer from 6.10.1 to 7.0.3
17-
- Bump puppeteer from 24.8.0 to 24.8.2
18-
- Bump sass from 1.87.0 to 1.88.0
22+
- Bump puppeteer from 24.8.0 to 24.9.0
23+
- Bump sass from 1.87.0 to 1.89.0
1924
- Bump semver from 7.7.1 to 7.7.2
25+
- Bump sharp from 0.33.5 to 0.34.2
2026
- Bump supertest from 7.1.0 to 7.1.1
2127

2228
## Version 25.03.5

api/utils/countly-request/package-lock.json

Lines changed: 15 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/scripts/timezones/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/scripts/timezones/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"homepage": "https://count.ly/",
2424
"dependencies": {
25-
"moment-timezone": "0.5.48",
25+
"moment-timezone": "0.6.0",
2626
"node-fetch": "3.3.2"
2727
}
2828
}

frontend/express/public/core/report-manager/templates/reportmanager-dialog.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div>
22
<slot :showDialog="showDialog" name="trigger">
3-
<el-button @click="showDialog" :disabled="disabled" type="default" size="small">
3+
<el-button data-test-id="last-queries-button" @click="showDialog" :disabled="disabled" type="default" size="small">
44
<div v-show="unread > 0" class="cly-bullet cly-bullet--orange bu-mr-1"></div>
55
Last queries
66
<span class="bu-tag is-curved">{{runningCount}}</span>
@@ -13,4 +13,4 @@
1313
:visible.sync="isDialogVisible">
1414
<cly-report-manager-table maxHeight="400px" @view-task="onViewTask" :disableAutoNavigationToTask="disableAutoNavigationToTask" report-type="auto" :fixed-origin="origin" compact></cly-report-manager-table>
1515
</cly-dialog>
16-
</div>
16+
</div>

frontend/express/public/javascripts/countly/vue/components/content.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,11 @@
238238
type: String,
239239
required: false,
240240
default: '#fff'
241+
},
242+
toolTipLeft: {
243+
type: String,
244+
required: false,
245+
default: 'Screens'
241246
}
242247
},
243248
data: function() {

frontend/express/public/javascripts/countly/vue/templates/content/content-body.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
11
<div class="cly-vue-content-builder__layout-main__body" :class="{ 'bu-is-justify-content-flex-end': hideLeftSidebar, 'bu-is-justify-content-flex-start': hideRightSidebar, 'cly-vue-content-builder__layout-main__body__dashed-bg': hasDashedBackground }" :style="{'background-color': backgroundColor}">
22
<transition :name="toggleTransition" @enter="onViewEntered">
3-
<div v-if="!hideLeftSidebar" class="cly-vue-content-builder__layout-main__body__left-sidebar" :style="{ 'width': this.leftSidebarWidth + 'px !important'}">
4-
<template v-if="$slots['content-layout-left-sidebar-wrapper']">
5-
<vue-scroll :ops="scrollOps">
6-
<slot name="content-layout-left-sidebar-wrapper"></slot>
7-
</vue-scroll>
8-
</template>
9-
</div>
103
<div v-if="!hideLeftSidebar && (collapsible && !isCollapsed)" class="cly-vue-content-builder__layout-main__body__left-sidebar" :style="{ 'width': this.leftSidebarWidth + 'px !important'}">
114
<div class="cly-vue-content-builder__layout-main__body__left-sidebar__header">
125
<div class="cly-vue-content-builder__layout-main__body__left-sidebar__header__title">
136
<h4>Screens</h4>
14-
<cly-tooltip-icon class="bu-ml-1" tooltip="Screens"></cly-tooltip-icon>
7+
<cly-tooltip-icon class="bu-ml-1" :tooltip="toolTipLeft"></cly-tooltip-icon>
158
</div>
169
<div v-if="collapsible" class="cly-vue-content-builder__layout-main__body__collapse-button" @click="collapseBar('left')">
1710
<div class="cly-vue-content-builder__layout-main__body__collapse-button__icon color-warm-gray-80">
@@ -28,6 +21,13 @@ <h4>Screens</h4>
2821
<i class="cly-io cly-io-arrow-sm-left"></i>
2922
</div>
3023
</div>
24+
<div v-else-if="!hideLeftSidebar" class="cly-vue-content-builder__layout-main__body__left-sidebar" :style="{ 'width': this.leftSidebarWidth + 'px !important'}">
25+
<template v-if="$slots['content-layout-left-sidebar-wrapper']">
26+
<vue-scroll :ops="scrollOps">
27+
<slot name="content-layout-left-sidebar-wrapper"></slot>
28+
</vue-scroll>
29+
</template>
30+
</div>
3131
</transition>
3232
<!-- <component
3333
v-if="currentTabComponent"

frontend/express/public/stylesheets/styles/base/_colors.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ $colors: (
3131
"charts-light-turquoise": #EBF9F9,
3232
"charts-amber": #F5C900,
3333
"charts-orange": #F96300,
34+
"charts-light-orange": #FEEFE5,
3435
"charts-magenta": #F34971,
3536
"charts-light-magenta": #FEEDF1,
3637
"charts-coral": #FF9382,

0 commit comments

Comments
 (0)