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

Prepare 2.15.0.dev0 #16686

Merged
merged 1 commit into from
Aug 30, 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
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ Created by running `./pants run build-support/bin/contributors.py`.
+ Ian Tabolt
+ Igor Morozov
+ Ikai Lan
+ In-Ho Yi
+ Itay Donanhirsh
+ Ity Kaul
+ Jackson Davis
Expand Down
1 change: 1 addition & 0 deletions pants.toml
Original file line number Diff line number Diff line change
Expand Up @@ -276,3 +276,4 @@ master = "src/python/pants/notes/master.rst"
"2.12.x" = "src/python/pants/notes/2.12.x.md"
"2.13.x" = "src/python/pants/notes/2.13.x.md"
"2.14.x" = "src/python/pants/notes/2.14.x.md"
"2.15.x" = "src/python/pants/notes/2.15.x.md"
2 changes: 1 addition & 1 deletion src/python/pants/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.14.0a0
2.15.0.dev0
2 changes: 1 addition & 1 deletion src/python/pants/engine/internals/specs_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ def _handle_ambiguous_result(
):
if field_set_to_default_to is PexBinaryFieldSet:
warn_or_error(
"2.15.0.dev0",
"2.15.0.dev1",
"referring to a `pex_binary` by using the filename specified in `entry_point`",
softwrap(
"""
Expand Down
53 changes: 53 additions & 0 deletions src/python/pants/notes/2.15.x.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# 2.15.x Release Series

## 2.15.0.dev0 (Aug 29, 2022)

### New Features

* Add support for string interpolation in Helm deployments ([#16611](https://github.com/pantsbuild/pants/pull/16611))

* Add --squash and --pull options support for docker build ([#16607](https://github.com/pantsbuild/pants/pull/16607))

* Support Pex's `--path-mapping` with lockfiles for better local requirement support ([#16584](https://github.com/pantsbuild/pants/pull/16584))

* [experimental] adds `pants_oxidized_experimental` target, creating a standalone binary distribution for Pants ([#16484](https://github.com/pantsbuild/pants/pull/16484))

### User API Changes

* Remove deprecated `[python].only_binary`, `[python].no_binary`, and `[python].tailor_ignore_solitary_init_files` ([#16638](https://github.com/pantsbuild/pants/pull/16638))

* Remove deprecated `[python].lockfile_generator` and deprecate `poetry` subsystem (used previously for lockfile generation) ([#16633](https://github.com/pantsbuild/pants/pull/16633))

* Remove deprecated `use_deprecated_directory_cli_args_semantics` option ([#16630](https://github.com/pantsbuild/pants/pull/16630))

### Plugin API Changes

* Add support for passing multiple input params to a `@rule` `Get` ([#16668](https://github.com/pantsbuild/pants/pull/16668))

* Remove deprecated `matches_filespec` and `get_git` functions ([#16629](https://github.com/pantsbuild/pants/pull/16629))

* Remove unnecessary type parameter from `Get` ([#16634](https://github.com/pantsbuild/pants/pull/16634))

### Bug fixes

* Make `FilespecMatcher` case-sensitive ([#16673](https://github.com/pantsbuild/pants/pull/16673))

* Ensure the sandbox distdir exists when creating dists via PEP517. ([#16647](https://github.com/pantsbuild/pants/pull/16647))

### Performance

* Implement a batched local lookup for missing fingerprints. ([#16627](https://github.com/pantsbuild/pants/pull/16627))

* Optimize `CreateDigest` implementation. ([#16617](https://github.com/pantsbuild/pants/pull/16617))

### Documentation

* Create page of Pants team members and proudest contribs ([#16676](https://github.com/pantsbuild/pants/pull/16676))

* Fix example BSP groups file. ([#16649](https://github.com/pantsbuild/pants/pull/16649))

* Clarify wording for `--skip` options ([#16622](https://github.com/pantsbuild/pants/pull/16622))

* Fix `./pants help` docs on command line specs ([#16616](https://github.com/pantsbuild/pants/pull/16616))

* Mention team meetings as a Contributor permission ([#16543](https://github.com/pantsbuild/pants/pull/16543))
6 changes: 3 additions & 3 deletions src/python/pants/option/global_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -1729,7 +1729,7 @@ class GlobalOptions(BootstrapOptions, Subsystem):
that exist solely for running Python code (and aren't meant to be packaged).
"""
),
removal_version="2.15.0.dev0",
removal_version="2.15.0.dev1",
removal_hint=softwrap(
"""
If `use_deprecated_pex_binary_run_semantics` is already set explicitly to `false`,
Expand Down Expand Up @@ -1782,7 +1782,7 @@ def validate_instance(cls, opts):
# removed as well.
deprecated_conditional(
lambda: opts.remote_execution and opts.remote_cache_eager_fetch,
removal_version="2.15.0.dev0",
removal_version="2.15.0.dev1",
entity="Setting `[GLOBAL].remote_execution` at the same time as `[GLOBAL].remote_cache_eager-fetch`.",
hint=softwrap(
"""
Expand All @@ -1801,7 +1801,7 @@ def validate_instance(cls, opts):
opts.remote_execution
and (not opts.remote_cache_read or not opts.remote_cache_write)
),
removal_version="2.15.0.dev0",
removal_version="2.15.0.dev1",
entity="Using `[GLOBAL].remote_execution` without setting `[GLOBAL].remote_cache_read` and `[GLOBAL].remote_cache_write`.",
hint=softwrap(
"""
Expand Down