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

Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.22.1 #99

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 5, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
com.regnosys.rosetta:com.regnosys.rosetta 9.1.3 -> 9.22.1 age adoption passing confidence

Release Notes

REGnosys/rosetta-dsl (com.regnosys.rosetta:com.regnosys.rosetta)

v9.22.1

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.22.0...9.22.1

v9.22.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.21.0...9.22.0

v9.21.0

Compare Source

What's Changed

New Contributors

Full Changelog: finos/rune-dsl@9.20.0...9.21.0

v9.20.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.19.0...9.20.0

v9.19.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.18.2...9.19.0

v9.18.2

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.18.1...9.18.2

v9.18.1

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.18.0...9.18.1

v9.18.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.17.2...9.18.0

v9.17.2

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.17.1...9.17.2

v9.17.1

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.17.0...9.17.1

v9.17.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.16.7...9.17.0

v9.16.7

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.16.6...9.16.7

v9.16.6

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.16.5...9.16.6

v9.16.5

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.16.4...9.16.5

v9.16.4

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.16.3...9.16.4

v9.16.3

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.16.2...9.16.3

v9.16.2

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.16.1...9.16.2

v9.16.1

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.16.0...9.16.1

v9.16.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.15.2...9.16.0

v9.15.2

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.15.1...9.15.2

v9.15.1

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.15.0...9.15.1

v9.15.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.14.1...9.15.0

v9.14.1

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.14.0...9.14.1

v9.14.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.13.0...9.14.0

v9.13.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.12.4...9.13.0

v9.12.4

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.12.3...9.12.4

v9.12.3

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.12.2...9.12.3

v9.12.2

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.12.1...9.12.2

v9.12.1

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.12.0...9.12.1

v9.12.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.11.2...9.12.0

v9.11.2

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.11.1...9.11.2

v9.11.1

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.11.0...9.11.1

v9.11.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.10.1...9.11.0

v9.10.1

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.10.0...9.10.1

v9.10.0

Compare Source

This release implements step 1 and step 2 of https://github.com/finos/rune-dsl/issues/747#issuecomment-2105050958 (enhanced support for one-of types).

What's Changed

Full Changelog: finos/rune-dsl@9.9.0...9.10.0

v9.9.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.8.6...9.9.0

v9.8.6

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.8.5...9.8.6

v9.8.5

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.8.0...9.8.5

v9.8.0

Compare Source

This release introduces three new operations to convert a string into one of the record types date, dateTime or zonedDateTime. Examples:

  • "2024-04-18" to-date results in a date object representing the 18th of April in the year 2024.
  • "2024-04-18T13:06:26" to-date-time results in the same date, but with a time specified as 13:06:26.
  • "2024-04-18T13:06:26+02:00[Europe/Brussels]" to-zoned-date-time results in the same date and time, but with its timezone specified as Europe/Brussels.
  • "2024-04-18T13:06:26Z" to-zoned-date-time results in the same date and time, but with a zero (UTC) offset.

Furthermore, it enhances the to-string operation to allow record types to be passed as arguments as well.

What's Changed

Full Changelog: finos/rune-dsl@9.7.0...9.8.0

v9.7.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.6.1...9.7.0

v9.6.1

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.6.0...9.6.1

v9.6.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.5.0...9.6.0

v9.5.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.4.1...9.5.0

v9.4.1

Compare Source

What's Changed

  • New data structures to store Regulation Validation results

v9.4.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.3.1...9.4.0

v9.3.1

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.3.0...9.3.1

v9.3.0

Compare Source

What's Changed

Full Changelog: finos/rune-dsl@9.2.0...9.3.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

netlify bot commented Feb 5, 2024

Deploy Preview for super-kitsune-8d7875 canceled.

Name Link
🔨 Latest commit bad0109
🔍 Latest deploy log https://app.netlify.com/sites/super-kitsune-8d7875/deploys/673ec4327d6de1000864abfb

@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 9bad614 to 466a47a Compare February 7, 2024 18:22
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.5.0 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.6.0 Feb 7, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 466a47a to 86f5c08 Compare February 26, 2024 15:50
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.6.0 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.6.1 Feb 26, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 86f5c08 to c132949 Compare March 13, 2024 14:27
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.6.1 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.7.0 Mar 13, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from c132949 to 3811506 Compare April 18, 2024 18:03
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.7.0 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.8.0 Apr 18, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 3811506 to 318f2cb Compare May 22, 2024 13:03
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.8.0 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.8.5 May 22, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 318f2cb to c6eb4a1 Compare May 28, 2024 19:03
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.8.5 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.8.6 May 28, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from c6eb4a1 to 7e49e6a Compare June 4, 2024 10:40
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.8.6 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.9.0 Jun 4, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 7e49e6a to 392f2b1 Compare June 6, 2024 13:22
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.9.0 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.10.0 Jun 6, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 392f2b1 to a8a0647 Compare June 11, 2024 13:28
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.10.0 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.11.0 Jun 11, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from a8a0647 to 396f8a2 Compare June 13, 2024 22:53
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.11.0 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.11.1 Jun 13, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 396f8a2 to e62df5f Compare June 14, 2024 16:46
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.11.1 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.11.2 Jun 14, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from e62df5f to c4c2856 Compare June 18, 2024 22:28
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.11.2 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.12.0 Jun 18, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from c4c2856 to 514e2ab Compare June 25, 2024 11:29
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.12.0 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.12.1 Jun 25, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 514e2ab to 34b5e0f Compare June 26, 2024 10:43
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.12.1 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.12.2 Jun 26, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 34b5e0f to 4c030ca Compare June 26, 2024 15:59
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.16.2 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.16.3 Sep 5, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from a4c44a4 to 3bc9edf Compare September 9, 2024 11:37
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.16.3 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.16.4 Sep 9, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 3bc9edf to 374efc2 Compare September 9, 2024 14:16
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.16.4 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.16.5 Sep 9, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 374efc2 to d101f15 Compare September 10, 2024 12:10
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.16.5 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.16.6 Sep 10, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from d101f15 to 9e80833 Compare September 11, 2024 09:01
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.16.6 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.16.7 Sep 11, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 9e80833 to 7ac8870 Compare September 13, 2024 16:55
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.16.7 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.17.1 Sep 13, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 7ac8870 to 309162d Compare September 16, 2024 10:50
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.17.1 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.17.2 Sep 16, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 309162d to dad8275 Compare September 16, 2024 13:36
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.17.2 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.18.0 Sep 16, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from dad8275 to 069166b Compare September 18, 2024 12:52
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.18.0 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.18.1 Sep 18, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 069166b to 995a6a9 Compare September 25, 2024 17:15
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.18.1 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.18.2 Sep 25, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 995a6a9 to da2cef7 Compare October 2, 2024 17:03
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.18.2 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.19.0 Oct 2, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from da2cef7 to 41a49dc Compare October 21, 2024 14:05
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.19.0 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.20.0 Oct 21, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 41a49dc to 3339edd Compare November 7, 2024 15:43
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.20.0 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.21.0 Nov 7, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from 3339edd to b107860 Compare November 14, 2024 19:50
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.21.0 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.22.0 Nov 14, 2024
@renovate renovate bot force-pushed the renovate/rosetta.dsl.version branch from b107860 to bad0109 Compare November 21, 2024 05:25
@renovate renovate bot changed the title Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.22.0 Update dependency com.regnosys.rosetta:com.regnosys.rosetta to v9.22.1 Nov 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants