Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Merge requests
!2509
Create RecommendedWorkerVersionRetrieve endpoint
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Create RecommendedWorkerVersionRetrieve endpoint
wv-rec
into
release-1.7.2
Overview
12
Commits
5
Pipelines
0
Changes
5
All threads resolved!
Hide all comments
Merged
ml bonhomme
requested to merge
wv-rec
into
release-1.7.2
2 months ago
Overview
12
Commits
5
Pipelines
0
Changes
5
All threads resolved!
Hide all comments
Expand
closes
#1888 (closed)
0
0
Merge request reports
Compare
release-1.7.2
version 11
96184c8c
2 months ago
version 10
5d46d386
2 months ago
version 9
bfbd38ec
2 months ago
version 8
7d5eec1e
2 months ago
version 7
b17010a4
2 months ago
version 6
02a4835d
2 months ago
version 5
1b2d4db0
2 months ago
version 4
1b2d4db0
2 months ago
version 3
6623a37e
2 months ago
version 2
232b34d0
2 months ago
version 1
d1cd3e09
2 months ago
release-1.7.2 (base)
and
latest version
latest version
d8b4ed5d
5 commits,
2 months ago
version 11
96184c8c
5 commits,
2 months ago
version 10
5d46d386
4 commits,
2 months ago
version 9
bfbd38ec
4 commits,
2 months ago
version 8
7d5eec1e
3 commits,
2 months ago
version 7
b17010a4
3 commits,
2 months ago
version 6
02a4835d
3 commits,
2 months ago
version 5
1b2d4db0
2 commits,
2 months ago
version 4
1b2d4db0
3 commits,
2 months ago
version 3
6623a37e
2 commits,
2 months ago
version 2
232b34d0
1 commit,
2 months ago
version 1
d1cd3e09
1 commit,
2 months ago
5 files
+
284
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
arkindex/process/migrations/0047_alter_workerversion_tag.py
0 → 100644
+
28
−
0
Options
# Generated by Django 5.0.8 on 2025-01-21 10:59
from
django.contrib.postgres.operations
import
CreateCollation
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
"
process
"
,
"
0046_workerrun_ttl
"
),
]
operations
=
[
# This collation allows us to sort the "tag" field as semantic version tags. The sorting is done using US English
# rules, treating numeric values as single numbers and not split by digit (so that 10.2.1 is not the same as 1.0.21).
# The ordering is non-deterministic because two strings can have the same value (1.2 == 01.2).
CreateCollation
(
"
english_numeric
"
,
provider
=
"
icu
"
,
locale
=
"
en-US-u-kn-true-u-ks-level2
"
,
deterministic
=
False
),
migrations
.
AlterField
(
model_name
=
"
workerversion
"
,
name
=
"
tag
"
,
field
=
models
.
CharField
(
blank
=
True
,
db_collation
=
"
english_numeric
"
,
default
=
None
,
max_length
=
512
,
null
=
True
),
),
]
Loading