Thanks to visit codestin.com
Credit goes to github.com

Skip to content

chore(deps): update all non-major dependencies #23

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 29, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@stacksjs/cli (source) ^0.70.21 -> ^0.70.23 age adoption passing confidence
@stacksjs/logging (source) ^0.70.21 -> ^0.70.23 age adoption passing confidence
@stacksjs/storage (source) ^0.70.21 -> ^0.70.23 age adoption passing confidence
@types/bun (source) ^1.2.8 -> ^1.2.18 age adoption passing confidence
bumpp ^10.1.0 -> ^10.2.0 age adoption passing confidence
bun-plugin-dtsx (source) ^0.21.9 -> ^0.21.12 age adoption passing confidence
bunfig ^0.8.2 -> ^0.10.1 age adoption passing confidence
changelogen ^0.6.1 -> ^0.6.2 age adoption passing confidence
dynamodb-toolbox (source) ^2.0.0 -> ^2.6.5 age adoption passing confidence
lint-staged ^15.5.0 -> ^15.5.2 age adoption passing confidence
simple-git-hooks ^2.12.1 -> ^2.13.0 age adoption passing confidence
typescript (source) ^5.8.2 -> ^5.8.3 age adoption passing confidence

Release Notes

stacksjs/stacks (@​stacksjs/cli)

v0.70.23

Compare Source

What's Changed

Full Changelog: stacksjs/stacks@v0.70.22...v0.70.23

v0.70.22

Compare Source

Full Changelog: stacksjs/stacks@v0.70.21...v0.70.22

antfu-collective/bumpp (bumpp)

v10.2.0

Compare Source

   🚀 Features
    View changes on GitHub

v10.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
stacksjs/bunfig (bunfig)

v0.10.1

Compare Source

   🚀 Features
    View changes on GitHub

v0.10.0

Compare Source

compare changes

🚀 Enhancements
  • Add home directory support (c5acd79)
🏡 Chore
❤️ Contributors

v0.9.0

Compare Source

compare changes

🚀 Enhancements
❤️ Contributors

v0.8.5

Compare Source

compare changes

🚀 Enhancements
  • Add deep env variable support (807d946)
🏡 Chore
❤️ Contributors

v0.8.4

Compare Source

compare changes

🏡 Chore
❤️ Contributors

v0.8.3

Compare Source

compare changes

🏡 Chore
❤️ Contributors
unjs/changelogen (changelogen)

v0.6.2

Compare Source

compare changes

🩹 Fixes
  • cli: Accept hideAuthorEmail arg (#​275)
📖 Documentation
  • Add note about version number interpretation (#​272)
🌊 Types
  • config.types accept boolean value (#​278)
🏡 Chore
❤️ Contributors
dynamodb-toolbox/dynamodb-toolbox (dynamodb-toolbox)

v2.6.5: 🌈

Compare Source

Changes

v2.6.4: 🌈

Compare Source

Changes

v2.6.3: 🌈

Compare Source

Changes

  • feat: 🏷️ add type completition and add strict matching after the schema path @​jdbu2002 (#​1164)

v2.6.2: 🌈

Compare Source

Changes

v2.6.1: 🌈

Compare Source

Changes

v2.6.0: 🌈

Compare Source

Changes

v2.5.0: 🌈

Compare Source

Changes

🌈 QUITE A BIG RELEASE ✨

This release introduces Table Registries (bundling Tables, Entities and AccessPatterns together).

It also enables providing metadata to Tables, Entities and AccessPatterns, which is useful for human an AI agents.

Last but not least, it introduces Databases (grouping several Registries) along with two initial Database actions:

  • The MCPToolkit action to connect DynamoDB to MCP Servers 🥳🤖
  • The Synchronizer action to synchronize the db to DynamoDB-Toolshack (in replacement of the Table action)

⚠️ SMALL BREAKING CHANGE HERE ⚠️

If you used the Table Synchronizer, it has now been removed in favor of the Database Synchronizer instead

v2.4.4: 🌈

Compare Source

Changes

v2.4.3: 🌈

Compare Source

Changes

v2.4.2: 🌈

Compare Source

Changes

v2.4.1: 🌈

Compare Source

Changes

v2.4.0: 🌈

Compare Source

Changes

v2.3.0: 🌈

Compare Source

Changes

v2.2.2: 🌈

Compare Source

Changes

v2.2.1: 🌈

Compare Source

Changes

v2.2.0: 🌈

Compare Source

Changes

⚠️ SMALL BREAKING CHANGE HERE ⚠️

The methods of the ConditionParser and PathParser have been updated. ConditionParser and PathParser are now stateless classes and better handle polymorphism.

Query, Scan and BatchGet table commands attributes options can now contain paths from distinct entities.

Please compare the v1 docs and the v2 docs for more details.

BEFORE:

const {
  ConditionExpression,
  ExpressionAttributeNames,
  ExpressionAttributeValues
} = PokemonEntity.build(ConditionParser)
  .parse({ attr: 'level', gte: 50 })
  .toCommandOptions()

const { ProjectionExpression, ExpressionAttributeNames } =
  PokemonEntity.build(PathParser)
    .parse(['name', 'level'])
    .toCommandOptions()

AFTER:

const {
  ConditionExpression,
  ExpressionAttributeNames,
  ExpressionAttributeValues
} = PokemonEntity.build(ConditionParser).parse({
  attr: 'level',
  gte: 50
})

const { ProjectionExpression, ExpressionAttributeNames } =
  PokemonEntity.build(PathParser).parse(['name', 'level'])

v2.1.2: 🌈

Compare Source

Changes

v2.1.1: 🌈

Compare Source

Changes

⚠️ SMALL BREAKING CHANGE HERE ⚠️

The UpdateAttributesCommand now does a complete override on deep any attribute values, which is closer to what it was intended to:

BEFORE:

const command = PokemonEntity.build(UpdateAttributesCommand)
  .item({ anyAttr: { foo: "bar" } })
  .params()
// => SET anyAttr.foo = 'bar'

AFTER:

const command = PokemonEntity.build(UpdateAttributesCommand)
  .item({ anyAttr: { foo: "bar" } })
  .params()
// => SET anyAttr = { foo: 'bar' }

v2.1.0: 🌈

Compare Source

Changes

lint-staged/lint-staged (lint-staged)

v15.5.2

Compare Source

Patch Changes

v15.5.1

Compare Source

Patch Changes
  • #​1533 5d53534 Thanks @​iiroj! - Improve listing of staged files so that lint-staged doesn't crash when encountering an uninitialized submodule. This should result in less errors like:

    ✖ Failed to get staged files!
    
toplenboren/simple-git-hooks (simple-git-hooks)

v2.13.0

Compare Source

Minor Changes
microsoft/TypeScript (typescript)

v5.8.3

Compare Source


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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

@renovate renovate bot changed the title chore(deps): update all non-major dependencies to ^0.70.22 chore(deps): update all non-major dependencies to ^0.70.23 Apr 4, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 586143a to 345da82 Compare April 5, 2025 00:49
@renovate renovate bot changed the title chore(deps): update all non-major dependencies to ^0.70.23 chore(deps): update all non-major dependencies Apr 5, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 58b2384 to eaaac0a Compare April 15, 2025 17:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from a550a26 to f4bff54 Compare April 23, 2025 18:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from a1f03ac to e33fd6a Compare May 2, 2025 13:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from b484278 to 87c6d6c Compare May 11, 2025 00:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6bd027d to 6650178 Compare May 16, 2025 01:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 9ca60ba to 63a29a3 Compare May 25, 2025 12:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6b54419 to b2250c5 Compare June 1, 2025 22:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 09d49a5 to fff147b Compare June 18, 2025 21:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from bf577af to eba13c4 Compare June 21, 2025 19:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f52e66e to 01b6106 Compare July 6, 2025 11:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 01b6106 to df1e0da Compare July 16, 2025 01:06
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