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: release v0.14.0 #416

Merged
merged 1 commit into from
Oct 27, 2024
Merged

chore: release v0.14.0 #416

merged 1 commit into from
Oct 27, 2024

Conversation

SwabbieBosun
Copy link
Collaborator

@SwabbieBosun SwabbieBosun commented Oct 27, 2024

πŸ€– New release

  • swiftide: 0.13.4 -> 0.14.0 (βœ“ API compatible changes)
  • swiftide-core: 0.13.4 -> 0.14.0 (⚠️ API breaking changes)
  • swiftide-indexing: 0.13.4 -> 0.14.0 (βœ“ API compatible changes)
  • swiftide-macros: 0.13.4 -> 0.14.0
  • swiftide-integrations: 0.13.4 -> 0.14.0 (βœ“ API compatible changes)
  • swiftide-query: 0.13.4 -> 0.14.0 (βœ“ API compatible changes)

⚠️ swiftide-core breaking changes

--- failure inherent_method_missing: pub method removed or renamed ---

Description:
A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/inherent_method_missing.ron

Failed in:
  Node::update_id, previously in file /tmp/.tmpp9ZuUf/swiftide-core/src/node.rs:204

--- failure struct_pub_field_missing: pub struct's pub field removed or renamed ---

Description:
A publicly-visible struct has at least one public field that is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/struct_pub_field_missing.ron

Failed in:
  field id of struct Node, previously in file /tmp/.tmpp9ZuUf/swiftide-core/src/node.rs:41
Changelog

swiftide

0.14.0 - 2024-10-27

New features

  • a866d38 (integrations) Support in process hugging face models via mistralrs (#386)

Bug fixes

  • 551a9cb (indexing) [breaking] Node ID no longer memoized (#414)
As @shamb0 pointed out in [#392](https://github.com/bosun-ai/swiftide/pull/392), there is a potential issue where Node
  ids are get cached before chunking or other transformations, breaking
  upserts and potentially resulting in data loss.

BREAKING CHANGE: This PR reworks Nodes with a builder API and a private
id. Hence, manually creating nodes no longer works. In the future, all
the fields are likely to follow the same pattern, so that we can
decouple the inner fields from the Node's implementation.

  • c091ffa (indexing) Use atomics for key generation in memory storage (#415)

Miscellaneous

  • 0000000 Update Cargo.toml dependencies

Full Changelog: 0.13.4...0.14.0


This PR was generated with release-plz.

@SwabbieBosun SwabbieBosun force-pushed the release-plz-2024-10-27T15-56-33Z branch from da2dd35 to 88ac156 Compare October 27, 2024 15:57
@timonv timonv merged commit 91196a1 into master Oct 27, 2024
10 checks passed
@timonv timonv deleted the release-plz-2024-10-27T15-56-33Z branch October 27, 2024 20:35
timonv added a commit that referenced this pull request Oct 27, 2024
shamb0 pushed a commit to shamb0/swiftide that referenced this pull request Oct 30, 2024
## πŸ€– New release
* `swiftide`: 0.13.4 -> 0.14.0 (βœ“ API compatible changes)
* `swiftide-core`: 0.13.4 -> 0.14.0 (⚠️ API breaking changes)
* `swiftide-indexing`: 0.13.4 -> 0.14.0 (βœ“ API compatible changes)
* `swiftide-macros`: 0.13.4 -> 0.14.0
* `swiftide-integrations`: 0.13.4 -> 0.14.0 (βœ“ API compatible changes)
* `swiftide-query`: 0.13.4 -> 0.14.0 (βœ“ API compatible changes)

### ⚠️ `swiftide-core` breaking changes

```
--- failure inherent_method_missing: pub method removed or renamed ---

Description:
A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/inherent_method_missing.ron

Failed in:
  Node::update_id, previously in file /tmp/.tmpp9ZuUf/swiftide-core/src/node.rs:204

--- failure struct_pub_field_missing: pub struct's pub field removed or renamed ---

Description:
A publicly-visible struct has at least one public field that is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/struct_pub_field_missing.ron

Failed in:
  field id of struct Node, previously in file /tmp/.tmpp9ZuUf/swiftide-core/src/node.rs:41
```

<details><summary><i><b>Changelog</b></i></summary><p>

## `swiftide`
<blockquote>

##
[0.14.0](bosun-ai/swiftide@v0.13.4...v0.14.0)
- 2024-10-27

### New features

-
[a866d38](bosun-ai@a866d38)
*(integrations)* Support in process hugging face models via mistralrs
([bosun-ai#386](bosun-ai#386))

### Bug fixes

-
[551a9cb](bosun-ai@551a9cb)
*(indexing)* [**breaking**] Node ID no longer memoized
([bosun-ai#414](bosun-ai#414))

````text
As @shamb0 pointed out in [bosun-ai#392](bosun-ai#392), there is a potential issue where Node
  ids are get cached before chunking or other transformations, breaking
  upserts and potentially resulting in data loss.
````

**BREAKING CHANGE**: This PR reworks Nodes with a builder API and a
private
id. Hence, manually creating nodes no longer works. In the future, all
the fields are likely to follow the same pattern, so that we can
decouple the inner fields from the Node's implementation.

-
[c091ffa](bosun-ai@c091ffa)
*(indexing)* Use atomics for key generation in memory storage
([bosun-ai#415](bosun-ai#415))

### Miscellaneous

- [0000000](bosun-ai@0000000) Update
Cargo.toml dependencies


**Full Changelog**:
bosun-ai/swiftide@0.13.4...0.14.0
</blockquote>


</p></details>

---
This PR was generated with
[release-plz](https://github.com/MarcoIeni/release-plz/).
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.

2 participants