Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump OTP version to 25.0.1 #3683

Merged
merged 4 commits into from
Jun 13, 2022
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
18 changes: 13 additions & 5 deletions .circleci/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1

references:
- &OTP24 chrzaszcz/cimg-erlang:24.3.4
- &OTP25 chrzaszcz/cimg-erlang:25.0
- &OTP25 chrzaszcz/cimg-erlang:25.0.1
- &ENTRYPOINT ["/bin/sh", "-c", "eval ${INSTALL_DEPS_CMD:-echo} && echo __INJECT_FILES__ | eval ${BASE32DEC:-base32 --decode} | bash"]
# Caches created via the save_cache step are stored for up to 15 days
- &CERT_KEY certs-cache-{{ checksum "certs_cache_key" }}-v3
Expand Down Expand Up @@ -673,14 +673,14 @@ workflows:
executor: otp_25
platform: centos_7
context: mongooseim-org
otp_package: "25.0-1"
otp_package: "25.0.1-1"
filters: *all_tags
- package:
name: debian_stretch
executor: otp_25
platform: debian_stretch
context: mongooseim-org
otp_package: "25.0-1"
otp_package: "25.0.1-1"
filters: *all_tags
# ======== BASE DOCKER BUILDS ========
- build_in_docker:
Expand All @@ -695,7 +695,14 @@ workflows:
build_prod: false
# ============= DIALYZER =============
- dialyzer:
name: dialyzer
name: dialyzer_24
executor: otp_24
context: mongooseim-org
requires:
- otp_24_docker
filters: *all_tags
- dialyzer:
name: dialyzer_25
executor: otp_25
context: mongooseim-org
requires:
Expand Down Expand Up @@ -860,6 +867,7 @@ workflows:
- pgsql_mnesia_24
- riak_mnesia_24
- dynamic_domains_pgsql_mnesia_24
- dialyzer_24

- small_tests_25
- internal_mnesia_25
Expand All @@ -871,8 +879,8 @@ workflows:
- dynamic_domains_pgsql_mnesia_25
- dynamic_domains_mysql_redis_25
- dynamic_domains_mssql_mnesia_25
- dialyzer_25

- dialyzer
- xref
- edoc
filters: *all_tags
2 changes: 1 addition & 1 deletion src/async_pools/mongoose_aggregator_worker.erl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
mongoose_async_pools:pool_extra()) ->
{ok, mongoose_async_pools:task()} | {error, term()}.
-callback request(mongoose_async_pools:task(), mongoose_async_pools:pool_extra()) ->
reference().
gen_server:request_id().
-callback verify(term(), mongoose_async_pools:task(), mongoose_async_pools:pool_extra()) ->
term().
-optional_callbacks([verify/3]).
Expand Down