-
Notifications
You must be signed in to change notification settings - Fork 0
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): update dependency @adonisjs/assembler to v7 #206
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/adonisjs-assembler-7.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^5.9.5
->^7.0.0
Release Notes
adonisjs/assembler (@adonisjs/assembler)
v7.8.2
: Bug fix after migrating execaCompare Source
Commits
Full Changelog: adonisjs/assembler@v7.8.1...v7.8.2
v7.8.1
: Fix missing dependency errorCompare Source
Bug Fixes
Full Changelog: adonisjs/assembler@v7.8.0...v7.8.1
v7.8.0
: Add yarn berry and ts-node-maintained supportCompare Source
What's Changed
New Contributors
Full Changelog: adonisjs/assembler@v7.5.2...v7.8.0
v7.7.0
: Stable assembler hooksCompare Source
Changes
Stabilized assembler hooks. See upgrade guide here
Commits
459937f
)d5e8cfe
)b6b8795
)addAssemblerHook
codemod (293e100
)e4f8902
)v7.6.1
: Yarn berry supportCompare Source
Changelog:
fff1cd6
) thanks to @rault-aFull Changelog: adonisjs/assembler@v7.6.0...v7.6.1
v7.6.0
Compare Source
v7.5.2
: Update Server ready messageCompare Source
ce295a2
)What's Changed
Full Changelog: adonisjs/assembler@v7.5.1...v7.5.2
v7.5.1
: Fix displayed relative path with HMR on WindowsCompare Source
96b31e5
)23024b9
)v7.5.0
: And support for hot-hookCompare Source
After this release, assembler will integrate natively with the
hot-hook
npm package. When thehmr
option is enabled, assembler will run the Dev server child process with thehot-hook
loader and listen for the messages sent by the hot-hook loader.Commits
9de19c6
)56935db
)4392202
)57781e4
)What's Changed
Full Changelog: adonisjs/assembler@v7.4.0...v7.5.0
v7.4.0
: OnHttpServerMessage hookCompare Source
Changes
The DevServer class now accepts a new
onHttpServerMessage
hook that will be called when the HTTP child process sends a message to the parent process ( the assembler ).Commits
e9d78ee
)516a1fb
)Full Changelog: adonisjs/assembler@v7.3.0...v7.4.0
v7.3.0
: Update Env module allowing us to use IdentifierCompare Source
b573ce2
)3d75537
)5589087
)00b4217
)v7.2.3
: Fix addVitePlugin when using defineConfigCompare Source
defineConfig
0e92531
Full Changelog: adonisjs/assembler@v7.2.2...v7.2.3
v7.2.2
: Hooks fixCompare Source
a0612a2
de9a026
Full Changelog: adonisjs/assembler@v7.2.1...v7.2.2
v7.2.1
: DevServer hooks bugfixCompare Source
92eb2c6
6304c94
Full Changelog: adonisjs/assembler@v7.2.0...v7.2.1
v7.2.0
: Hooks and CodemodsCompare Source
Changes
This version adds several new features:
addVitePlugin
method in the Codemods API that can be used by package creators to add a new Vite plugin to the end-user configurationproject
property of the codemods api public. This allows package authors to have direct access to ts-morph when they need to perform more specific modifications in the end-user code.Commits
38a2835
project
public5a476d6
db8b35a
addVitePlugin
method95f0cfa
What's Changed
addVitePlugin
method by @Julien-R44 in https://github.com/adonisjs/assembler/pull/73project
public inCodeTransformer
by @Julien-R44 in https://github.com/adonisjs/assembler/pull/74Full Changelog: adonisjs/assembler@v7.1.1...v7.2.0
v7.1.1
: Rewrite builded Ace fileCompare Source
During the build process, we now rewrite from-scratch the
ace.js
file included in thebuild
folder so as to remove all references tots-node
. That way, you can now runnode ace my-command
in your build project without having to installts-node
.See this issue that explains the problem : https://github.com/adonisjs/core/issues/4361
Commits
adcc145
a2801ff
fa322d7
v7.1.0
: Disable experimental warningsCompare Source
As of today, TSNode exports a loader hook which must be applied using the
--loader
Node.js CLI flag. However, the--loader
flag was experimental and emits a warning. This release disables that warning for a nicer CLI experience.With that said, we are waiting on Ts-node to export an import hook that can be applied using the
--import
Node.js CLI flag and then we can safely remove the flags in use to suppress warnings.Commits
6f28f35
e74612b
4744ee1
v7.0.0
: Stable major releaseCompare Source
Please consult the following release to learn more about the breaking changes
Commits
22d6926
14aab7b
9a8d68e
a02eaf5
831d361
b4ed967
7dad0d4
5f23411
0572331
330aa21
7189b93
189d7b9
d261515
4f11032
What's Changed
fs/promises
instead offs-extra
by @targos in https://github.com/adonisjs/assembler/pull/58addJapaPlugin
to Codemods by @Julien-R44 in https://github.com/adonisjs/assembler/pull/63New Contributors
Full Changelog: adonisjs/assembler@v5.9.6...v7.0.0
v5.9.6
: Install @japa/runner@2 when configuring testsCompare Source
0572331
330aa21
7189b93
189d7b9
d261515
4f11032
Full Changelog: adonisjs/assembler@v5.9.5...v5.9.6
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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.