-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGELOG.yml
126 lines (110 loc) · 3.64 KB
/
CHANGELOG.yml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# Each release must document an entry such as
# - release: 1.0.0
# date: 2012-02-22
# summary: "Release description"
# fixed:
# - "Description about what was fixed."
# added:
# - "Description about what was added."
# removed:
# - "Description about what was removed."
- version: 2.6.0
date: 2016-10-27
summary: Optimized the number of database connections
added:
- "Drop and create meta tables in a single query."
- "Getting the list of passed scripts in a single query."
- "Running the whole migration in a single generated script."
- "Help screen in english."
- "Added 'done' directory management (always run after all others scripts)."
fixed:
- "Fixed encoding while printing migration script on console."
- version: 2.5.4
date: 2016-08-01
summary: Bug fix release
fixed:
- "Fixed migration script generation from 'init'."
- version: 2.5.3
date: 2016-08-01
summary: Bug fix release
fixed:
- "Removed VERSION file support."
- "Fixed migration script generation (from version was included)."
- version: 2.5.2
date: 2016-07-07
summary: Bug Correction
fixed:
- "Fixed migration script generation (init scripts were always included)."
- version: 2.5.0
date: 2016-07-06
summary: Added next directory version and encoding for Oracle
added:
- "A version directory 'next' is accepted and its scripts passed when '-a'
option is set."
- "Added ENCODING configuration field in Oracle configuration, to enforce
given encoding while loading migration scripts."
- version: 2.4.0
date: 2016-06-16
summary: Script is not responsible for database cleaning anymore
added:
- "Script is not responsible for Oracle database cleaning anymore. This must
be done by a script, but take care not to remove INSTALL_, SCRIPTS_ and
INSTALL_SEQUENCE objects."
- version: 2.3.0
date: 2016-06-15
summary: Improved Oracle error parsing
added:
- "Improved Oracle error parsing based on regular expressions."
- version: 2.2.1
date: 2016-06-02
summary: Fixed deprecation warning
fixed:
- "Fixed deprecation warning regarding BaseException.message."
- version: 2.2.0
date: 2016-05-26
summary: Added warning detection on Oracle scripts
added:
- "A warning in an Oracle script will interrupt database migration."
- version: 2.1.0
date: 2016-05-19
summary: Gestion des erreurs dans les scripts Oracle générés
added:
- "Added WHENEVER statements in generated Oracle scripts so that they stop on
error."
- "Added COMMIT statement at the end of Oracle and MySQL generated scripts."
- version: 2.0.2
date: 2016-05-19
summary: Bug correction
fixed:
- "Removed erroneous instruction USE at the beginning of generated Oracle
migration scripts."
- version: 2.0.1
date: 2016-05-17
summary: Bug correction
fixed:
- "Fixed script generation feature."
- "Updated MysqlCommando and SqlplusCommando with latest releases."
- version: 2.0.0
date: 2016-05-03
summary: Added Oracle support
added:
- "Added Oracle support using sqlplus_commando driver."
fixed:
- "Path to SQL directory was broken."
- "Version is stored as a single field 'version' in _install meta table (no
more 'major', 'minor' and 'debug' fields)."
- version: 1.0.2
date: 2016-05-02
summary: Removed dump option
removed:
- "Removed dump command line option '-d dump.sql'."
- version: 1.0.1
date: 2016-05-02
summary: First Pypi release
fixed:
- "Fixed README file syntax."
- "Changelog moved in project root directory."
- "Added Makefile in project and made structure standard."
- version: 1.0.0
date: 2014-05-28
summary: "First public release"