Skip to content

Commit

Permalink
chore: apply @lidel changelog suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
hacdias committed Oct 5, 2023
1 parent 0d4a993 commit 77b6c45
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,14 @@ The following emojis are used to highlight certain changes:
* `boxo/routing/http/client.Client` is now exported. This means you can now pass
it around functions, or add it to a struct if you want.
* 🛠 The `path` package has been massively refactored. With this refactor, we have
condensed the different path-related packages under a single one. Therefore, there
condensed the different path-related and/or Kubo-specific packages under a single generic one. Therefore, there
are many breaking changes. Please consult the [documentation](https://pkg.go.dev/github.com/ipfs/boxo/path)
for more details on how to use the new package.
* Note: content paths created with `boxo/path` are automatically normalized:
- Replace multiple slashes with a single slash.
- Eliminate each `.` path name element (the current directory).
- Eliminate each inner `..` path name element (the parent directory) along with the non-`..` element that precedes it.
- Eliminate `..` elements that begin a rooted path: that is, replace "`/..`" by "`/`" at the beginning of a path.
* 🛠 The signature of `CoreAPI.ResolvePath` in `coreiface` has changed to now return
the remainder segments as a second return value, matching the signature of `resolver.ResolveToLastNode`.

Expand Down

0 comments on commit 77b6c45

Please sign in to comment.