[DRE-commits] [ruby-json-schema] branch master updated (9ae6c8c -> d936f2f)

Balasankar C balasankarc-guest at moszumanska.debian.org
Sun Nov 13 10:21:41 UTC 2016


This is an automated email from the git hooks/post-receive script.

balasankarc-guest pushed a change to branch master
in repository ruby-json-schema.

      from  9ae6c8c   update changelog
      adds  79d7253   New upstream version 2.7.0
       new  82bee3c   Merge tag 'upstream/2.7.0'
       new  8b4026e   Remove obsolete patches
       new  81b364f   Modify patch to handle all possible file locations
       new  8a22237   Add dependency check to rules
       new  8f1aeb8   Use rake file instead of yaml one for tests
       new  d936f2f   Add changelog entry for new version

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml                                        |  15 ++-
 CHANGELOG.md                                       |  15 +++
 CONTRIBUTORS.md                                    |   1 +
 Gemfile                                            |   2 +-
 README.md                                          |  18 ++++
 Rakefile                                           |   7 +-
 VERSION.yml                                        |   4 +-
 debian/changelog                                   |   9 ++
 debian/patches/move-resource-draft.patch           |  10 +-
 debian/patches/no-loadpath-overload-in-tests.patch |  15 ---
 debian/patches/series                              |   2 -
 debian/patches/update-addressable-24.patch         |  31 -------
 debian/ruby-test-files.yaml                        |  31 -------
 debian/ruby-tests.rake                             |   6 ++
 debian/rules                                       |  16 +---
 .../{Gemfile.multi_json.x => Gemfile.json_v1.x}    |   2 +-
 json-schema.gemspec                                |   4 +-
 lib/json-schema/attributes/additionalitems.rb      |   2 +-
 lib/json-schema/attributes/additionalproperties.rb |   2 +-
 lib/json-schema/attributes/extends.rb              |   2 -
 lib/json-schema/attributes/items.rb                |   1 +
 lib/json-schema/schema/reader.rb                   |  36 ++++++-
 lib/json-schema/validator.rb                       |  33 ++++---
 ..._of_ref_schema.rb => all_of_ref_schema_test.rb} |   2 +-
 ..._of_ref_schema.rb => any_of_ref_schema_test.rb} |   2 +-
 ...st_bad_schema_ref.rb => bad_schema_ref_test.rb} |  16 +++-
 test/caching_test.rb                               |  57 ++++++++++++
 ...mon_test_suite.rb => common_test_suite_test.rb} |   2 +-
 ...test_custom_format.rb => custom_format_test.rb} |   6 +-
 test/{test_jsonschema_draft1.rb => draft1_test.rb} |   9 +-
 test/{test_jsonschema_draft2.rb => draft2_test.rb} |   9 +-
 test/{test_jsonschema_draft3.rb => draft3_test.rb} |   9 +-
 test/{test_jsonschema_draft4.rb => draft4_test.rb} |  24 +++--
 test/extended_schema_test.rb                       |  61 ++++++++++++
 ...itionalProperties.rb => extends_nested_test.rb} |  12 +--
 test/{test_files_v3.rb => files_test.rb}           |  28 ++++--
 ...t_resolution.rb => fragment_resolution_test.rb} |   4 +-
 ...ref.rb => fragment_validation_with_ref_test.rb} |   4 +-
 ..._full_validation.rb => full_validation_test.rb} | 103 ++++++++++-----------
 ..._initialize_data.rb => initialize_data_test.rb} |   4 +-
 test/{test_list_option.rb => list_option_test.rb}  |   4 +-
 ..._load_ref_schema.rb => load_ref_schema_test.rb} |   4 +-
 ...sing_values.rb => merge_missing_values_test.rb} |   2 +-
 test/{test_minitems.rb => min_items_test.rb}       |   2 +-
 test/{test_one_of.rb => one_of_test.rb}            |   2 +-
 ...t_definition.rb => relative_definition_test.rb} |   2 +-
 test/{test_ruby_schema.rb => ruby_schema_test.rb}  |   2 +-
 ...test_schema_loader.rb => schema_reader_test.rb} |  10 +-
 ...ema_validation.rb => schema_validation_test.rb} |   4 +-
 ...ends_and_additionalProperties-1-ref.schema.json |  34 -------
 ...ends_and_additionalProperties-2-ref.schema.json |  33 -------
 ...nds_and_additionalProperties_false_schema.json} |  13 +--
 ...n => extends_and_patternProperties_schema.json} |  15 +--
 test/schemas/good_schema_1.json                    |   9 +-
 test/schemas/good_schema_2.json                    |   5 +-
 test/schemas/good_schema_extends1.json             |   2 -
 test/schemas/good_schema_extends2.json             |   2 -
 .../{inner.schema.json => inner_schema.json}       |   8 +-
 test/{test_stringify.rb => stringify_test.rb}      |   2 +-
 test/support/array_validation.rb                   |   6 +-
 test/support/number_validation.rb                  |  11 ---
 test/support/strict_validation.rb                  |   1 -
 test/support/test_helper.rb                        |  44 +++++++++
 test/test_extended_schema.rb                       |  62 -------------
 test/test_helper.rb                                |  37 --------
 ...ma_type_attribute.rb => type_attribute_test.rb} |   4 +-
 test/{test_uri_related.rb => uri_parsing_test.rb}  |   4 +-
 ...alidator.rb => validator_schema_reader_test.rb} |  10 +-
 68 files changed, 465 insertions(+), 485 deletions(-)
 delete mode 100644 debian/patches/no-loadpath-overload-in-tests.patch
 delete mode 100644 debian/patches/update-addressable-24.patch
 delete mode 100644 debian/ruby-test-files.yaml
 create mode 100644 debian/ruby-tests.rake
 copy gemfiles/{Gemfile.multi_json.x => Gemfile.json_v1.x} (72%)
 rename test/{test_all_of_ref_schema.rb => all_of_ref_schema_test.rb} (94%)
 rename test/{test_any_of_ref_schema.rb => any_of_ref_schema_test.rb} (96%)
 rename test/{test_bad_schema_ref.rb => bad_schema_ref_test.rb} (52%)
 create mode 100644 test/caching_test.rb
 rename test/{test_common_test_suite.rb => common_test_suite_test.rb} (97%)
 rename test/{test_custom_format.rb => custom_format_test.rb} (98%)
 rename test/{test_jsonschema_draft1.rb => draft1_test.rb} (93%)
 rename test/{test_jsonschema_draft2.rb => draft2_test.rb} (92%)
 rename test/{test_jsonschema_draft3.rb => draft3_test.rb} (98%)
 rename test/{test_jsonschema_draft4.rb => draft4_test.rb} (97%)
 create mode 100644 test/extended_schema_test.rb
 rename test/{test_extends_and_additionalProperties.rb => extends_nested_test.rb} (80%)
 rename test/{test_files_v3.rb => files_test.rb} (55%)
 rename test/{test_fragment_resolution.rb => fragment_resolution_test.rb} (86%)
 rename test/{test_fragment_validation_with_ref.rb => fragment_validation_with_ref_test.rb} (86%)
 rename test/{test_full_validation.rb => full_validation_test.rb} (68%)
 rename test/{test_initialize_data.rb => initialize_data_test.rb} (95%)
 rename test/{test_list_option.rb => list_option_test.rb} (81%)
 rename test/{test_load_ref_schema.rb => load_ref_schema_test.rb} (89%)
 rename test/{test_merge_missing_values.rb => merge_missing_values_test.rb} (96%)
 rename test/{test_minitems.rb => min_items_test.rb} (85%)
 rename test/{test_one_of.rb => one_of_test.rb} (97%)
 rename test/{test_definition.rb => relative_definition_test.rb} (89%)
 rename test/{test_ruby_schema.rb => ruby_schema_test.rb} (95%)
 rename test/{test_schema_loader.rb => schema_reader_test.rb} (86%)
 rename test/{test_schema_validation.rb => schema_validation_test.rb} (97%)
 delete mode 100644 test/schemas/extends_and_additionalProperties-1-ref.schema.json
 delete mode 100644 test/schemas/extends_and_additionalProperties-2-ref.schema.json
 rename test/schemas/{extends_and_additionalProperties-1-filename.schema.json => extends_and_additionalProperties_false_schema.json} (60%)
 rename test/schemas/{extends_and_additionalProperties-2-filename.schema.json => extends_and_patternProperties_schema.json} (55%)
 rename test/schemas/{inner.schema.json => inner_schema.json} (55%)
 rename test/{test_stringify.rb => stringify_test.rb} (95%)
 create mode 100644 test/support/test_helper.rb
 delete mode 100644 test/test_extended_schema.rb
 delete mode 100644 test/test_helper.rb
 rename test/{test_schema_type_attribute.rb => type_attribute_test.rb} (83%)
 rename test/{test_uri_related.rb => uri_parsing_test.rb} (94%)
 rename test/{test_validator.rb => validator_schema_reader_test.rb} (82%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-json-schema.git



More information about the Pkg-ruby-extras-commits mailing list