Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

chore(deps): bump the cargo-dependencies group across 1 directory with 10 updates#17

Merged
bowlofarugula merged 1 commit into
mainfrom
dependabot/cargo/cargo-dependencies-5cc22bdab6
Jul 18, 2025
Merged

chore(deps): bump the cargo-dependencies group across 1 directory with 10 updates#17
bowlofarugula merged 1 commit into
mainfrom
dependabot/cargo/cargo-dependencies-5cc22bdab6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 14, 2025

Copy link
Copy Markdown

Bumps the cargo-dependencies group with 10 updates in the / directory:

Package From To
toml 0.8.23 0.9.2
toml_edit 0.22.27 0.23.1
thiserror 1.0.69 2.0.12
which 6.0.3 8.0.0
notify 6.1.1 8.1.0
cargo_metadata 0.18.1 0.21.0
dirs 5.0.1 6.0.0
indicatif 0.17.11 0.18.0
console 0.15.11 0.16.0
zip 2.4.2 4.3.0

Updates toml from 0.8.23 to 0.9.2

Commits

Updates toml_edit from 0.22.27 to 0.23.1

Commits

Updates thiserror from 1.0.69 to 2.0.12

Release notes

Sourced from thiserror's releases.

2.0.12

  • Prevent elidable_lifetime_names pedantic clippy lint in generated impl (#413)

2.0.11

2.0.10

  • Support errors containing a generic type parameter's associated type in a field (#408)

2.0.9

  • Work around missing_inline_in_public_items clippy restriction being triggered in macro-generated code (#404)

2.0.8

  • Improve support for macro-generated derive(Error) call sites (#399)

2.0.7

  • Work around conflict with #[deny(clippy::allow_attributes)] (#397, thanks @​zertosh)

2.0.6

  • Suppress deprecation warning on generated From impls (#396)

2.0.5

  • Prevent deprecation warning on generated impl for deprecated type (#394)

2.0.4

  • Eliminate needless_lifetimes clippy lint in generated From impls (#391, thanks @​matt-phylum)

2.0.3

  • Support the same Path field being repeated in both Debug and Display representation in error message (#383)
  • Improve error message when a format trait used in error message is not implemented by some field (#384)

2.0.2

  • Fix hang on invalid input inside #[error(...)] attribute (#382)

2.0.1

  • Support errors that contain a dynamically sized final field (#375)
  • Improve inference of trait bounds for fields that are interpolated multiple times in an error message (#377)

2.0.0

Breaking changes

  • Referencing keyword-named fields by a raw identifier like {r#type} inside a format string is no longer accepted; simply use the unraw name like {type} (#347)

    This aligns thiserror with the standard library's formatting macros, which gained support for implicit argument capture later than the release of this feature in thiserror 1.x.

    #[derive(Error, Debug)]
    #[error("... {type} ...")]  // Before: {r#type}
    pub struct Error {
        pub r#type: Type,

... (truncated)

Commits
  • 95a5126 Release 2.0.12
  • 76490f7 Merge pull request #413 from dtolnay/elidablelifetime
  • 9f27b76 Ignore elidable_lifetime_names pedantic clippy lint
  • daf2a6f Resolve some elidable_lifetime_names pedantic clippy lint
  • 5f07160 Point standard library links to stable
  • 6706a51 Convert html links to intra-doc links
  • 2706873 More precise gitignore patterns
  • 70bc20d Remove **/*.rs.bk from project-specific gitignore
  • 0f532e3 Release 2.0.11
  • 3d15543 Merge pull request #410 from dtolnay/testnostd
  • Additional commits viewable in compare view

Updates which from 6.0.3 to 8.0.0

Release notes

Sourced from which's releases.

8.0.0

What's Changed

  • Add new Sys trait to allow abstracting over the underlying filesystem. Particularly useful for wasm32-unknown-unknown targets. Thanks @​dsherret for this contribution to which!
  • Add more debug level tracing for otherwise silent I/O errors.
  • Call the NonFatalHandler in more places to catch previously ignored I/O errors.
  • Remove use of the either dependency.

New Contributors

7.0.3

  • Update rustix to version 1.0. Congrats to rustix on this milestone, and thanks @​mhils for this contribution to which!

7.0.2

  • Don't return paths containing the single dot . reference to the current directory, even if the original request was given in terms of the current directory. Thanks @​jakobhellermann for this contribution!

7.0.1

What's Changed

New Contributors

Full Changelog: harryfei/which-rs@7.0.0...7.0.1

7.0.0

  • Add support to WhichConfig for a user provided closure that will be called whenever a nonfatal error occurs. This technically breaks a few APIs due to the need to add more generics and lifetimes. Most code will compile without changes.
Changelog

Sourced from which's changelog.

8.0.0

  • Add new Sys trait to allow abstracting over the underlying filesystem. Particularly useful for wasm32-unknown-unknown targets. Thanks @​dsherret for this contribution to which!
  • Add more debug level tracing for otherwise silent I/O errors.
  • Call the NonFatalHandler in more places to catch previously ignored I/O errors.
  • Remove use of the either dependency.

7.0.3

  • Update rustix to version 1.0. Congrats to rustix on this milestone, and thanks @​mhils for this contribution to which!

7.0.2

  • Don't return paths containing the single dot . reference to the current directory, even if the original request was given in terms of the current directory. Thanks @​jakobhellermann for this contribution!

7.0.1

  • Get user home directory from env_home instead of home. Thanks @​micolous for this contribution!
  • If home directory is unavailable, do not expand the tilde to an empty string. Leave it as is.

7.0.0

  • Add support to WhichConfig for a user provided closure that will be called whenever a nonfatal error occurs. This technically breaks a few APIs due to the need to add more generics and lifetimes. Most code will compile without changes.
Commits
  • adac2cd bump version, update changelog
  • 84e152e reduce sys::Sys requirements, add some tracing for otherwise silent errors (#...
  • a0a6daf feat: add Sys trait for swapping out system (#109)
  • eef1998 Add actively maintained badge
  • 1d145de release version 7.0.3
  • f5e5292 fix unrelated lint error
  • 4dcefa6 bump rustix
  • bd86881 bump version, add to changelog
  • cf37760 don't run relative dot test on macos
  • f2c4bd6 update target to new name for wasm32-wasip1
  • Additional commits viewable in compare view

Updates notify from 6.1.1 to 8.1.0

Release notes

Sourced from notify's releases.

notify v8.1.0

What's Changed

New Contributors

Full Changelog: notify-rs/notify@notify-8.0.0...notify-8.1.0

notify-8.0.0

notify 8.0.0 (2025-01-10)

  • CHANGE: update notify-types to version 2.0.0
  • CHANGE: raise MSRV to 1.77 breaking
  • FEATURE: add config option to disable following symbolic links #635
  • FIX: unaligned access to FILE_NOTIFY_INFORMATION #647 breaking

#635: notify-rs/notify#635 #647: notify-rs/notify#647

notify-types 2.0.0 (2025-01-10)

  • CHANGE: replace instant crate with web-time #652 breaking
  • CHANGE: the web-time dependency is now behind the web-time feature breaking

... (truncated)

Changelog

Sourced from notify's changelog.

notify 8.1.0 (2025-07-03)

  • FEATURE: added support for the flume crate
  • FIX: kqueue-backend: do not double unwatch top-level directory when recursively unwatching #683
  • FIX: Return the crate error PathNotFound instead bubbling up the std::io error #685
  • FIX: fix server hangs when trashing folders on Windows #674

debouncer-full 0.6.0 (unreleased)

  • FEATURE: allow FileIdCache trait implementations to choose ownership of the returned file-ids
  • FEATURE: added support for the flume crate

debouncer-mini 0.7.0 (unreleased)

  • FEATURE: added support for the flume crate

file-id 0.2.3 (unreleased)

  • CHANGE: implement AsRef<FileId> for FileId

notify 8.0.0 (2025-01-10)

  • CHANGE: update notify-types to version 2.0.0
  • CHANGE: raise MSRV to 1.77 breaking
  • FEATURE: add config option to disable following symbolic links #635
  • FIX: unaligned access to FILE_NOTIFY_INFORMATION #647 breaking

#635: notify-rs/notify#635 #647: notify-rs/notify#647

notify-types 2.0.0 (2025-01-10)

  • CHANGE: replace instant crate with web-time #652 breaking
  • CHANGE: the web-time dependency is now behind the web-time feature breaking

#652: notify-rs/notify#652

debouncer-mini 0.6.0 (2025-01-10)

  • CHANGE: update notify to version 8.0.0

debouncer-full 0.5.0 (2025-01-10)

  • CHANGE: update notify to version 8.0.0
  • CHANGE: pass web-time feature to notify-types

notify-types 1.0.1 (2024-12-17)

  • FIX: Event::kind serialization with serialization-compat-6 feature #660

#660: notify-rs/notify#660

file-id 0.2.2 (2024-10-25)

... (truncated)

Commits
  • 04473de chore: Prepare 8.1.0 release (#697)
  • 12a026d fix: make PathsMut::commit consuming (#695)
  • d824023 feat: introduce Watcher::paths_mut for adding/removing paths in batch (#692)
  • b984134 Do not clone paths while walking dirs (#693)
  • 416ba82 chore: Use MSRV for Clippy and rustfmt (#694)
  • 10ce3ef Update windows-sys to v0.60 (#691)
  • 850833f Remove filetime dependency (#690)
  • 65ea4b7 windows: Fix server hangs under some circumstance (#674)
  • f5c6814 Make INotifyWatcher return the native PathNotFound error when watchin… (#686)
  • df83fd2 chore(ci): Use stable toolchain for rustfmt/clippy (#689)
  • Additional commits viewable in compare view

Updates cargo_metadata from 0.18.1 to 0.21.0

Commits
  • 70018a8 Update main.yml
  • 523cfbe bump msrv
  • b1a61d3 bump version
  • 0f300d5 Merge pull request #295 from smoelius/update-cargo-util-schemas
  • 4b28226 Merge pull request #300 from joeferner/fix-node-dep-name
  • bcd2373 fix clippy errors
  • 73aaebb fixes "package name cannot be empty" under "resolve/nodes/deps/name"
  • f9a67c2 Merge pull request #298 from kornelski/result
  • 289e117 Make Result alias wildcard-import-proof
  • a9147a6 Merge pull request #297 from ranger-ross/build-dir-unstable-support
  • Additional commits viewable in compare view

Updates dirs from 5.0.1 to 6.0.0

Commits

Updates indicatif from 0.17.11 to 0.18.0

Release notes

Sourced from indicatif's releases.

0.18.0

Unfortunately 0.17.12 had to be yanked because the console upgrade was a semver-incompatible change. Rerelease as 0.18.0 instead.

What's Changed

0.17.12

What's Changed

Commits

Updates console from 0.15.11 to 0.16.0

Release notes

Sourced from console's releases.

0.16.0

What's Changed

The 0.15.12 release was yanked after it turned out to be semver-incompatible with existing usage by several of the most popular dependent crates, because it introduced a std feature -- and those crates used default-features = false but relied on the std-guarded features.

The 0.16.0 API should be semver-compatible with the 0.15.x API except for the need for the std feature.

Refer to the 0.15.12 release notes for more information.

0.15.12

What's Changed

Commits
  • bda6a6e Add FUNDING metadata
  • 87ace80 Remove authors from Cargo metadata (per RFC 3052)
  • 6e30bfd Bump version to 0.16.0
  • da63dcd Apply fixes from clippy 1.88
  • 863e217 Bump version to 0.15.12 (#262)
  • 06df64c Update license URL
  • 03025e0 Fix CI badge
  • a9492df Fix clippy issues
  • 18760c9 Add features to work with no_std, and with alloc in no_std
  • f628475 Update windows-sys requirement from 0.59 to 0.60
  • Additional commits viewable in compare view

Updates zip from 2.4.2 to 4.3.0

Release notes

Sourced from zip's releases.

v4.3.0

🚀 Features

  • Add support for PPMd (#370)

v4.2.0

🚀 Features

  • Write ZIP file to stream (#246)

v4.1.0

🚀 Features

  • Add has_overlapping_files method

v4.0.0

🐛 Bug Fixes

  • Allow extraction of Zip64 where "Version needed to extract" is higher than "Version made by" (#356)

⚙️ Miscellaneous Tasks

  • Revert nt-time upgrade (would increase MSRV)
  • Revert constant_time_eq update (would increase MSRV)
  • Update fully-qualified names of liblzma imports

v3.0.0

🐛 Bug Fixes

  • return correct offset in SeekableTake::seek (#342)
  • When only zopfli is available, decompression of deflate should not be possible (#348)
  • Specify flate2 dependency of the deflate-flate2 feature. (#345)

⚙️ Miscellaneous Tasks

  • drop unused crossbeam-utils dependency (#339)
  • fix typo
  • remove deflate-flate2 dependency on specific backend
  • [breaking] Drop deprecated deflate-miniz feature flag (#351)

v2.6.1

🐛 Bug Fixes

  • avoid scanning through all local file headers while opening an archive (#281)

v2.6.0

🚀 Features

  • Add support for time::PrimitiveDateTime (#322)
  • Add jiff integration (#323)

... (truncated)

Changelog

Sourced from zip's changelog.

4.3.0 - 2025-07-09

🚀 Features

  • Add support for PPMd (#370)

4.2.0 - 2025-06-21

🚀 Features

  • Write ZIP file to stream (#246)

4.1.0 - 2025-06-14

🚀 Features

  • Add has_overlapping_files method

4.0.0 - 2025-05-21

🐛 Bug Fixes

  • Allow extraction of Zip64 where "Version needed to extract" is higher than "Version made by" (#356)

⚙️ Miscellaneous Tasks

  • Revert nt-time upgrade (would increase MSRV)
  • Revert constant_time_eq update (would increase MSRV)
  • Update fully-qualified names of liblzma imports

3.0.0 - 2025-05-14

🐛 Bug Fixes

  • return correct offset in SeekableTake::seek (#342)
  • When only zopfli is available, decompression of deflate should not be possible (#348)
  • Specify flate2 dependency of the deflate-flate2 feature. (#345)

⚙️ Miscellaneous Tasks

  • drop unused crossbeam-utils dependency (#339)
  • fix typo
  • remove deflate-flate2 dependency on specific backend
  • [breaking] Drop deprecated deflate-miniz feature flag (#351)

2.6.1 - 2025-04-03

🐛 Bug Fixes

  • avoid scanning through all local file headers while opening an archive (#281)

... (truncated)

Commits

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

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jul 14, 2025
@dependabot
dependabot Bot force-pushed the dependabot/cargo/cargo-dependencies-5cc22bdab6 branch 2 times, most recently from af2c103 to dd3ae2f Compare July 15, 2025 19:14
…h 10 updates

Bumps the cargo-dependencies group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [toml](https://github.com/toml-rs/toml) | `0.8.23` | `0.9.2` |
| [toml_edit](https://github.com/toml-rs/toml) | `0.22.27` | `0.23.1` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.69` | `2.0.12` |
| [which](https://github.com/harryfei/which-rs) | `6.0.3` | `8.0.0` |
| [notify](https://github.com/notify-rs/notify) | `6.1.1` | `8.1.0` |
| [cargo_metadata](https://github.com/oli-obk/cargo_metadata) | `0.18.1` | `0.21.0` |
| [dirs](https://github.com/soc/dirs-rs) | `5.0.1` | `6.0.0` |
| [indicatif](https://github.com/console-rs/indicatif) | `0.17.11` | `0.18.0` |
| [console](https://github.com/console-rs/console) | `0.15.11` | `0.16.0` |
| [zip](https://github.com/zip-rs/zip2) | `2.4.2` | `4.3.0` |



Updates `toml` from 0.8.23 to 0.9.2
- [Commits](toml-rs/toml@toml-v0.8.23...toml-v0.9.2)

Updates `toml_edit` from 0.22.27 to 0.23.1
- [Commits](toml-rs/toml@v0.22.27...v0.23.1)

Updates `thiserror` from 1.0.69 to 2.0.12
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.69...2.0.12)

Updates `which` from 6.0.3 to 8.0.0
- [Release notes](https://github.com/harryfei/which-rs/releases)
- [Changelog](https://github.com/harryfei/which-rs/blob/master/CHANGELOG.md)
- [Commits](harryfei/which-rs@6.0.3...8.0.0)

Updates `notify` from 6.1.1 to 8.1.0
- [Release notes](https://github.com/notify-rs/notify/releases)
- [Changelog](https://github.com/notify-rs/notify/blob/main/CHANGELOG.md)
- [Commits](notify-rs/notify@notify-6.1.1...notify-8.1.0)

Updates `cargo_metadata` from 0.18.1 to 0.21.0
- [Release notes](https://github.com/oli-obk/cargo_metadata/releases)
- [Changelog](https://github.com/oli-obk/cargo_metadata/blob/main/CHANGELOG.md)
- [Commits](oli-obk/cargo_metadata@0.18.1...0.21.0)

Updates `dirs` from 5.0.1 to 6.0.0
- [Commits](https://github.com/soc/dirs-rs/commits)

Updates `indicatif` from 0.17.11 to 0.18.0
- [Release notes](https://github.com/console-rs/indicatif/releases)
- [Commits](console-rs/indicatif@0.17.11...0.18.0)

Updates `console` from 0.15.11 to 0.16.0
- [Release notes](https://github.com/console-rs/console/releases)
- [Changelog](https://github.com/console-rs/console/blob/main/CHANGELOG.md)
- [Commits](console-rs/console@0.15.11...0.16.0)

Updates `zip` from 2.4.2 to 4.3.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](zip-rs/zip2@v2.4.2...v4.3.0)

---
updated-dependencies:
- dependency-name: toml
  dependency-version: 0.9.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: toml_edit
  dependency-version: 0.23.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: thiserror
  dependency-version: 2.0.12
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
- dependency-name: which
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
- dependency-name: notify
  dependency-version: 8.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
- dependency-name: cargo_metadata
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: dirs
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
- dependency-name: indicatif
  dependency-version: 0.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: console
  dependency-version: 0.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: zip
  dependency-version: 4.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/cargo/cargo-dependencies-5cc22bdab6 branch from dd3ae2f to 7a71fb4 Compare July 18, 2025 04:32
@bowlofarugula
bowlofarugula merged commit 6fd4fa5 into main Jul 18, 2025
6 checks passed
@dependabot
dependabot Bot deleted the dependabot/cargo/cargo-dependencies-5cc22bdab6 branch July 18, 2025 16:39
This was referenced Jul 23, 2025
bowlofarugula added a commit that referenced this pull request Jul 24, 2025
## 🚀 Release: Release: CLI v0.0.25

This PR prepares the release of **cli v0.0.25**.

### 📋 Checklist

- [ ] Version bumped correctly
- [ ] Changelog updated
- [ ] All tests passing
- [ ] Documentation updated if needed

### 📝 Release Notes

## [CLI] 0.0.25 - 2025-07-23

### Changes

- Fix additional nightly references (#4)
- fix/prepare-release-access-bug
- refactor: ftl-core -> ftl-sdk
- refactor: name
- refactor: use wasmcp and remove SDKs and templates (#13)
- release: v0.0.17
- release: v0.0.20 (#16)
- release: v0.0.21 (#20)
- ✨ feat: Add JS tool support
- ✨ feat: Add app commands and other improvements (#27)
- ✨ feat: Add auto release workflows (#33)
- ✨ feat: Add ftl login and related commands. (#19)
- ✨ feat: Add gateway component (#1)
- ✨ feat: Add parallel builds and pushes (#22)
- ✨ feat: Allow updating the CLI. Adds version check functionality (#12)
- ✨ feat: Big change to component model (#9)
- ✨ feat: Clean up dead code and add automatic spin dependency
management (#7)
- ✨ feat: Exports working
- ✨ feat: Fix syntax incompatibilities with stable toolchain (#6)
- ✨ feat: Integrate ftl-mcp code into this repo. (#29)
- ✨ feat: Replace wasmcp with ftl-mcp (#15)
- ✨ feat: Speedup installs in gha (#32)
- ✨ feat: TS support
- ✨ feat: Update backend API calls and add tests. (#23)
- ✨ feat: gateway/mcp -> mcp
- ✨ feat: js wip
- ✨ feat: release
- ✨ feat: update release workflow to stable (#3)
- ✨ feat: use stable rust toolchain (#2)
- ✨ feat: wip get deploys working (#21)
- ✨ feat: working js deploys
- 🐛 fix: Deploys (#24)
- 🐛 fix: Fix rust tool unit tests (#8)
- 🐛 fix: GHA access for creating PRs in prepare-release.yml (#36)
- 🐛 fix: OpenAPI spec (#28)
- 🐛 fix: README path
- 🐛 fix: Release workflow (#31)
- 🐛 fix: Use new working backend for deploys (#26)
- 🐛 fix: allocator
- 🐛 fix: audit
- 🐛 fix: ci
- 🐛 fix: clippy
- 🐛 fix: clippy and old ftl_sdk refs
- 🐛 fix: deps
- 🐛 fix: finish refactor
- 🐛 fix: fmt
- 🐛 fix: fmt and lint
- 🐛 fix: formatting
- 🐛 fix: formatting and nightly
- 🐛 fix: js tests
- 🐛 fix: links
- 🐛 fix: old ftl_sdk ref
- 🐛 fix: pre-release lockfile handling
- 🐛 fix: prepare-release label handling (#34)
- 🐛 fix: prepeare-release git push (#35)
- 🐛 fix: release
- 🐛 fix: rm macos test in ci.yml
- 🐛 fix: spin.toml location for JS tools
- 🐛 fix: template dependency versions
- 🐛 fix: ts tests
- 🐛 fix: version
- 🐛 fix: versions
- 📚 docs: Readme clarification
- 📚 docs: Readme diagram clarification
- 📚 docs: Update (#18)
- 📚 docs: Update diagrams
- 📚 docs: Update diagrams and bump Cargo.toml version
- 📚 docs: clarification
- 📚 docs: cleanup
- 📚 docs: diagram
- 📚 docs: examples
- 📚 docs: fix commands
- 📚 docs: fix diagram
- 📚 docs: nit
- 📚 docs: nit readme
- 📚 docs: readme nit
- 📚 docs: toolkits
- 📚 docs: update
- 🔧 chore(deps): bump the cargo-dependencies group across 1 directory
with 10 updates (#17)
- 🔧 chore: rm unused file

### Contributors

- Corey Ryan
- Ian McDonald
- bowlofarugula
- dependabot[bot]

### 🔄 Release Process

1. Review and merge this PR
2. The release will be tagged automatically
3. The release workflow will then:
   - Build and publish artifacts
   - Create GitHub release
   - Publish to package registries

### ⚠️ Important

- Ensure all CI checks pass before merging
- Review the changelog for accuracy
- Verify version numbers are correct
- **DO NOT** manually create the tag - it will be created automatically
when merged

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
@bowlofarugula bowlofarugula mentioned this pull request Jul 24, 2025
4 tasks
bowlofarugula added a commit that referenced this pull request Jul 24, 2025
## release: mcp-authorizer v0.0.7

This PR prepares the release of **mcp-authorizer v0.0.7**.

### 📋 Checklist

- [ ] Version bumped correctly
- [ ] Changelog updated
- [ ] All tests passing
- [ ] Documentation updated if needed

### 📝 Release Notes

## [mcp-authorizer] 0.0.7 - 2025-07-24

### Changes

- Fix additional nightly references (#4)
- Release: CLI v0.0.25 (#38)
- fix/prepare-release-access-bug
- refactor: ftl-core -> ftl-sdk
- refactor: name
- refactor: use wasmcp and remove SDKs and templates (#13)
- release: CLI v0.0.26 (#40)
- release: CLI v0.0.27 (#41)
- release: CLI v0.0.28 (#42)
- release: CLI v0.0.29 (#43)
- release: CLI v0.0.30 (#44)
- release: v0.0.17
- release: v0.0.20 (#16)
- release: v0.0.21 (#20)
- ✨ feat: Add JS tool support
- ✨ feat: Add app commands and other improvements (#27)
- ✨ feat: Add auto release workflows (#33)
- ✨ feat: Add ftl login and related commands. (#19)
- ✨ feat: Add gateway component (#1)
- ✨ feat: Add parallel builds and pushes (#22)
- ✨ feat: Allow updating the CLI. Adds version check functionality (#12)
- ✨ feat: Big change to component model (#9)
- ✨ feat: Clean up dead code and add automatic spin dependency
management (#7)
- ✨ feat: Exports working
- ✨ feat: Fix syntax incompatibilities with stable toolchain (#6)
- ✨ feat: Integrate ftl-mcp code into this repo. (#29)
- ✨ feat: Replace wasmcp with ftl-mcp (#15)
- ✨ feat: Speedup installs in gha (#32)
- ✨ feat: TS support
- ✨ feat: Update backend API calls and add tests. (#23)
- ✨ feat: gateway/mcp -> mcp
- ✨ feat: js wip
- ✨ feat: prepare-release nit
- ✨ feat: release
- ✨ feat: update release workflow to stable (#3)
- ✨ feat: use stable rust toolchain (#2)
- ✨ feat: wip get deploys working (#21)
- ✨ feat: working js deploys
- 🐛 fix: CLI releases
- 🐛 fix: Deploys (#24)
- 🐛 fix: Fix rust tool unit tests (#8)
- 🐛 fix: GHA access for creating PRs in prepare-release.yml (#36)
- 🐛 fix: OpenAPI spec (#28)
- 🐛 fix: README path
- 🐛 fix: Release workflow (#31)
- 🐛 fix: Use new working backend for deploys (#26)
- 🐛 fix: allocator
- 🐛 fix: audit
- 🐛 fix: auto-tag-release
- 🐛 fix: ci
- 🐛 fix: clippy
- 🐛 fix: clippy and old ftl_sdk refs
- 🐛 fix: component releases
- 🐛 fix: deps
- 🐛 fix: finish refactor
- 🐛 fix: fmt
- 🐛 fix: fmt and lint
- 🐛 fix: formatting
- 🐛 fix: formatting and nightly
- 🐛 fix: install.sh
- 🐛 fix: js tests
- 🐛 fix: links
- 🐛 fix: more gha permissions
- 🐛 fix: names
- 🐛 fix: old ftl_sdk ref
- 🐛 fix: pre-release lockfile handling
- 🐛 fix: prepare-release label handling (#34)
- 🐛 fix: prepeare-release git push (#35)
- 🐛 fix: release
- 🐛 fix: release-cli
- 🐛 fix: rm macos test in ci.yml
- 🐛 fix: spin.toml location for JS tools
- 🐛 fix: template dependency versions
- 🐛 fix: ts tests
- 🐛 fix: version
- 🐛 fix: versions
- 📚 docs: Readme clarification
- 📚 docs: Readme diagram clarification
- 📚 docs: Update (#18)
- 📚 docs: Update diagrams
- 📚 docs: Update diagrams and bump Cargo.toml version
- 📚 docs: clarification
- 📚 docs: cleanup
- 📚 docs: diagram
- 📚 docs: examples
- 📚 docs: fix commands
- 📚 docs: fix diagram
- 📚 docs: nit
- 📚 docs: nit readme
- 📚 docs: readme nit
- 📚 docs: toolkits
- 📚 docs: update
- 🔧 chore(deps): bump the cargo-dependencies group across 1 directory
with 10 updates (#17)
- 🔧 chore: rm unused file

### Contributors

- Corey Ryan
- Ian McDonald
- bowlofarugula
- dependabot[bot]

### 🔄 Release Process

1. Review and merge this PR
2. The release will be tagged automatically
3. The release workflow will then:
   - Build and publish artifacts
   - Create GitHub release
   - Publish to package registries

### ⚠️ Important

- Ensure all CI checks pass before merging
- Review the changelog for accuracy
- Verify version numbers are correct
- **DO NOT** manually create the tag - it will be created automatically
when merged

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
@bowlofarugula bowlofarugula mentioned this pull request Jul 24, 2025
4 tasks
bowlofarugula added a commit that referenced this pull request Jul 24, 2025
## release: mcp-gateway v0.0.4

This PR prepares the release of **mcp-gateway v0.0.4**.

### 📋 Checklist

- [ ] Version bumped correctly
- [ ] Changelog updated
- [ ] All tests passing
- [ ] Documentation updated if needed

### 📝 Release Notes

## [mcp-gateway] 0.0.4 - 2025-07-24

### Changes

- Fix additional nightly references (#4)
- Release: CLI v0.0.25 (#38)
- fix/prepare-release-access-bug
- refactor: ftl-core -> ftl-sdk
- refactor: name
- refactor: use wasmcp and remove SDKs and templates (#13)
- release: CLI v0.0.26 (#40)
- release: CLI v0.0.27 (#41)
- release: CLI v0.0.28 (#42)
- release: CLI v0.0.29 (#43)
- release: CLI v0.0.30 (#44)
- release: mcp-authorizer v0.0.7 (#45)
- release: mcp-authorizer v0.0.8 (#47)
- release: v0.0.17
- release: v0.0.20 (#16)
- release: v0.0.21 (#20)
- ✨ feat: Add JS tool support
- ✨ feat: Add app commands and other improvements (#27)
- ✨ feat: Add auto release workflows (#33)
- ✨ feat: Add ftl login and related commands. (#19)
- ✨ feat: Add gateway component (#1)
- ✨ feat: Add parallel builds and pushes (#22)
- ✨ feat: Allow updating the CLI. Adds version check functionality (#12)
- ✨ feat: Big change to component model (#9)
- ✨ feat: Clean up dead code and add automatic spin dependency
management (#7)
- ✨ feat: Exports working
- ✨ feat: Fix syntax incompatibilities with stable toolchain (#6)
- ✨ feat: Integrate ftl-mcp code into this repo. (#29)
- ✨ feat: Replace wasmcp with ftl-mcp (#15)
- ✨ feat: Speedup installs in gha (#32)
- ✨ feat: TS support
- ✨ feat: Update backend API calls and add tests. (#23)
- ✨ feat: gateway/mcp -> mcp
- ✨ feat: js wip
- ✨ feat: prepare-release nit
- ✨ feat: release
- ✨ feat: update release workflow to stable (#3)
- ✨ feat: use stable rust toolchain (#2)
- ✨ feat: wip get deploys working (#21)
- ✨ feat: working js deploys
- 🐛 fix: CLI releases
- 🐛 fix: Deploys (#24)
- 🐛 fix: Fix rust tool unit tests (#8)
- 🐛 fix: GHA access for creating PRs in prepare-release.yml (#36)
- 🐛 fix: OpenAPI spec (#28)
- 🐛 fix: README path
- 🐛 fix: Release workflow (#31)
- 🐛 fix: Use new working backend for deploys (#26)
- 🐛 fix: allocator
- 🐛 fix: audit
- 🐛 fix: auto-tag-release
- 🐛 fix: ci
- 🐛 fix: clippy
- 🐛 fix: clippy and old ftl_sdk refs
- 🐛 fix: component releases
- 🐛 fix: deps
- 🐛 fix: finish refactor
- 🐛 fix: fmt
- 🐛 fix: fmt and lint
- 🐛 fix: formatting
- 🐛 fix: formatting and nightly
- 🐛 fix: install.sh
- 🐛 fix: js tests
- 🐛 fix: links
- 🐛 fix: more gha permissions
- 🐛 fix: names
- 🐛 fix: old ftl_sdk ref
- 🐛 fix: pre-release lockfile handling
- 🐛 fix: prepare-release label handling (#34)
- 🐛 fix: prepeare-release git push (#35)
- 🐛 fix: release
- 🐛 fix: release-cli
- 🐛 fix: rm macos test in ci.yml
- 🐛 fix: spin.toml location for JS tools
- 🐛 fix: template dependency versions
- 🐛 fix: ts tests
- 🐛 fix: use gh commands in install.sh
- 🐛 fix: version
- 🐛 fix: versions
- 🐛 fix: wasm ci
- 📚 docs: Readme clarification
- 📚 docs: Readme diagram clarification
- 📚 docs: Update (#18)
- 📚 docs: Update diagrams
- 📚 docs: Update diagrams and bump Cargo.toml version
- 📚 docs: clarification
- 📚 docs: cleanup
- 📚 docs: diagram
- 📚 docs: examples
- 📚 docs: fix commands
- 📚 docs: fix diagram
- 📚 docs: nit
- 📚 docs: nit readme
- 📚 docs: readme nit
- 📚 docs: toolkits
- 📚 docs: update
- 🔧 chore(deps): bump the cargo-dependencies group across 1 directory
with 10 updates (#17)
- 🔧 chore: rm unused file

### Contributors

- Corey Ryan
- Ian McDonald
- bowlofarugula
- dependabot[bot]

### 🔄 Release Process

1. Review and merge this PR
2. The release will be tagged automatically
3. The release workflow will then:
   - Build and publish artifacts
   - Create GitHub release
   - Publish to package registries

### ⚠️ Important

- Ensure all CI checks pass before merging
- Review the changelog for accuracy
- Verify version numbers are correct
- **DO NOT** manually create the tag - it will be created automatically
when merged

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This was referenced Jul 24, 2025
bowlofarugula added a commit that referenced this pull request Jul 24, 2025
## release: Rust SDK v0.2.4

This PR prepares the release of **sdk-rust v0.2.4**.

### 📋 Checklist

- [ ] Version bumped correctly
- [ ] Changelog updated
- [ ] All tests passing
- [ ] Documentation updated if needed

### 📝 Release Notes

## [Rust SDK] 0.2.4 - 2025-07-24

### Changes

- Fix additional nightly references (#4)
- Release: CLI v0.0.25 (#38)
- fix/prepare-release-access-bug
- refactor: ftl-core -> ftl-sdk
- refactor: name
- refactor: use wasmcp and remove SDKs and templates (#13)
- release: CLI v0.0.26 (#40)
- release: CLI v0.0.27 (#41)
- release: CLI v0.0.28 (#42)
- release: CLI v0.0.29 (#43)
- release: CLI v0.0.30 (#44)
- release: CLI v0.0.31 (#49)
- release: mcp-authorizer v0.0.7 (#45)
- release: mcp-authorizer v0.0.8 (#47)
- release: mcp-gateway v0.0.4 (#48)
- release: v0.0.17
- release: v0.0.20 (#16)
- release: v0.0.21 (#20)
- ✨ feat: Add JS tool support
- ✨ feat: Add app commands and other improvements (#27)
- ✨ feat: Add auto release workflows (#33)
- ✨ feat: Add ftl login and related commands. (#19)
- ✨ feat: Add gateway component (#1)
- ✨ feat: Add parallel builds and pushes (#22)
- ✨ feat: Allow updating the CLI. Adds version check functionality (#12)
- ✨ feat: Big change to component model (#9)
- ✨ feat: Clean up dead code and add automatic spin dependency
management (#7)
- ✨ feat: Exports working
- ✨ feat: Fix syntax incompatibilities with stable toolchain (#6)
- ✨ feat: Integrate ftl-mcp code into this repo. (#29)
- ✨ feat: Replace wasmcp with ftl-mcp (#15)
- ✨ feat: Speedup installs in gha (#32)
- ✨ feat: TS support
- ✨ feat: Update backend API calls and add tests. (#23)
- ✨ feat: gateway/mcp -> mcp
- ✨ feat: js wip
- ✨ feat: prepare-release nit
- ✨ feat: release
- ✨ feat: update release workflow to stable (#3)
- ✨ feat: use stable rust toolchain (#2)
- ✨ feat: wip get deploys working (#21)
- ✨ feat: working js deploys
- 🐛 fix: CLI releases
- 🐛 fix: Deploys (#24)
- 🐛 fix: Fix rust tool unit tests (#8)
- 🐛 fix: GHA access for creating PRs in prepare-release.yml (#36)
- 🐛 fix: OpenAPI spec (#28)
- 🐛 fix: README path
- 🐛 fix: Release workflow (#31)
- 🐛 fix: Use new working backend for deploys (#26)
- 🐛 fix: allocator
- 🐛 fix: audit
- 🐛 fix: auto-tag-release
- 🐛 fix: ci
- 🐛 fix: clippy
- 🐛 fix: clippy and old ftl_sdk refs
- 🐛 fix: component releases
- 🐛 fix: deps
- 🐛 fix: examples/demo ghcr.io refs
- 🐛 fix: exclude templates/examples from cargo update
- 🐛 fix: finish refactor
- 🐛 fix: fmt
- 🐛 fix: fmt and lint
- 🐛 fix: formatting
- 🐛 fix: formatting and nightly
- 🐛 fix: install.sh
- 🐛 fix: js tests
- 🐛 fix: links
- 🐛 fix: mcp-gateway rust sdk dep
- 🐛 fix: more gha permissions
- 🐛 fix: names
- 🐛 fix: old ftl_sdk ref
- 🐛 fix: pre-release lockfile handling
- 🐛 fix: prepare-release label handling (#34)
- 🐛 fix: prepeare-release git push (#35)
- 🐛 fix: release
- 🐛 fix: release-cli
- 🐛 fix: rm macos test in ci.yml
- 🐛 fix: rust sdk release
- 🐛 fix: sdk release
- 🐛 fix: spin.toml location for JS tools
- 🐛 fix: template dependency versions
- 🐛 fix: ts tests
- 🐛 fix: use gh commands in install.sh
- 🐛 fix: version
- 🐛 fix: versions
- 🐛 fix: wasm ci
- 📚 docs: Readme clarification
- 📚 docs: Readme diagram clarification
- 📚 docs: Update (#18)
- 📚 docs: Update diagrams
- 📚 docs: Update diagrams and bump Cargo.toml version
- 📚 docs: clarification
- 📚 docs: cleanup
- 📚 docs: diagram
- 📚 docs: examples
- 📚 docs: fix commands
- 📚 docs: fix diagram
- 📚 docs: nit
- 📚 docs: nit readme
- 📚 docs: readme nit
- 📚 docs: toolkits
- 📚 docs: update
- 🔧 chore(deps): bump the cargo-dependencies group across 1 directory
with 10 updates (#17)
- 🔧 chore: rm unused file

### Contributors

- Corey Ryan
- Ian McDonald
- bowlofarugula
- dependabot[bot]

### 🔄 Release Process

1. Review and merge this PR
2. The release will be tagged automatically
3. The release workflow will then:
   - Build and publish artifacts
   - Create GitHub release
   - Publish to package registries

### ⚠️ Important

- Ensure all CI checks pass before merging
- Review the changelog for accuracy
- Verify version numbers are correct
- **DO NOT** manually create the tag - it will be created automatically
when merged

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
@bowlofarugula bowlofarugula mentioned this pull request Jul 24, 2025
4 tasks
bowlofarugula added a commit that referenced this pull request Jul 24, 2025
## release: TypeScript SDK v0.2.4

This PR prepares the release of **sdk-typescript v0.2.4**.

### 📋 Checklist

- [ ] Version bumped correctly
- [ ] Changelog updated
- [ ] All tests passing
- [ ] Documentation updated if needed

### 📝 Release Notes

## [TypeScript SDK] 0.2.4 - 2025-07-24

### Changes

- Fix additional nightly references (#4)
- Release: CLI v0.0.25 (#38)
- fix/prepare-release-access-bug
- refactor: ftl-core -> ftl-sdk
- refactor: name
- refactor: use wasmcp and remove SDKs and templates (#13)
- release: CLI v0.0.26 (#40)
- release: CLI v0.0.27 (#41)
- release: CLI v0.0.28 (#42)
- release: CLI v0.0.29 (#43)
- release: CLI v0.0.30 (#44)
- release: CLI v0.0.31 (#49)
- release: Rust SDK v0.2.4 (#51)
- release: Rust SDK v0.2.5 (#52)
- release: Rust SDK v0.2.6 (#53)
- release: Rust SDK v0.2.7 (#54)
- release: mcp-authorizer v0.0.7 (#45)
- release: mcp-authorizer v0.0.8 (#47)
- release: mcp-gateway v0.0.4 (#48)
- release: v0.0.17
- release: v0.0.20 (#16)
- release: v0.0.21 (#20)
- ✨ feat: Add JS tool support
- ✨ feat: Add app commands and other improvements (#27)
- ✨ feat: Add auto release workflows (#33)
- ✨ feat: Add ftl login and related commands. (#19)
- ✨ feat: Add gateway component (#1)
- ✨ feat: Add parallel builds and pushes (#22)
- ✨ feat: Allow updating the CLI. Adds version check functionality (#12)
- ✨ feat: Big change to component model (#9)
- ✨ feat: Clean up dead code and add automatic spin dependency
management (#7)
- ✨ feat: Exports working
- ✨ feat: Fix syntax incompatibilities with stable toolchain (#6)
- ✨ feat: Integrate ftl-mcp code into this repo. (#29)
- ✨ feat: Replace wasmcp with ftl-mcp (#15)
- ✨ feat: Speedup installs in gha (#32)
- ✨ feat: TS support
- ✨ feat: Update backend API calls and add tests. (#23)
- ✨ feat: gateway/mcp -> mcp
- ✨ feat: js wip
- ✨ feat: prepare-release nit
- ✨ feat: release
- ✨ feat: update release workflow to stable (#3)
- ✨ feat: use stable rust toolchain (#2)
- ✨ feat: wip get deploys working (#21)
- ✨ feat: working js deploys
- 🐛 fix: CLI releases
- 🐛 fix: Deploys (#24)
- 🐛 fix: Fix rust tool unit tests (#8)
- 🐛 fix: GHA access for creating PRs in prepare-release.yml (#36)
- 🐛 fix: OpenAPI spec (#28)
- 🐛 fix: README path
- 🐛 fix: Release workflow (#31)
- 🐛 fix: Use new working backend for deploys (#26)
- 🐛 fix: allocator
- 🐛 fix: audit
- 🐛 fix: auto-tag-release
- 🐛 fix: ci
- 🐛 fix: clippy
- 🐛 fix: clippy and old ftl_sdk refs
- 🐛 fix: component releases
- 🐛 fix: deps
- 🐛 fix: examples/demo ghcr.io refs
- 🐛 fix: exclude templates/examples from cargo update
- 🐛 fix: finish refactor
- 🐛 fix: fmt
- 🐛 fix: fmt and lint
- 🐛 fix: formatting
- 🐛 fix: formatting and nightly
- 🐛 fix: install.sh
- 🐛 fix: js tests
- 🐛 fix: links
- 🐛 fix: mcp-gateway rust sdk dep
- 🐛 fix: more gha permissions
- 🐛 fix: names
- 🐛 fix: old ftl_sdk ref
- 🐛 fix: pre-release lockfile handling
- 🐛 fix: prepare-release label handling (#34)
- 🐛 fix: prepeare-release git push (#35)
- 🐛 fix: release
- 🐛 fix: release-cli
- 🐛 fix: rm macos test in ci.yml
- 🐛 fix: rust sdk release
- 🐛 fix: sdk release
- 🐛 fix: spin.toml location for JS tools
- 🐛 fix: template dependency versions
- 🐛 fix: ts tests
- 🐛 fix: use gh commands in install.sh
- 🐛 fix: version
- 🐛 fix: versions
- 🐛 fix: wasm ci
- 📚 docs: Readme clarification
- 📚 docs: Readme diagram clarification
- 📚 docs: Update (#18)
- 📚 docs: Update diagrams
- 📚 docs: Update diagrams and bump Cargo.toml version
- 📚 docs: clarification
- 📚 docs: cleanup
- 📚 docs: diagram
- 📚 docs: examples
- 📚 docs: fix commands
- 📚 docs: fix diagram
- 📚 docs: nit
- 📚 docs: nit readme
- 📚 docs: readme nit
- 📚 docs: toolkits
- 📚 docs: update
- 🔧 chore(deps): bump the cargo-dependencies group across 1 directory
with 10 updates (#17)
- 🔧 chore: rm unused file

### Contributors

- Corey Ryan
- Ian McDonald
- bowlofarugula
- dependabot[bot]

### 🔄 Release Process

1. Review and merge this PR
2. The release will be tagged automatically
3. The release workflow will then:
   - Build and publish artifacts
   - Create GitHub release
   - Publish to package registries

### ⚠️ Important

- Ensure all CI checks pass before merging
- Review the changelog for accuracy
- Verify version numbers are correct
- **DO NOT** manually create the tag - it will be created automatically
when merged

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant