Skip to content

Commit 09058f1

Browse files
committed
Prepare 1.7.0 release
1 parent 3959eb8 commit 09058f1

File tree

8 files changed

+100
-12
lines changed

8 files changed

+100
-12
lines changed

CHANGELOG

Lines changed: 95 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,100 @@
1-
# Changelog Of The Propel 1.6 Branch #
1+
# Changelog Of The Propel 1.x Branch #
22

3-
## 2013-??-??: Version 1.7.0 ##
3+
## 2013-10-21: Version 1.7.0 ##
44

5-
n/a
5+
067dad2 reworked approach for better handling of executed queries in DebugPDO
6+
2bb6d2d fix DebugPDOStatement for usage with execute
7+
041af74 Added unit test for modified table case
8+
c15c239 Added type-hinting on doAdd crossFK generated functions
9+
ceee8a9 fixed a getter function without '$con'
10+
f30aa35 Fixed diff task combined with skipSql
11+
57cde74 [README] Add packagist badge to show project popularity
12+
9087851 Fix namespace support
13+
83841e5 Get TableMap class name from Peer class
14+
3b0b2cc Added test for version column case insensitivity
15+
46b5a9c Added case-insensitive check for the version column
16+
b9a8ad7 Fix small error in the QueryBuilder Doc for TemporalType
17+
3ac9f0c Update SluggableBehavior.php
18+
a2f4f92 unit test
19+
2355979 slugable behavior - scope column overrides $getter
20+
38742c4 Support for regexp on different platforms
21+
148aeb2 [VersionableBehavior] Fix exception message got toVersion
22+
a5226c9 fix bug when adding previously removed relations
23+
115f6de add missing import for nested set
24+
252da4c test added
25+
52d8a76 fix for CASE expression in query with offset in ms sql
26+
2b2c4da code style fix
27+
f20f99b PropelObjectCollection::getIdenticalObject optimalization
28+
0cfa3db Fix accidental type conversion in sluggable behavior.
29+
e7ecc97 added Unit Test
30+
c1fc85d Fixed issue with migrations and decimal or numeric table size
31+
a6c3218 fix scheduledForDeletion for CrossFK w/ refPhpName
32+
70c18d2 Undefined index fix
33+
2193ba4 Fixed MigrationManager to use queries and charset settings
34+
d37b4cd Fixed object builder toArray withColumn
35+
7e173bc Fixed test assertion
36+
20f66c0 Minor spelling corrections
37+
2e50ea8 Failing testcase in toArray withColumn
38+
4a5eba2 Fixed Sluggable behavior combining with symfony_i18n
39+
c4b61cc Bugfix for PHP < 5.3.0
40+
f6031de Foreign Keys default behaviors managment (resolves issue #390)
41+
130429f Fix some issues. Closes #684
42+
193f736 Fix a couple of mistakes
43+
171211c Expected and actual values where in wrong order
44+
52b072b Improved SQLParser performance
45+
9687fe5 Tests for multiple character delimiters support
46+
cfa8222 Added multiple character delimiters support
47+
0272ba3 clone object in hashCode() function so the original object is not changed when calling hashCode provided test for the hasCode() function
48+
3ea2f2d Issue #677: Set back reference when calling add Provided tests for testing if all references are set for crossreferences before saving
49+
4495b9f fixed transaction leak when exception different from PropelException is thrown
50+
3bf0689 fix deleting related objects
51+
8fe41e5 Added multiple scope support in Sortable behavior.
52+
8f75133 Fixed #651. Stupid typo.
53+
5b7878a clean
54+
f72c534 add an excluded_parent_behavior to concret_inheritance behavior
55+
2606549 only generate findOneBySlug if required
56+
cb913c3 Add test for ModelCriteria to prove it support IN operator in JOIN conditions
57+
80179d6 Additional assertion to ensure binding params doesn't change actual result
58+
a6a20bd Use Criterion always when possible Using Criterion allows to bind values in statements. You can't use Criterion only for strings because in this method you can't distinguish if it is a table name or value provided by user.
59+
0ad1698 Add to Criteria support for IN and NOT IN operators in JOIN conditions e.g. JOIN x ON (x.id = y.x_id AND y.foo IN (42, 51))
60+
61f9368 removed duplicated assertion, refs #653
61+
54362ae fixed urls to trac tickets propel.phpdb.org/trac/ticket -> trac.propelorm.org/ticket
62+
75a15f1 fix generated CS of SoftDelete in forceDelete()
63+
27ea1df make ModelCriteria::create() changes more backward compatible
64+
cd22e0b reduced ModelCriteria::clear() tests
65+
937ff8b fix timing issues in TimestampableBehaviorTest
66+
11c1841 add lcfirst function stub
67+
aef6049 full list of changes below:
68+
fbc1b3a fix some introspections, coding style
69+
0379f34 add one-to-one handling to VersionableBehavior
70+
5b3ad51 Update .travis.yml
71+
38ec08d Revert bad CS fix (alternative CS behavior)
72+
93c6a0f Fixes JOIN duplication issue when default join type equals given join type (issue #373)
73+
dcace44 Bugfix for join equality when default join type is used
74+
86760fe Make `testQuotingIdentifiers()` abstract and allow each `DB<Adapter>Test` to implement it
75+
16926a5 Remove unnecessary .''
76+
fa98c50 Remove not valid anymore comment
77+
07da31f Support for quoting aliases
78+
3a91f81 add tests for issue #621
79+
5bab81d Update generator/lib/reverse/mysql/MysqlSchemaParser.php
80+
577df2d Don't null size field when scale specified
81+
644931d Fixed typos
82+
c116afc add test for issue #622
83+
423f354 Merge branch 'master' of git://github.com/ciromattia/Propel into ciromattia-master
84+
c1047df Merge branch '1.6'
85+
5f503ea Correctly add map namespace when $phpName has no backslash (e.g. namespaces are not used) - fixes #614
86+
82aa016 allow withColumn() and select() again. fixes #608.
87+
9798365 added failing testcase for issue #608
88+
622b9fe expect PropelException when cloning PropelOnDemandCollection's
89+
0890783 separate tests for __clone() using objects and scalars
90+
efb83ee fixed __clone() for PropelCollections containing scalar values
91+
e1dbfa9 added tests for PropelCollection new __clone() magic method
92+
f268cb0 removed unused properties from OnDemandCollection which were never set.
93+
366e1df fixed test
94+
48ebeb9 order by alias is not supported in mssql. fixes #596 by @chuck-jove
95+
c85111f added test provided for issue 596
96+
288e91d Fixed #603
97+
866378d Removed the `extend <BasePeer>` in PHP5PeerBuilder since it's a bug.
698

799
## 2013-03-31: Version 1.6.9 ##
8100

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2005-2012 Hans Lellelid, David Zuelke, Francois Zaninotto, William
1+
Copyright (c) 2005-2013 Hans Lellelid, David Zuelke, Francois Zaninotto, William
22
Durand
33

44
Permission is hereby granted, free of charge, to any person obtaining a copy

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
Propel is an open-source Object-Relational Mapping (ORM) for PHP5.
44

55
[![Build Status](https://secure.travis-ci.org/propelorm/Propel.png?branch=master)](http://travis-ci.org/propelorm/Propel)
6-
76
[![Total Downloads](https://poser.pugx.org/propel/propel1/downloads.png)](https://packagist.org/packages/propel/propel1)
87
[![Latest Stable Version](https://poser.pugx.org/propel/propel1/v/stable.png)](https://packagist.org/packages/propel/propel1)
98

generator/default.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717
# -------------------------------------------------------------------
1818

19-
propel.version = 1.7.0-dev
19+
propel.version = 1.7.0
2020

2121
propel.home = .
2222

generator/pear/build-pear-package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<!-- some default properties -->
2222
<property name="notes"><![CDATA[
23-
This is a release of the 1.6 branch of the Propel Generator.
23+
This is a release of the 1.7 branch of the Propel Generator.
2424
]]></property>
2525
<property name="state" value="stable"/>
2626

generator/pear/build.properties

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
# In this file you can define any properties taht you want to affect
22
# all projects built using the propel-gen script on this system
3-
#
4-
# See http://www.propelorm.org/wiki/Documentation/1.6/BuildConfiguration
5-
# for a list of available properties.

runtime/lib/Propel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Propel
3030
/**
3131
* The Propel version.
3232
*/
33-
const VERSION = '1.7.0-dev';
33+
const VERSION = '1.7.0';
3434

3535
/**
3636
* A constant for <code>default</code>.

runtime/pear/build-pear-package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<!-- some default properties -->
1717
<property name="notes"><![CDATA[
18-
This is a release of the 1.6 branch of the Propel Generator.
18+
This is a release of the 1.7 branch of the Propel Generator.
1919
]]></property>
2020
<property name="state" value="stable"/>
2121

0 commit comments

Comments
 (0)