Skip to content

Commit

Permalink
Merge pull request #852 from catalyst/851-update-dependencies
Browse files Browse the repository at this point in the history
[#851] Update composer libs
  • Loading branch information
keevan authored Jan 4, 2024
2 parents 9e6100f + 23c2f58 commit 909d9b5
Show file tree
Hide file tree
Showing 61 changed files with 666 additions and 8,344 deletions.
2 changes: 1 addition & 1 deletion classes/local/execution/engine.php
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ private function setup_logging() {
$now = microtime(true);
[, $decimal] = explode('.', $now);
$decimal = substr($decimal, 0, 3); // Only use the first 3 digits after the decimal point.
$rundateformat = date("Ymd_His$decimal", $now);
$rundateformat = date("Ymd_His$decimal", (int) $now);

// Each channel represents a specific way of writing log information.
$log = new Logger($channel);
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
},
"require": {
"php": ">=7.4",
"symfony/yaml": "^3.4",
"symfony/yaml": "^4.0",
"symfony/expression-language": "^3.4",
"phpseclib/phpseclib": "~3.0",
"symfony/monolog-bundle": "^3.6"
Expand Down
22 changes: 11 additions & 11 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions thirdpartylibs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
<library>
<location>vendor/symfony/yaml</location>
<name>yaml</name>
<version>v3.4.47</version>
<version>v4.4.45</version>
<license>MIT</license>
<licenseversion></licenseversion>
</library>
Expand Down Expand Up @@ -218,4 +218,4 @@
<license>MIT</license>
<licenseversion></licenseversion>
</library>
</libraries>
</libraries>
22 changes: 11 additions & 11 deletions vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -2546,33 +2546,33 @@
},
{
"name": "symfony/yaml",
"version": "v3.4.47",
"version_normalized": "3.4.47.0",
"version": "v4.4.45",
"version_normalized": "4.4.45.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
"reference": "88289caa3c166321883f67fe5130188ebbb47094"
"reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/yaml/zipball/88289caa3c166321883f67fe5130188ebbb47094",
"reference": "88289caa3c166321883f67fe5130188ebbb47094",
"url": "https://api.github.com/repos/symfony/yaml/zipball/aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
"reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
"shasum": ""
},
"require": {
"php": "^5.5.9|>=7.0.8",
"php": ">=7.1.3",
"symfony/polyfill-ctype": "~1.8"
},
"conflict": {
"symfony/console": "<3.4"
},
"require-dev": {
"symfony/console": "~3.4|~4.0"
"symfony/console": "^3.4|^4.0|^5.0"
},
"suggest": {
"symfony/console": "For validating YAML files using the lint command"
},
"time": "2020-10-24T10:57:07+00:00",
"time": "2022-08-02T15:47:23+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
Expand All @@ -2597,10 +2597,10 @@
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony Yaml Component",
"description": "Loads and dumps YAML files",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/yaml/tree/v3.4.47"
"source": "https://github.com/symfony/yaml/tree/v4.4.45"
},
"funding": [
{
Expand All @@ -2619,6 +2619,6 @@
"install-path": "../symfony/yaml"
}
],
"dev": true,
"dev": false,
"dev-package-names": []
}
20 changes: 10 additions & 10 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<?php return array(
'root' => array(
'name' => '__root__',
'pretty_version' => '1.0.0+no-version-set',
'version' => '1.0.0.0',
'reference' => NULL,
'pretty_version' => 'dev-851-update-dependencies-extra-changes',
'version' => 'dev-851-update-dependencies-extra-changes',
'reference' => '2ed9efbaf8ec8d6f01db7dc7944dc35359045d9e',
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'dev' => true,
'dev' => false,
),
'versions' => array(
'__root__' => array(
'pretty_version' => '1.0.0+no-version-set',
'version' => '1.0.0.0',
'reference' => NULL,
'pretty_version' => 'dev-851-update-dependencies-extra-changes',
'version' => 'dev-851-update-dependencies-extra-changes',
'reference' => '2ed9efbaf8ec8d6f01db7dc7944dc35359045d9e',
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down Expand Up @@ -357,9 +357,9 @@
'dev_requirement' => false,
),
'symfony/yaml' => array(
'pretty_version' => 'v3.4.47',
'version' => '3.4.47.0',
'reference' => '88289caa3c166321883f67fe5130188ebbb47094',
'pretty_version' => 'v4.4.45',
'version' => '4.4.45.0',
'reference' => 'aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d',
'type' => 'library',
'install_path' => __DIR__ . '/../symfony/yaml',
'aliases' => array(),
Expand Down
3 changes: 0 additions & 3 deletions vendor/symfony/yaml/.gitignore

This file was deleted.

47 changes: 47 additions & 0 deletions vendor/symfony/yaml/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,53 @@
CHANGELOG
=========

4.4.0
-----

* Added support for parsing the inline notation spanning multiple lines.
* Added support to dump `null` as `~` by using the `Yaml::DUMP_NULL_AS_TILDE` flag.
* deprecated accepting STDIN implicitly when using the `lint:yaml` command, use `lint:yaml -` (append a dash) instead to make it explicit.

4.3.0
-----

* Using a mapping inside a multi-line string is deprecated and will throw a `ParseException` in 5.0.

4.2.0
-----

* added support for multiple files or directories in `LintCommand`

4.0.0
-----

* The behavior of the non-specific tag `!` is changed and now forces
non-evaluating your values.
* complex mappings will throw a `ParseException`
* support for the comma as a group separator for floats has been dropped, use
the underscore instead
* support for the `!!php/object` tag has been dropped, use the `!php/object`
tag instead
* duplicate mapping keys throw a `ParseException`
* non-string mapping keys throw a `ParseException`, use the `Yaml::PARSE_KEYS_AS_STRINGS`
flag to cast them to strings
* `%` at the beginning of an unquoted string throw a `ParseException`
* mappings with a colon (`:`) that is not followed by a whitespace throw a
`ParseException`
* the `Dumper::setIndentation()` method has been removed
* being able to pass boolean options to the `Yaml::parse()`, `Yaml::dump()`,
`Parser::parse()`, and `Dumper::dump()` methods to configure the behavior of
the parser and dumper is no longer supported, pass bitmask flags instead
* the constructor arguments of the `Parser` class have been removed
* the `Inline` class is internal and no longer part of the BC promise
* removed support for the `!str` tag, use the `!!str` tag instead
* added support for tagged scalars.

```yml
Yaml::parse('!foo bar', Yaml::PARSE_CUSTOM_TAGS);
// returns TaggedValue('foo', 'bar');
```

3.4.0
-----

Expand Down
Loading

0 comments on commit 909d9b5

Please sign in to comment.