Skip to content
Merged
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v1.0.64] - 2026-04-06

### Fixed
- Remove zerops.yaml size restriction

## [v1.0.60] - 2026-01-27

### Fixed
Expand Down
1 change: 0 additions & 1 deletion src/i18n/en.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ and your %s.`,
PushDeployUploadPackageFailed: "Package upload failed",
PushDeployDeployingStart: "Deploying service",
PushDeployZeropsYamlEmpty: "Config file zerops.yml is empty",
PushDeployZeropsYamlTooLarge: "Max. size of zerops.yml is 10 KB",
PushDeployZeropsYamlFound: "File zerops.yml found. Path: %s.",
PushDeployZeropsYamlNotFound: "File zerops.yml not found. Checked paths: [%s]. \n" +
" Please, create a zerops.yml file in the root directory of your project. \n" +
Expand Down
1 change: 0 additions & 1 deletion src/i18n/i18n.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ const (
PushDeployUploadPackageFailed = "PushDeployUploadPackageFailed"
PushDeployDeployingStart = "PushDeployDeployingStart"
PushDeployZeropsYamlEmpty = "PushDeployZeropsYamlEmpty"
PushDeployZeropsYamlTooLarge = "PushDeployZeropsYamlTooLarge"
PushDeployZeropsYamlFound = "PushDeployZeropsYamlFound"
PushDeployZeropsYamlNotFound = "PushDeployZeropsYamlNotFound"

Expand Down
3 changes: 0 additions & 3 deletions src/yamlReader/zeropsYaml.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@ func ReadZeropsYamlContent(uxBlocks uxBlock.UxBlocks, selectedWorkingDir string,
if zeropsYamlStat.Size() == 0 {
return "", errors.New(i18n.T(i18n.PushDeployZeropsYamlEmpty))
}
if zeropsYamlStat.Size() > 10*1024 {
return "", errors.New(i18n.T(i18n.PushDeployZeropsYamlTooLarge))
}
return path, nil
}
}
Expand Down
Loading