Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions storage-label-videos/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 0.1.7

fix: allow periods in storage path validation for INPUT_VIDEOS_PATH and OUTPUT_PATH parameters

## Version 0.1.6

chore: bump runtime to Node.js 22
Expand Down
6 changes: 3 additions & 3 deletions storage-label-videos/extension.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: storage-label-videos
version: 0.1.6
version: 0.1.7
specVersion: v1beta

displayName: Label Videos with Cloud Video AI
Expand Down Expand Up @@ -108,7 +108,7 @@ params:
videos from.
type: string
example: /video_annotation_input/
validationRegex: ^\/([0-9a-zA-Z_\/\-]*\/){0,1}$
validationRegex: ^\/([0-9a-zA-Z_.\-\/]*\/){0,1}$
validationErrorMessage: Invalid storage folder name
default: /video_annotation_input/
required: true
Expand All @@ -120,7 +120,7 @@ params:
stored.
type: string
example: /video_annotation_output/
validationRegex: ^\/([0-9a-zA-Z_\/\-]*\/){0,1}$
validationRegex: ^\/([0-9a-zA-Z_.\-\/]*\/){0,1}$
validationErrorMessage: Invalid storage folder name
default: /video_annotation_output/
required: true
Expand Down
4 changes: 4 additions & 0 deletions storage-reverse-image-search/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 0.1.12

fix: allow periods in storage path validation for IMG_PATH parameter

## Version 0.1.11

chore: bump runtime to Node.js 22
Expand Down
4 changes: 2 additions & 2 deletions storage-reverse-image-search/extension.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: storage-reverse-image-search
version: 0.1.11
version: 0.1.12
specVersion: v1beta

icon: icon.png
Expand Down Expand Up @@ -212,7 +212,7 @@ params:
empty, the root of the bucket will be used.
type: string
example: root/images
validationRegex: ^[\w-]+(\/[\w-]+)*$
validationRegex: ^[\w.-]+(\/[\w.-]+)*$
validationErrorMessage: Invalid path
immutable: true

Expand Down
4 changes: 4 additions & 0 deletions storage-transcode-videos/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 0.0.6

fix: allow periods in storage path validation for INPUT_VIDEOS_PATH and OUTPUT_VIDEOS_PATH parameters

## Version 0.0.5

chore: bump runtime to Node.js 22
Expand Down
8 changes: 4 additions & 4 deletions storage-transcode-videos/extension.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: storage-transcode-videos
version: 0.0.5
version: 0.0.6
specVersion: v1beta

displayName: Transcode Videos on Google Cloud Storage
Expand Down Expand Up @@ -87,7 +87,7 @@ params:
videos from.
type: string
example: /video_transcoding_input/
validationRegex: ^\/([0-9a-zA-Z_\/\-]*\/){0,1}$
validationRegex: ^\/([0-9a-zA-Z_.\-\/]*\/){0,1}$
validationErrorMessage: Invalid storage folder name
default: /video_transcoding_input/
required: true
Expand All @@ -99,7 +99,7 @@ params:
be output to.
type: string
example: /video_transcoding_output/
validationRegex: ^\/([0-9a-zA-Z_\/\-]*\/){0,1}$
validationRegex: ^\/([0-9a-zA-Z_.\-\/]*\/){0,1}$
validationErrorMessage: Invalid storage folder name
default: /video_transcoding_output/
required: true
Expand All @@ -109,7 +109,7 @@ params:
description: >
A template id for populating a job configuration.
example: preset/web-hd
validationRegex: ^[a-zA-Z0-9\/\-_]+$
validationRegex: ^[a-zA-Z0-9\/\-_.]+$
validationErrorMessage:
Must be an alphanumeric string. Dashes, underscores and forward slashes
are also allowed
Expand Down
Loading