Skip to content

Commit 38c20a4

Browse files
authored
Merge branch 'main' into mi/sort-cards-after-voting
2 parents 2bddc47 + 12f2cd3 commit 38c20a4

File tree

10 files changed

+34
-40
lines changed

10 files changed

+34
-40
lines changed

deployment/docker/.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# read more about all env vars at https://docs.scrumlr.io/self-hosting/env-vars/
33

44
## Scrumlr backend
5-
SCRUMLR_BACKEND_VERSION=4.0.0
5+
SCRUMLR_BACKEND_VERSION=4.1.0
66
SCRUMLR_LOG_LEVEL="INFO"
77
SCRUMLR_SERVER_PORT=8080
88
SCRUMLR_BASE_PATH="/api"
@@ -42,7 +42,7 @@ SESSION_SECRET=
4242
SCRUMLR_ENABLE_EXPERIMENTAL_AUTH_FILE_SYSTEM_STORE=
4343

4444
## Scrumlr frontend
45-
SCRUMLR_FRONTEND_VERSION=4.0.0
45+
SCRUMLR_FRONTEND_VERSION=4.1.0
4646
SCRUMLR_LISTEN_PORT=8080
4747
SCRUMLR_SERVER_URL="/api"
4848
## Websocket URL (wss:// or ws://)

deployment/docker/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
services:
33
scrumlr-backend:
44
restart: always
5-
image: "ghcr.io/inovex/scrumlr.io/scrumlr-server:${SCRUMLR_BACKEND_VERSION:-4.0.0}"
5+
image: "ghcr.io/inovex/scrumlr.io/scrumlr-server:${SCRUMLR_BACKEND_VERSION:-4.1.0}"
66
container_name: scrumlr-backend
77
command:
88
- "/app/main"
@@ -54,7 +54,7 @@ services:
5454

5555
scrumlr-frontend:
5656
restart: always
57-
image: "ghcr.io/inovex/scrumlr.io/scrumlr-frontend:${SCRUMLR_FRONTEND_VERSION:-4.0.0}"
57+
image: "ghcr.io/inovex/scrumlr.io/scrumlr-frontend:${SCRUMLR_FRONTEND_VERSION:-4.1.0}"
5858
container_name: scrumlr-frontend
5959
environment:
6060
SCRUMLR_LISTEN_PORT: "${SCRUMLR_LISTEN_PORT:-8080}"

deployment/helm/scrumlr/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ version: 0.1.0
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "4.0.0"
24+
appVersion: "4.1.0"
2525

2626
home: scrumlr.io
2727
sources:

deployment/helm/scrumlr/tests/backend/deployment_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ tests:
4646
template: /backend/deployment.yaml
4747
- equal:
4848
path: spec.template.spec.containers[0].image
49-
value: scrumlr/scrumlr-backend:4.0.0
49+
value: scrumlr/scrumlr-backend:4.1.0
5050
template: /backend/deployment.yaml
5151

5252
- it: should set image tag

deployment/helm/scrumlr/tests/frontend/deployment_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ tests:
4646
template: /frontend/deployment.yaml
4747
- equal:
4848
path: spec.template.spec.containers[0].image
49-
value: scrumlr/scrumlr-frontend:4.0.0
49+
value: scrumlr/scrumlr-frontend:4.1.0
5050
template: /frontend/deployment.yaml
5151

5252
- it: should set image tag

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"url": "https://github.com/inovex/scrumlr.io/issues",
77
"email": "info@scrumlr.io"
88
},
9-
"version": "4.0.0",
9+
"version": "4.1.0",
1010
"private": true,
1111
"license": "MIT",
1212
"dependencies": {
@@ -74,7 +74,7 @@
7474
"@typescript-eslint/eslint-plugin": "^5.62.0",
7575
"@typescript-eslint/parser": "^5.62.0",
7676
"cross-env": "^10.0.0",
77-
"cypress": "^15.2.0",
77+
"cypress": "^15.3.0",
7878
"eslint": "^8.57.1",
7979
"eslint-config-airbnb": "19.0.4",
8080
"eslint-config-airbnb-typescript": "^17.1.0",
@@ -98,7 +98,7 @@
9898
"react-scripts": "^5.0.1",
9999
"redux-mock-store": "^1.5.4",
100100
"resize-observer-polyfill": "^1.5.1",
101-
"sass": "^1.93.0",
101+
"sass": "^1.93.2",
102102
"stylelint": "^16.24.0",
103103
"stylelint-config-standard": "^39.0.0",
104104
"ts-jest": "^29.4.4",
@@ -136,4 +136,4 @@
136136
"last 1 safari version"
137137
]
138138
}
139-
}
139+
}

server/src/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ require (
1919
github.com/gorilla/websocket v1.5.3
2020
github.com/lestrrat-go/jwx/v2 v2.1.6
2121
github.com/markbates/goth v1.82.0
22-
github.com/nats-io/nats.go v1.45.0
22+
github.com/nats-io/nats.go v1.46.0
2323
github.com/redis/go-redis/extra/redisotel/v9 v9.14.0
2424
github.com/redis/go-redis/v9 v9.14.0
2525
github.com/stretchr/testify v1.11.1
@@ -33,7 +33,7 @@ require (
3333
github.com/uptrace/bun/extra/bunotel v1.2.15
3434
github.com/urfave/cli/v2 v2.27.7
3535
github.com/weppos/publicsuffix-go v0.50.0
36-
go.opentelemetry.io/contrib/bridges/otelzap v0.12.0
36+
go.opentelemetry.io/contrib/bridges/otelzap v0.13.0
3737
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0
3838
go.opentelemetry.io/otel v1.38.0
3939
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.14.0

server/src/go.sum

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ github.com/moby/term v0.5.2 h1:6qk3FJAFDs6i/q3W/pQ97SX192qKfZgGjCQqfCJkgzQ=
178178
github.com/moby/term v0.5.2/go.mod h1:d3djjFCrjnB+fl8NJux+EJzu0msscUP+f8it8hPkFLc=
179179
github.com/morikuni/aec v1.0.0 h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A=
180180
github.com/morikuni/aec v1.0.0/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc=
181-
github.com/nats-io/nats.go v1.45.0 h1:/wGPbnYXDM0pLKFjZTX+2JOw9TQPoIgTFrUaH97giwA=
182-
github.com/nats-io/nats.go v1.45.0/go.mod h1:iRWIPokVIFbVijxuMQq4y9ttaBTMe0SFdlZfMDd+33g=
181+
github.com/nats-io/nats.go v1.46.0 h1:iUcX+MLT0HHXskGkz+Sg20sXrPtJLsOojMDTDzOHSb8=
182+
github.com/nats-io/nats.go v1.46.0/go.mod h1:iRWIPokVIFbVijxuMQq4y9ttaBTMe0SFdlZfMDd+33g=
183183
github.com/nats-io/nkeys v0.4.11 h1:q44qGV008kYd9W1b1nEBkNzvnWxtRSQ7A8BoqRrcfa0=
184184
github.com/nats-io/nkeys v0.4.11/go.mod h1:szDimtgmfOi9n25JpfIdGw12tZFYXqhGxjhVxsatHVE=
185185
github.com/nats-io/nuid v1.0.1 h1:5iA8DT8V7q8WK2EScv2padNa/rTESc1KdnPw4TC2paw=
@@ -267,8 +267,8 @@ github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0=
267267
github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA=
268268
go.opentelemetry.io/auto/sdk v1.1.0 h1:cH53jehLUN6UFLY71z+NDOiNJqDdPRaXzTel0sJySYA=
269269
go.opentelemetry.io/auto/sdk v1.1.0/go.mod h1:3wSPjt5PWp2RhlCcmmOial7AvC4DQqZb7a7wCow3W8A=
270-
go.opentelemetry.io/contrib/bridges/otelzap v0.12.0 h1:FGre0nZh5BSw7G73VpT3xs38HchsfPsa2aZtMp0NPOs=
271-
go.opentelemetry.io/contrib/bridges/otelzap v0.12.0/go.mod h1:X2PYPViI2wTPIMIOBjG17KNybTzsrATnvPJ02kkz7LM=
270+
go.opentelemetry.io/contrib/bridges/otelzap v0.13.0 h1:aBKdhLVieqvwWe9A79UHI/0vgp2t/s2euY8X59pGRlw=
271+
go.opentelemetry.io/contrib/bridges/otelzap v0.13.0/go.mod h1:SYqtxLQE7iINgh6WFuVi2AI70148B8EI35DSk0Wr8m4=
272272
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 h1:RbKq8BG0FI8OiXhBfcRtqqHcZcka+gU3cskNuf05R18=
273273
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0/go.mod h1:h06DGIukJOevXaj/xrNjhi/2098RZzcLTbc0jDAUbsg=
274274
go.opentelemetry.io/otel v1.38.0 h1:RkfdswUDRimDg0m2Az18RKOsnI8UDzppJAtj01/Ymk8=
@@ -289,8 +289,8 @@ go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.38.0 h1:aTL7F
289289
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.38.0/go.mod h1:kldtb7jDTeol0l3ewcmd8SDvx3EmIE7lyvqbasU3QC4=
290290
go.opentelemetry.io/otel/log v0.14.0 h1:2rzJ+pOAZ8qmZ3DDHg73NEKzSZkhkGIua9gXtxNGgrM=
291291
go.opentelemetry.io/otel/log v0.14.0/go.mod h1:5jRG92fEAgx0SU/vFPxmJvhIuDU9E1SUnEQrMlJpOno=
292-
go.opentelemetry.io/otel/log/logtest v0.13.0 h1:xxaIcgoEEtnwdgj6D6Uo9K/Dynz9jqIxSDu2YObJ69Q=
293-
go.opentelemetry.io/otel/log/logtest v0.13.0/go.mod h1:+OrkmsAH38b+ygyag1tLjSFMYiES5UHggzrtY1IIEA8=
292+
go.opentelemetry.io/otel/log/logtest v0.14.0 h1:BGTqNeluJDK2uIHAY8lRqxjVAYfqgcaTbVk1n3MWe5A=
293+
go.opentelemetry.io/otel/log/logtest v0.14.0/go.mod h1:IuguGt8XVP4XA4d2oEEDMVDBBCesMg8/tSGWDjuKfoA=
294294
go.opentelemetry.io/otel/metric v1.38.0 h1:Kl6lzIYGAh5M159u9NgiRkmoMKjvbsKtYRwgfrA6WpA=
295295
go.opentelemetry.io/otel/metric v1.38.0/go.mod h1:kB5n/QoRM8YwmUahxvI3bO34eVtQf2i4utNVLr9gEmI=
296296
go.opentelemetry.io/otel/sdk v1.38.0 h1:l48sr5YbNf2hpCUj/FoGhW9yDkl+Ma+LrVl8qaM5b+E=

server/src/initialize/otel.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ func newResource() (*resource.Resource, error) {
256256
resource.NewWithAttributes(
257257
semconv.SchemaURL,
258258
semconv.ServiceName("scrumlr"),
259-
semconv.ServiceVersion("4.0.0"),
259+
semconv.ServiceVersion("4.1.0"),
260260
),
261261
)
262262
}

yarn.lock

Lines changed: 14 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2699,6 +2699,11 @@
26992699
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8"
27002700
integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==
27012701

2702+
"@types/tmp@^0.2.3":
2703+
version "0.2.6"
2704+
resolved "https://registry.yarnpkg.com/@types/tmp/-/tmp-0.2.6.tgz#d785ee90c52d7cc020e249c948c36f7b32d1e217"
2705+
integrity sha512-chhaNf2oKHlRkDGt+tiKE2Z5aJ6qalm7Z9rlLdBwmOiAAf09YQvvoLXjWK4HWPF1xU/fqvMgfNfpVoBscA/tKA==
2706+
27022707
"@types/trusted-types@^2.0.2":
27032708
version "2.0.3"
27042709
resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.3.tgz#a136f83b0758698df454e328759dbd3d44555311"
@@ -4076,11 +4081,6 @@ char-regex@^2.0.0:
40764081
resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-2.0.1.tgz#6dafdb25f9d3349914079f010ba8d0e6ff9cd01e"
40774082
integrity sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==
40784083

4079-
check-more-types@^2.24.0:
4080-
version "2.24.0"
4081-
resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600"
4082-
integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==
4083-
40844084
check-types@^11.1.1:
40854085
version "11.2.2"
40864086
resolved "https://registry.yarnpkg.com/check-types/-/check-types-11.2.2.tgz#7afc0b6a860d686885062f2dba888ba5710335b4"
@@ -4678,22 +4678,22 @@ csstype@^3.0.2:
46784678
resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b"
46794679
integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==
46804680

4681-
cypress@^15.2.0:
4682-
version "15.2.0"
4683-
resolved "https://registry.yarnpkg.com/cypress/-/cypress-15.2.0.tgz#a1b48c8ef00f520fbaea60261ed244c8382dd3bc"
4684-
integrity sha512-J4ehSzOSb58SkXyldCe9y/oZ8ep8Bl6+q9kDUjnkqNqc2ZKzDq5KSbhIc2lHFAFR5Jtj10oNqr9JRAZbr8DA8A==
4681+
cypress@^15.3.0:
4682+
version "15.3.0"
4683+
resolved "https://registry.yarnpkg.com/cypress/-/cypress-15.3.0.tgz#cb9416e5261ee419c8a42e839d4f2d73eef8797c"
4684+
integrity sha512-g9rDhoK9y8wW4Vx3Ppr8dtfvThXxPL3mJsV5e98fG+6EerrhXKmeRT2sL86cvNRtEZouXJfsuVL1lqiMuGNGcg==
46854685
dependencies:
46864686
"@cypress/request" "^3.0.9"
46874687
"@cypress/xvfb" "^1.2.4"
46884688
"@types/sinonjs__fake-timers" "8.1.1"
46894689
"@types/sizzle" "^2.3.2"
4690+
"@types/tmp" "^0.2.3"
46904691
arch "^2.2.0"
46914692
blob-util "^2.0.2"
46924693
bluebird "^3.7.2"
46934694
buffer "^5.7.1"
46944695
cachedir "^2.3.0"
46954696
chalk "^4.1.0"
4696-
check-more-types "^2.24.0"
46974697
ci-info "^4.1.0"
46984698
cli-cursor "^3.1.0"
46994699
cli-table3 "0.6.1"
@@ -4710,7 +4710,6 @@ cypress@^15.2.0:
47104710
fs-extra "^9.1.0"
47114711
hasha "5.2.2"
47124712
is-installed-globally "~0.4.0"
4713-
lazy-ass "^1.6.0"
47144713
listr2 "^3.8.3"
47154714
lodash "^4.17.21"
47164715
log-symbols "^4.0.0"
@@ -8549,11 +8548,6 @@ launch-editor@^2.6.0:
85498548
picocolors "^1.0.0"
85508549
shell-quote "^1.7.3"
85518550

8552-
lazy-ass@^1.6.0:
8553-
version "1.6.0"
8554-
resolved "https://registry.yarnpkg.com/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513"
8555-
integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==
8556-
85578551
leven@^3.1.0:
85588552
version "3.1.0"
85598553
resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
@@ -10998,10 +10992,10 @@ sass-loader@^12.3.0:
1099810992
klona "^2.0.4"
1099910993
neo-async "^2.6.2"
1100010994

11001-
sass@^1.93.0:
11002-
version "1.93.0"
11003-
resolved "https://registry.yarnpkg.com/sass/-/sass-1.93.0.tgz#8252f61405be295f4755d1ed5df48bf118587aa5"
11004-
integrity sha512-CQi5/AzCwiubU3dSqRDJ93RfOfg/hhpW1l6wCIvolmehfwgCI35R/0QDs1+R+Ygrl8jFawwwIojE2w47/mf94A==
10995+
sass@^1.93.2:
10996+
version "1.93.2"
10997+
resolved "https://registry.yarnpkg.com/sass/-/sass-1.93.2.tgz#e97d225d60f59a3b3dbb6d2ae3c1b955fd1f2cd1"
10998+
integrity sha512-t+YPtOQHpGW1QWsh1CHQ5cPIr9lbbGZLZnbihP/D/qZj/yuV68m8qarcV17nvkOX81BCrvzAlq2klCQFZghyTg==
1100510999
dependencies:
1100611000
chokidar "^4.0.0"
1100711001
immutable "^5.0.2"

0 commit comments

Comments
 (0)