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 1.17.0.dev0 release #7711

Merged
merged 5 commits into from
May 14, 2019
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion src/python/pants/VERSION
Original file line number Diff line number Diff line change
@@ -1 1 @@
1.16.0rc0
1.17.0.dev0
71 changes: 71 additions & 0 deletions src/python/pants/notes/master.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 4,77 @@ Master Pre-Releases
This document describes development releases which occur weekly from master, and which have
not undergone the vetting associated with ``stable`` releases.

1.17.0.dev0 (5/13/2019)
-----------------------

New Features
~~~~~~~~~~~~

* V2 `./pants test.pytest` selects interpreter based off of compatibility constraints (#7679)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@stuhood is this a bug fix or new feature? It is new behavior, but really it's playing catch up to V1 test.pytest so in some ways is fixing things?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Either bugfix or refactor probably. But there is minimal value in being super precise in the categorization of release notes currently.

`PR #7679 <https://github.com/pantsbuild/pants/pull/7679>`_

Bugfixes
~~~~~~~~

* Mark build-support Python files as Pants targets to lint build-support (#7633)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a refactor.

`PR #7633 <https://github.com/pantsbuild/pants/pull/7633>`_

* Fix dependency cycle with cache folder (#7693)
`PR #7693 <https://github.com/pantsbuild/pants/pull/7693>`_

* Add pantsd_invalidation_globs option into pants.ini (#7705)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While it's a bug fix, it only impacts our own pants.ini so I would suggest moving it to tooling.

`PR #7705 <https://github.com/pantsbuild/pants/pull/7705>`_

Refactoring, Improvements, and Tooling
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* Refactor `check_banned_imports.py` to allow Python 3 files to import `subprocess` (#7706)
`PR #7706 <https://github.com/pantsbuild/pants/pull/7706>`_

* Rerun cbindgen on changes to src (#7708)
`PR #7708 <https://github.com/pantsbuild/pants/pull/7708>`_

* add stack traces to unhashable TypeErrors in the engine (#7532)
`PR #7532 <https://github.com/pantsbuild/pants/pull/7532>`_

* Convert `check_banned_imports.sh` to Python to workaround Bash array issues and for less duplication (#7702)
`PR #7702 <https://github.com/pantsbuild/pants/pull/7702>`_
>`_ttps://github.com/pantsbuild/pants/pull/7698#discussion_r282947998.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Broken probably.

`PR #6747 <https://github.com/pantsbuild/pants/pull/6747>`_

* Output stderr in V2 test rule (#7694)
Eric-Arellano marked this conversation as resolved.
Show resolved Hide resolved
`Issue #7388 <https://github.com/pantsbuild/pants/issues/7388>`_
`PR #7694 <https://github.com/pantsbuild/pants/pull/7694>`_
`PR #7676 <https://github.com/pantsbuild/pants/pull/7676>`_

* Remove now-unused Path type (#7701)
`PR #7701 <https://github.com/pantsbuild/pants/pull/7701>`_

* Improve V2 `./pants test` output to make it easier to parse results of multiple targets (#7676)
`Issue #7388 <https://github.com/pantsbuild/pants/issues/7388>`_
`PR #7676 <https://github.com/pantsbuild/pants/pull/7676>`_

* Allow V2 console rules to use colors (#7689)
`PR #7689 <https://github.com/pantsbuild/pants/pull/7689>`_
>`_ttps://github.com/pantsbuild/pants/pull/7676.

* Refactor `PythonSetup.interpreter_or_constraints()` to take a `compatibility` value rather than a `PythonTarget`(#7691)
`PR #7691 <https://github.com/pantsbuild/pants/pull/7691>`_
`PR #files#diff-04a0048c70898e46a42c73225c47b906R58 <https://github.com/pantsbuild/pants/pull/7679/files#diff-04a0048c70898e46a42c73225c47b906R58>`_
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line is probably broken.

`PR #7680 <https://github.com/pantsbuild/pants/pull/7680>`_

* Remove ResettablePool (#7688)
`PR #7688 <https://github.com/pantsbuild/pants/pull/7688>`_

* PosixFS no longer has its own threadpool (#7685)
`PR #7685 <https://github.com/pantsbuild/pants/pull/7685>`_

* Use global instance of PythonSetup for resolve requirements task base (#7672)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be a bugfix.

`PR #7672 <https://github.com/pantsbuild/pants/pull/7672>`_

* Refactor v2 TestResult model to use enum (#7677)
`PR #7677 <https://github.com/pantsbuild/pants/pull/7677>`_

1.16.0rc0 (5/7/2019)
--------------------

Expand Down