Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump nokogiri from 1.10.7 to 1.10.8 in /docs #133

Merged
merged 1 commit into from Feb 25, 2020

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 25, 2020

Bumps nokogiri from 1.10.7 to 1.10.8.

Release notes

Sourced from nokogiri's releases.

1.10.8 / 2020-02-10

Security

[MRI] Pulled in upstream patch from libxml that addresses CVE-2020-7595. Full details are available in #1992. Note that this patch is not yet (as of 2020-02-10) in an upstream release of libxml.

Changelog

Sourced from nokogiri's changelog.

Nokogiri (1.10.7)

---
warnings: []
nokogiri: 1.10.7
ruby:
  version: 2.7.0
  platform: x86_64-linux
  description: ruby 2.7.0p0 (2019-12-25 revision 647ee6f091) [x86_64-linux]
  engine: ruby
libxml:
  binding: extension
  source: packaged
  libxml2_path: "/home/flavorjones/.rvm/gems/ruby-2.7.0/gems/nokogiri-1.10.7/ports/x86_64-pc-linux-gnu/libxml2/2.9.10"
  libxslt_path: "/home/flavorjones/.rvm/gems/ruby-2.7.0/gems/nokogiri-1.10.7/ports/x86_64-pc-linux-gnu/libxslt/1.1.34"
  libxml2_patches:
  - 0001-Revert-Do-not-URI-escape-in-server-side-includes.patch
  - 0002-Remove-script-macro-support.patch
  - 0003-Update-entities-to-remove-handling-of-ssi.patch
  - 0004-libxml2.la-is-in-top_builddir.patch
  libxslt_patches: []
  compiled: 2.9.10
  loaded: 2.9.10

but now looks like:

Nokogiri (1.11.0)

---
warnings: []
nokogiri: 1.11.0
ruby:
  version: 2.7.0
  platform: x86_64-linux
  description: ruby 2.7.0p0 (2019-12-25 revision 647ee6f091) [x86_64-linux]
  engine: ruby
libxml:
  source: packaged
  patches:
  - 0001-Revert-Do-not-URI-escape-in-server-side-includes.patch
  - 0002-Remove-script-macro-support.patch
  - 0003-Update-entities-to-remove-handling-of-ssi.patch
  - 0004-libxml2.la-is-in-top_builddir.patch
  compiled: 2.9.10
  loaded: 2.9.10
libxslt:
  source: packaged
  patches: []
  compiled: 1.1.34
  loaded: 1.1.34
... (truncated)
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

You can disable automated security fix PRs for this repo from the Security Alerts page.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 25, 2020
@curry684 curry684 merged commit dc4fb16 into master Feb 25, 2020
@dependabot dependabot bot deleted the dependabot/bundler/docs/nokogiri-1.10.8 branch February 25, 2020 10:05
curry684 added a commit that referenced this pull request Apr 28, 2020
* Add server side export

* Add missing dev dependency

* Replace pseudo-type "iterable" by "\Traversable"

To support PHP 7.0

* Replace TranslatorInterface by DataCollectorTranslator

To maintain BC, it is not possible to type hint with the
TranslatorInterface as older versions of Symfony inject "Symfony\Component\Translation\TranslatorInterface"
while newer versions of Symfony inject "Symfony\Contracts\Translation\TranslatorInterface".

* Fix ArgumentCountError (Symfony ^3.4)

* Fix Content Disposition header format

* Do not display the export form

* Excel: render HTML in cells

The 'render' column option is usually use to inject HTML.

* Fix Translator injection

Tests were passing using "Symfony\Component\Translation\DataCollectorTranslator" as type-hint but Symfony may inject "Symfony\Bundle\FrameworkBundle\Translation\Translator".

* Use a Generator instead of a new Iterator

* Using a Generator makes the code more readable.
* Avoid creating an array (iterator_to_array) may be sligtly faster?

* Add functional test "testEmptyDataTable"

* Fix tests

* Preserve DataTableState

Export the entire table but keep current sort and filtering

* Automatically tag exporters

* Add CSV exporter

* Add missing "_dt"

* Fix "DT_RowId" check

* Make dependency on contracts explicit

Will not fix #122 but should prevent similar issues.

* Symfony 3 is not supported, according to the readme.md (#123)

* Symfony 3 is not supported, according to the readme.md

Symfony 3 is not supported, according to the readme.md. 
This updates the documentation to reflect that only Symfony 4.1+ is supported by this bundle

* Update index.html.md

* Option for custom datetime format for creating object (#127)

* Fix failing test by reverting custom WebClient handling

Alternative to #125

* Fix deprecations helper crashing old Symfony versions

* Drop bad testing method on old Symfony frameworks

This is actually obsolete since Symfony Flex, as you can now run Symfony 4.1 with more recent components.

* Apply code style

* Use weak deprecation testing

* Prepare 0.4.1

* Fix deprecations (#129)

* removed unused symfony/templating

* set lowest version of persistence to 1.3.4

* added missing SymfonyTestListener

* raise minimum version of doctrine/orm to 2.6.3

* set phpunit schema location to installed package

* Update translations with script (#130)

* script for updating translation messages from datatables language files

* added czech and slovak languages

* en rebuilt by script

* add missing closing bracket for example (#131)

* Integrate translation update script

* Update README.md

* Restructure tests to improve readability

* Bump nokogiri from 1.10.7 to 1.10.8 in /docs (#133)

Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.10.7 to 1.10.8.
- [Release notes](https://github.com/sparklemotion/nokogiri/releases)
- [Changelog](https://github.com/sparklemotion/nokogiri/blob/master/CHANGELOG.md)
- [Commits](sparklemotion/nokogiri@v1.10.7...v1.10.8)

Signed-off-by: dependabot[bot] <support@github.com>

* Test local translations (#139)

* Upgrade to PHPUnit 8/9

* Update Scrutinizer config

* Force use outdated version of ocramius/package-versions

Breaks both SymfonyInsight and Scrutinizer otherwise.

* Fix SymfonyInsight badge

* Fix SymfonyInsight badge for real

* Javascript improvements (#145)

* JS improvements

* Remove scrollX

* Allow config.options and config.url as functions

* Remove empty line

* Fix export issue when using GET method

* Add server side export

* Add missing dev dependency

* Replace pseudo-type "iterable" by "\Traversable"

To support PHP 7.0

* Replace TranslatorInterface by DataCollectorTranslator

To maintain BC, it is not possible to type hint with the
TranslatorInterface as older versions of Symfony inject "Symfony\Component\Translation\TranslatorInterface"
while newer versions of Symfony inject "Symfony\Contracts\Translation\TranslatorInterface".

* Fix ArgumentCountError (Symfony ^3.4)

* Fix Content Disposition header format

* Do not display the export form

* Excel: render HTML in cells

The 'render' column option is usually use to inject HTML.

* Fix Translator injection

Tests were passing using "Symfony\Component\Translation\DataCollectorTranslator" as type-hint but Symfony may inject "Symfony\Bundle\FrameworkBundle\Translation\Translator".

* Use a Generator instead of a new Iterator

* Using a Generator makes the code more readable.
* Avoid creating an array (iterator_to_array) may be sligtly faster?

* Add functional test "testEmptyDataTable"

* Fix tests

* Preserve DataTableState

Export the entire table but keep current sort and filtering

* Automatically tag exporters

* Add CSV exporter

* Add missing "_dt"

* Fix "DT_RowId" check

* Fix export issue when using GET method

* Fix tests

Co-authored-by: Niels Keurentjes <niels.keurentjes@omines.com>
Co-authored-by: Spyros Sakellaropoulos <spyridonas@users.noreply.github.com>
Co-authored-by: freezy <freezy-sk@users.noreply.github.com>
Co-authored-by: rwkt <37826694+rwkt@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Daniel Gorgan <danut007ro@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant