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

chore(deps): bump the all group across 1 directory with 8 updates #299

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 15, 2024

Bumps the all group with 8 updates in the / directory:

Package From To
@algorandfoundation/tealscript 0.90.3 0.97.0
algosdk 2.7.0 2.8.0
dotenv-cli 7.4.1 7.4.2
prettier 3.2.5 3.3.3
rollup 4.14.3 4.18.1
ts-jest 29.1.2 29.2.2
typedoc 0.25.13 0.26.4
typescript 5.4.5 5.5.3

Updates @algorandfoundation/tealscript from 0.90.3 to 0.97.0

Release notes

Sourced from @​algorandfoundation/tealscript's releases.

0.97.0

  • fixes request body too large by removing comments if the TEAL is too large for algod
  • fixes multi-line docstrings in emitted JSON artifacts
  • fixes TEAL emission error when accessing state with a multi-line function call
  • Address template variables now use the addr pseudo-op to allow usage of base32 addresses for the template variable value

0.96.2

  • support .length on variable-length arrays of dynamic types

0.96.1

  • fixes app args .length and dynamic indexes

0.96.0

  • adds AVM11 incentive opcodes
  • fixes bug with boolean encoded when booleans were first in a tuple with other types

0.95.1

  • reduces the body size of the /compile request by removing comments and trimming all of the lines.

0.95.0

  • fixes updating of static values in dynamic box objects
  • fixes optimize step treating // comments as / in some edge cases
  • adds globalStateExists and localStateExists methods to check existence of external state values

0.94.1

  • fixes bug with union types and boolean literals

0.94.0

  • rawByte function for extracting a single byte from a value
  • New Uint<N> constructor for numeric literals that are larger than Number.MAX_SAFE_INTEGER which has the same functionality as BigInt
  • fixed usage pushbyte opcode (now properly pushbytes)

0.93.0

  • add support for emitting ARC56 (draft) JSON

0.92.0

adds ARC56 error messages to .src_map.json

0.91.1

fix program pages field

0.91.0

  • support multiple program pages in inner transactions

0.90.4

  • fix: pushints and static length for template variables
  • fix: unsafe numbers in typed variable
Commits
  • 9f8f17b Merge pull request #513 from algorandfoundation/dev
  • 91f75d0 0.97.0
  • fe929c7 Merge pull request #512 from algorandfoundation/fix/multiline_docstring
  • 5fbd752 fix: docstring newlines
  • ee6db94 Merge pull request #511 from algorandfoundation/fix/multiline_state_assert
  • 3a6d5c9 Merge pull request #510 from algorandfoundation/feat/addr_tmpl
  • 5ce80f9 fix: error when getting state in multi-line function call
  • b4bf852 feat: use addr for address template vars
  • d8f63c1 Merge pull request #509 from algorandfoundation/feat/rm_teal_comments
  • 7012696 add to package.json, update warning
  • Additional commits viewable in compare view

Updates algosdk from 2.7.0 to 2.8.0

Release notes

Sourced from algosdk's releases.

v2.8.0

What's Changed

  • New fields to support the vFuture incentives release and minBalance on Account
  • Update the API with support for GetBlockLogs endpoint

Bugfixes

Enhancements

New Contributors

Full Changelog: algorand/js-algorand-sdk@v2.7.0...v2.8.0

Changelog

Sourced from algosdk's changelog.

v2.8.0

What's Changed

Bugfixes

Enhancements

New Contributors

Full Changelog: algorand/js-algorand-sdk@v2.7.0...v2.8.0

Commits
  • 8aaa432 Merge branch 'release/v2.8.0'
  • 3976e18 bump up version to v2.8.0
  • 1d09e42 Spec: Regenerate code from specification file f633b019 (#870)
  • 981905a fix: allow either boolean value for nonParticipation offline keyregs (#866)
  • a4eccfb Fix: Update chromedriver deps, make install conditional in CI, and fix indexe...
  • 6fdfa11 API: Regenerate algod and indexer models (#845)
  • See full diff in compare view

Updates dotenv-cli from 7.4.1 to 7.4.2

Commits

Updates prettier from 3.2.5 to 3.3.3

Release notes

Sourced from prettier's releases.

3.3.3

🔗 Changelog

3.3.2

🔗 Changelog

3.3.1

🔗 Changelog

3.3.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.3.3

diff

Add parentheses for nullish coalescing in ternary (#16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);

Add parentheses for decorator expressions (#16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@(foo`tagged template`)
class X {}
// Prettier 3.3.2
@​footagged template
class X {}
// Prettier 3.3.3
@(footagged template)
class X {}

Support @let declaration syntax (#16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

... (truncated)

Commits

Updates rollup from 4.14.3 to 4.18.1

Release notes

Sourced from rollup's releases.

v4.18.1

4.18.1

2024-07-08

Bug Fixes

  • Prevent "%" in generated file names to ensure imports resolve (#5535)

Pull Requests

v4.18.0

4.18.0

2024-05-22

Features

  • Resolve import.meta.filename and .dirname in transpiled plugins (#5520)

Pull Requests

... (truncated)

Changelog

Sourced from rollup's changelog.

4.18.1

2024-07-08

Bug Fixes

  • Prevent "%" in generated file names to ensure imports resolve (#5535)

Pull Requests

4.18.0

2024-05-22

Features

  • Resolve import.meta.filename and .dirname in transpiled plugins (#5520)

Pull Requests

... (truncated)

Commits

Updates ts-jest from 29.1.2 to 29.2.2

Release notes

Sourced from ts-jest's releases.

v29.2.2

Please refer to CHANGELOG.md for details.

v29.2.1

Please refer to CHANGELOG.md for details.

v29.2.0

Please refer to CHANGELOG.md for details.

v29.1.5

Please refer to CHANGELOG.md for details.

v29.1.4

Please refer to CHANGELOG.md for details.

v29.1.3

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.2.2 (2024-07-10)

Bug Fixes

  • fix(compiler): update memory cache after changing module value (94db43f), closes #4439

29.2.1 (2024-07-10)

Bug Fixes

  • fix: move ejs to dep instead of peerDep (26e31a7)
  • fix: set allowSyntheticDefaultImports properly (ff4b302), closes #4156
  • fix(compiler): support Node16/NodeNext value for target (2f5cc0c), closes #4198

29.2.0 (2024-07-08)

Bug Fixes

  • fix: don't show warning message with Node16/NodeNext (99c4f49), closes #4266

Features

  • feat(cli): allow migrating cjs presets to transform config (22fb027)
  • feat(presets): add util functions to create ESM presets (06f78ed), close #4200
  • feat(presets): add util functions to create CJS presets (f9cc3c0), close #4200

Code refactoring

  • refactor: replace lodash deps with native js implementation (40f1708)
  • refactor: use TsJestTransformerOptions type everywhere possibly (7d001be)
  • refactor(cli): use new preset util functions to initialize test config (c2b56ca)
  • refactor(presets): use create preset util functions for cjs presets (922d6d0)
  • test: switch react-app to use Vite (827c8ad)

DEPRECATIONS

... (truncated)

Commits
  • f944262 chore(release): 29.2.2
  • 94db43f fix(compiler): update memory cache after changing module value
  • e80594d build(deps): Update dependency ts-jest to ^29.2.1
  • b669f23 chore(release): 29.2.1
  • ff4b302 fix: set allowSyntheticDefaultImports properly
  • 083cd89 test(examples): use module: Node16 for CJS tests where possible
  • 54b374a test(examples): replace globals.d.ts with @types/jest for projects
  • 2f5cc0c fix(compiler): support Node16/NodeNext value for target
  • 7201375 test(examples): use preset util functions in all example projects
  • 26e31a7 fix: move ejs to dep instead of peerDep
  • Additional commits viewable in compare view

Updates typedoc from 0.25.13 to 0.26.4

Release notes

Sourced from typedoc's releases.

v0.26.4

Bug Fixes

  • The page navigation sidebar no longer incorrectly includes re-exports if the same member is exported with multiple names #2625.
  • Page navigation now ensures the current page is visible when the page is first loaded, #2626.
  • If a relative linked image is referenced multiple times, TypeDoc will no longer sometimes produce invalid links to the image #2627.
  • @link tags will now be validated in referenced markdown documents, #2629.
  • @link tags are now resolved in project documents, #2629.
  • HTML/JSON output generated by TypeDoc now contains a trailing newline, #2632.
  • TypeDoc now correctly handles markdown documents with CRLF line endings, #2628.
  • @hidden is now properly applied when placed in a function implementation comment, #2634.
  • Comments on re-exports are now rendered.

Thanks!

v0.26.3

Features

  • "On This Page" navigation now includes the page groups in collapsible sections, #2616.

Bug Fixes

  • mailto: links are no longer incorrectly recognized as relative paths, #2613.
  • Added @since to the default list of recognized tags, #2614.
  • Relative paths to directories will no longer cause the directory to be copied into the media directory, #2617.

v0.26.2

Features

  • Added a --suppressCommentWarningsInDeclarationFiles option to disable warnings from parsing comments in declaration files, #2611.
  • Improved comment discovery to more closely match TypeScript's discovery when getting comments for members of interfaces/classes, #2084, #2545.

Bug Fixes

  • The text non-highlighted language no longer causes warnings when rendering, #2610.
  • If a comment on a method is inherited from a parent class, and the child class does not use an @param tag from the parent, TypeDoc will no longer warn about the @param tag.

v0.26.1

Features

... (truncated)

Changelog

Sourced from typedoc's changelog.

v0.26.4 (2024-07-10)

Bug Fixes

  • The page navigation sidebar no longer incorrectly includes re-exports if the same member is exported with multiple names #2625.
  • Page navigation now ensures the current page is visible when the page is first loaded, #2626.
  • If a relative linked image is referenced multiple times, TypeDoc will no longer sometimes produce invalid links to the image #2627.
  • @link tags will now be validated in referenced markdown documents, #2629.
  • @link tags are now resolved in project documents, #2629.
  • HTML/JSON output generated by TypeDoc now contains a trailing newline, #2632.
  • TypeDoc now correctly handles markdown documents with CRLF line endings, #2628.
  • @hidden is now properly applied when placed in a function implementation comment, #2634.
  • Comments on re-exports are now rendered.

Thanks!

v0.26.3 (2024-06-28)

Features

  • "On This Page" navigation now includes the page groups in collapsible sections, #2616.

Bug Fixes

  • mailto: links are no longer incorrectly recognized as relative paths, #2613.
  • Added @since to the default list of recognized tags, #2614.
  • Relative paths to directories will no longer cause the directory to be copied into the media directory, #2617.

v0.26.2 (2024-06-24)

Features

  • Added a --suppressCommentWarningsInDeclarationFiles option to disable warnings from parsing comments in declaration files, #2611.
  • Improved comment discovery to more closely match TypeScript's discovery when getting comments for members of interfaces/classes, #2084, #2545.

Bug Fixes

  • The text non-highlighted language no longer causes warnings when rendering, #2610.
  • If a comment on a method is inherited from a parent class, and the child class does not use an @param tag from the parent, TypeDoc will no longer warn about the @param tag.

v0.26.1 (2024-06-22)

Features

... (truncated)

Commits
  • 9426642 Update changelog for release
  • 03bb21f Release 0.26.4
  • e2051dc Add a test for CRLF line endings
  • 21cf5ae chore: lint
  • ef0f26e fix: frontmatter parsing in windows (CLRF)
  • f0f0106 Add trailing newline to generated doc files
  • 32fff2b Fix @hidden on function implementations
  • 1f58143 Correctly handle @link in documents
  • d04ea32 Fix media links if referenced multiple times
  • dae2527 Fix page navigation sidebar with re-exports
  • Additional commits viewable in compare view

Updates typescript from 5.4.5 to 5.5.3

Release notes

Sourced from typescript's releases.

TypeScript 5.5.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

... (truncated)

Commits
  • f0e9921 Bump version to 5.5.3 and LKG
  • 738bd60 Cherry-pick #58966 to release-5.5 (#59002)
  • ce2e60e Update LKG
  • f3b21a2 🤖 Pick PR #58931 (Defer creation of barebonesLibSourc...) into release-5.5 (#...
  • 7b1620b 🤖 Pick PR #58811 (fix(58801): "Move to file" on globa...) into release-5.5 (#...
  • 5367ae1 Bump version to 5.5.2 and LKG
  • 02132e5 🤖 Pick PR #58895 (Fix global when typescript.js loade...) into release-5.5 (#...
  • 45b1e3c 🤖 Pick PR #58872 (Fix declaration emit crash) into release-5.5 (#58874)
  • 17933ee 🤖 Pick PR #58810 (Fixed declaration emit issue relate...) into release-5.5 (#...
  • 552b07e 🤖 Pick PR #58786 (Fixed declaration emit crash relate...) into release-5.5 (#...
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@algorandfoundation/tealscript](https://github.com/algorandfoundation/TEALScript) | `0.90.3` | `0.97.0` |
| [algosdk](https://github.com/algorand/js-algorand-sdk) | `2.7.0` | `2.8.0` |
| [dotenv-cli](https://github.com/entropitor/dotenv-cli) | `7.4.1` | `7.4.2` |
| [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.3.3` |
| [rollup](https://github.com/rollup/rollup) | `4.14.3` | `4.18.1` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.1.2` | `29.2.2` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.25.13` | `0.26.4` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.4.5` | `5.5.3` |



Updates `@algorandfoundation/tealscript` from 0.90.3 to 0.97.0
- [Release notes](https://github.com/algorandfoundation/TEALScript/releases)
- [Commits](algorandfoundation/TEALScript@0.90.3...0.97.0)

Updates `algosdk` from 2.7.0 to 2.8.0
- [Release notes](https://github.com/algorand/js-algorand-sdk/releases)
- [Changelog](https://github.com/algorand/js-algorand-sdk/blob/develop/CHANGELOG.md)
- [Commits](algorand/js-algorand-sdk@v2.7.0...v2.8.0)

Updates `dotenv-cli` from 7.4.1 to 7.4.2
- [Release notes](https://github.com/entropitor/dotenv-cli/releases)
- [Commits](entropitor/dotenv-cli@v7.4.1...v7.4.2)

Updates `prettier` from 3.2.5 to 3.3.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.2.5...3.3.3)

Updates `rollup` from 4.14.3 to 4.18.1
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.14.3...v4.18.1)

Updates `ts-jest` from 29.1.2 to 29.2.2
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.1.2...v29.2.2)

Updates `typedoc` from 0.25.13 to 0.26.4
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.25.13...v0.26.4)

Updates `typescript` from 5.4.5 to 5.5.3
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.4.5...v5.5.3)

---
updated-dependencies:
- dependency-name: "@algorandfoundation/tealscript"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: algosdk
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: dotenv-cli
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: rollup
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: ts-jest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: typedoc
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 15, 2024
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.

0 participants