From 86196b869f8bf45da716774073240636f7cdd491 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Wed, 9 Aug 2017 13:18:05 -0400 Subject: [PATCH 01/11] Remove MediaWiki integration --- Common.php | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/Common.php b/Common.php index 3d0d69e..a760de2 100644 --- a/Common.php +++ b/Common.php @@ -16,17 +16,3 @@ } define( 'DATAVALUES_COMMON_VERSION', '0.3.1' ); - -if ( defined( 'MEDIAWIKI' ) ) { - $GLOBALS['wgExtensionCredits']['datavalues'][] = array( - 'path' => __DIR__, - 'name' => 'DataValues Common', - 'version' => DATAVALUES_COMMON_VERSION, - 'author' => array( - '[https://www.mediawiki.org/wiki/User:Jeroen_De_Dauw Jeroen De Dauw]' - ), - 'url' => 'https://github.com/DataValues/Common', - 'description' => 'Contains common implementations of the interfaces defined by DataValuesInterfaces', - 'license-name' => 'GPL-2.0+' - ); -} From 0fb269955b464e54f7ca3d514e012283d48228a5 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Wed, 9 Aug 2017 13:19:03 -0400 Subject: [PATCH 02/11] Release 0.4.0 --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index a857363..c0a8404 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,10 @@ DataValues Common has been written by the Wikidata team, as [Wikimedia Germany] ## Release notes +### 0.4.0 (2017-08-09) + +* Removed MediaWiki integration + ### 0.3.1 (2015-08-14) * The component can now be installed together with DataValues Interfaces 0.1.5 From 7b11237246ce4e4fcc59e0138d7942278a7df802 Mon Sep 17 00:00:00 2001 From: addshore Date: Wed, 9 Aug 2017 14:20:52 -0400 Subject: [PATCH 03/11] Update version number to 0.4.1 --- Common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common.php b/Common.php index a760de2..7daee7e 100644 --- a/Common.php +++ b/Common.php @@ -15,4 +15,4 @@ return 1; } -define( 'DATAVALUES_COMMON_VERSION', '0.3.1' ); +define( 'DATAVALUES_COMMON_VERSION', '0.4.1' ); From fdbc3f55bec5ccfccb97d115a4706a82783f41bf Mon Sep 17 00:00:00 2001 From: Jeroen De Dauw Date: Thu, 16 Aug 2018 10:11:03 +0200 Subject: [PATCH 04/11] 0.4.2: support DV 2.x on 0.4.x branch --- Common.php | 2 +- composer.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Common.php b/Common.php index 7daee7e..112c3bb 100644 --- a/Common.php +++ b/Common.php @@ -15,4 +15,4 @@ return 1; } -define( 'DATAVALUES_COMMON_VERSION', '0.4.1' ); +define( 'DATAVALUES_COMMON_VERSION', '0.4.2' ); diff --git a/composer.json b/composer.json index 45f01ef..0a71175 100644 --- a/composer.json +++ b/composer.json @@ -24,12 +24,12 @@ }, "require": { "php": ">=5.3.0", - "data-values/data-values": "~1.0|~0.1", + "data-values/data-values": "~2.0|~1.0|~0.1", "data-values/interfaces": "~0.2.0|^0.1.5" }, "extra": { "branch-alias": { - "dev-master": "0.3.x-dev" + "dev-master": "0.4.x-dev" } }, "autoload": { From ac0032ae854a28c11d7d7e3ef53159e2d583b789 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Such=C3=A1nek?= Date: Sat, 27 Aug 2016 12:34:20 +0200 Subject: [PATCH 05/11] fix typo --- src/ValueParsers/DispatchingValueParser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ValueParsers/DispatchingValueParser.php b/src/ValueParsers/DispatchingValueParser.php index cdd92de..5146a3e 100644 --- a/src/ValueParsers/DispatchingValueParser.php +++ b/src/ValueParsers/DispatchingValueParser.php @@ -62,7 +62,7 @@ public function parse( $value ) { } throw new ParseException( - 'The value is not recognitzed by the configured parsers', + 'The value is not recognized by the configured parsers', $value, $this->format ); From 5e2417532aa22ae0912dfa491ae3e2ce274a093e Mon Sep 17 00:00:00 2001 From: Leszek Manicki Date: Fri, 28 Jun 2019 15:17:31 +0200 Subject: [PATCH 06/11] Removed ancient PHP versions from Travis CI version matrx --- .travis.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3484c76..eecd872 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,6 @@ language: php php: - - 5.3 - - 5.4 - - 5.5 - 5.6 - 7 - hhvm From 9b98f8a2b5af2693344990493086156783f88eb4 Mon Sep 17 00:00:00 2001 From: Leszek Manicki Date: Fri, 28 Jun 2019 15:28:30 +0200 Subject: [PATCH 07/11] Pinned HHVM version to use on Travis CI to match the one used on WMF infra --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index eecd872..1296abe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: php php: - 5.6 - 7 - - hhvm + - hhvm-3.18 before_script: - travis_retry composer install --prefer-source From 0dd6239dc6c7cccf1ca761dc849167897bc3ff6f Mon Sep 17 00:00:00 2001 From: Leszek Manicki Date: Fri, 28 Jun 2019 15:32:13 +0200 Subject: [PATCH 08/11] Pinned PHPUnit version to work with old PHP version on Travis CI --- composer.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/composer.json b/composer.json index 0a71175..e49bdc9 100644 --- a/composer.json +++ b/composer.json @@ -27,6 +27,9 @@ "data-values/data-values": "~2.0|~1.0|~0.1", "data-values/interfaces": "~0.2.0|^0.1.5" }, + "require-dev": { + "phpunit/phpunit": "~5.7" + }, "extra": { "branch-alias": { "dev-master": "0.4.x-dev" From ba284959af16a8ba221d6c030002eaa5cc2644d0 Mon Sep 17 00:00:00 2001 From: Leszek Manicki Date: Fri, 28 Jun 2019 15:48:13 +0200 Subject: [PATCH 09/11] Release 0.4.3 --- Common.php | 2 +- README.md | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Common.php b/Common.php index 112c3bb..5c84d97 100644 --- a/Common.php +++ b/Common.php @@ -15,4 +15,4 @@ return 1; } -define( 'DATAVALUES_COMMON_VERSION', '0.4.2' ); +define( 'DATAVALUES_COMMON_VERSION', '0.4.3' ); diff --git a/README.md b/README.md index c0a8404..e025348 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,18 @@ DataValues Common has been written by the Wikidata team, as [Wikimedia Germany] ## Release notes +### 0.4.3 (2019-06-28) + +* Fixed typo in error message in `DispatchingValueParser` + +### 0.4.2 (2018-08-16) + +* The component can now be installed together with DataValues 2.x + +### 0.4.1 (2018-08-09) + +* Fixed version number not updated before. + ### 0.4.0 (2017-08-09) * Removed MediaWiki integration From 43d6633e0620471850d9bf4a0efac90a99d0b3eb Mon Sep 17 00:00:00 2001 From: Reedy Date: Thu, 19 Sep 2019 11:35:31 +0100 Subject: [PATCH 10/11] Copy in .gitattributes from master --- .gitattributes | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dcd303f --- /dev/null +++ b/.gitattributes @@ -0,0 +1,9 @@ +.editorconfig export-ignore +.gitattributes export-ignore +.gitignore export-ignore +.scrutinizer.yml export-ignore +.travis.yml export-ignore +composer.json export-ignore +phpcs.xml export-ignore +phpunit.xml.dist export-ignore +tests export-ignore From fa9b109486488a295dadfa9c24f4d4bda74efc3f Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Tue, 24 Sep 2019 09:27:42 +0100 Subject: [PATCH 11/11] Remove tests from .gitattributes for the moment --- .gitattributes | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index dcd303f..3f150e3 100644 --- a/.gitattributes +++ b/.gitattributes @@ -6,4 +6,3 @@ composer.json export-ignore phpcs.xml export-ignore phpunit.xml.dist export-ignore -tests export-ignore