File: breaking-changes.md

package info (click to toggle)
azure-data-lake-store-python 0.0.53-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 31,968 kB
  • sloc: python: 4,512; makefile: 192
file content (26 lines) | stat: -rw-r--r-- 745 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Breaking Change Definition

Breaking changes in Azure Data Lake Store Filesystem SDK for Python are defined as follows:

## Classes

- The class is removed
- The class is renamed
- The class no longer extends another class

## Properties of a class

- A property is removed
- A property is renamed
- A property has its type changed

## Methods of a class
- Methods should not be removed
- Methods should not be renamed
- Methods should not have their return type changed

## Parameters of methods in a class
- Parameters should not be removed
- Parameters should not have their type changed
- Parameters should preserve their ordering, including when a parameter is added
- Parameters should keep their default value, if they are assigned one