-
-
Notifications
You must be signed in to change notification settings - Fork 448
Create Migration notes for for 6.x to 7.x #1610
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
Closed
Closed
Changes from 7 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
42c82c7
Created basic migration file
paxnovem 9bb3321
Added basic migraton docs changes
paxnovem 2f17d2c
Remove change that likely will not require migration changes
paxnovem 2df7600
Updated ** replacement suggestion
paxnovem bdad5bc
Remove extra indent at end of file
paxnovem a38d066
Fix linting issue that needed a trailing indent
paxnovem 082815a
Fix a typo in docs
paxnovem 9903d0c
Created basic migration file
paxnovem b7dffef
Added basic migraton docs changes
paxnovem 9587a98
Remove change that likely will not require migration changes
paxnovem 9905e59
Updated ** replacement suggestion
paxnovem cf4f12f
Remove extra indent at end of file
paxnovem 55c6a80
Fix linting issue that needed a trailing indent
paxnovem 9e0ee9c
Fix a typo in docs
paxnovem f5c362d
Correct grammar issue
paxnovem aa3b0fd
Removed .gitignore corrected a single rule
paxnovem a13a39e
Merge remote-tracking branch 'upstream/master' into GH-1558-docs-update
paxnovem 7b93456
Merge branch 'GH-1558-docs-update' of https://github.com/paxnovem/cov…
paxnovem 448850c
Correct rule and spelling
paxnovem 5442e23
Remove personal gitignore config
paxnovem 2e7e9e3
Removed duplicated license text
paxnovem bdc1622
Added extra space
paxnovem 5b43533
Take suggestions from ned
paxnovem File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
|
@@ -52,3 +52,4 @@ tmp | |
.DS_Store | ||
|
||
!.github | ||
.devcontainer/devcontainer.json | ||
This file contains hidden or 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 |
---|---|---|
|
@@ -234,4 +234,5 @@ More information | |
trouble | ||
faq | ||
Change history <changes> | ||
Migrating version notes <migrations> | ||
sleepy |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
.. Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 | ||
.. For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt | ||
|
||
.. Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 | ||
.. For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is doubled. |
||
.. _migrations: | ||
|
||
============================== | ||
Migrating between versions | ||
============================== | ||
|
||
.. _migrating_6x_7x: | ||
|
||
Migrating 6.5.x — 7.0.x | ||
-------------------------- | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add a blank line, and please make the rules match the length of the titles. |
||
- The way that wildcards when specifing file paths work in certain cases as changed in 7.0.x: | ||
paxnovem marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
- Previously, ``*`` would incorrectly match directory separators, making | ||
precise matching difficult. This requires patterns such as ``*tests/*`` | ||
to be changed to ``*/tests/*``. | ||
paxnovem marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
- ``**`` now matches any number of nested directories. If you wish to retain the behavior of | ||
``**/tests/*`` in previous versions then ``*/**/tests/*`` can be used instead. | ||
|
||
- When remapping file paths with ``[paths]``, a path will be remapped only if | ||
the resulting path exists. Ensure that remapped ``[paths]`` exist when upgrading | ||
as this is now being enforced. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need this file? It sounds like something that should be in a global git ignore. I'm not familiar with it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added that to prevent my local environment from getting committed. I removed this and locally used
.git/info/exclude
instead.