forked from OrchestSh/entrypoint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADD] Improved support for Odoo > 15.0
We added support for the specific parameters added in Odoo 16.0, as the longpoll port have been deprecated. The container type was changed from longpoll to chat as this is the given name by Odoo even in the previous versions. Renamed the variable for the container type to `ORCHESTSH_CONTAINER_TYPE` to match the rest of the variables used by OrchestSh to customize the container behavior. Updated Go version so we can use the latest version of semver to check which version we are using.
- Loading branch information
Showing
3 changed files
with
46 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,26 @@ | ||
module entrypoint | ||
|
||
go 1.16 | ||
go 1.22.0 | ||
|
||
toolchain go1.23.1 | ||
|
||
require ( | ||
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/ruiztulio/logrus-easy-formatter v0.0.0-20230704145349-b6670e943d99 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/spf13/cobra v1.7.0 | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/sys v0.11.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
golang.org/x/mod v0.21.0 | ||
gopkg.in/ini.v1 v1.67.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/sys v0.12.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters