Skip to content

Releases: adonisjs/ally

Access raw ally config via allyManager.config property

23 Jan 12:06
Compare
Choose a tag to compare

Since, the config/ally.ts file exports a config provider, you cannot access raw config directly from it. However, now you can use the allyManager.config property to get reference to the raw config.

Commits

  • refactor: make allyManager.config property public 5336914
  • chore: update dependencies 825e402

v5.0.1...v5.0.2

Add drivers export path

20 Jan 14:04
Compare
Choose a tag to compare

v5.0.0...v5.0.1

Stable major release

09 Jan 10:46
d0bf607
Compare
Choose a tag to compare

Please consult following releases to learn more about the breaking changes

Commits

  • chore: publish under latest tag 927d148
  • Merge pull request #147 from adonisjs/next d0bf607
  • chore: bundle types.ts file via tsup as well 13dd711
  • refactor: export stubsRoot 1205160
  • chore: update dependencies 7bffd15

What's Changed

New Contributors

Full Changelog: v4.1.5...v5.0.0

Update dependencies

24 Dec 10:24
Compare
Choose a tag to compare
Update dependencies Pre-release
Pre-release
  • docs: update description 5f081db
  • docs(README): update link to docs f66354d
  • refactor: make stubs work with the CLI flag 20d64e0
  • chore: update dependencies 16951f7

Full Changelog: v5.0.0-7...v5.0.0-8

Use tsup for bundling

27 Nov 10:50
Compare
Choose a tag to compare
Use tsup for bundling Pre-release
Pre-release
  • docs(README): remove snyk badge efaef26
  • chore: use tsup for bundling 3c3dd51
  • chore: update dependencies 162e097

Full Changelog: v5.0.0-6...v5.0.0-7

Use config providers

19 Oct 15:07
Compare
Choose a tag to compare
Use config providers Pre-release
Pre-release

The config must be defined using the services object as string based drivers are not supported anymore

import {
  defineConfig,
+ services
} from '@adonisjs/ally'

const allyConfig = defineConfig({
- github: {
-  driver: 'github',
-  clientId: env.get('GITHUB_CLIENT_ID'),
-  clientSecret: env.get('GITHUB_CLIENT_SECRET'),
-  callbackUrl: '',
- },
+ github: services.github({
+  clientId: env.get('GITHUB_CLIENT_ID'),
+  clientSecret: env.get('GITHUB_CLIENT_SECRET'),
+  callbackUrl: '',
+ }),
})

Commits

  • refactor: fix typing issues a73d9ec
  • refactor: move to config providers and remove drivers collection c1e0bc1
  • chore: update dependencies c9b5a5c

Full Changelog: v5.0.0-5...v5.0.0-6

Absorb breaking changes of @poppinss/oauth-client

27 Sep 09:12
Compare
Choose a tag to compare

Breaking change

Commits

Full Changelog: v5.0.0-3...v5.0.0-5

Update dependencies

22 Aug 06:18
Compare
Choose a tag to compare
Update dependencies Pre-release
Pre-release
  • chore: update dependencies bffc36a

Full Changelog: v5.0.0-3...v5.0.0-4

Use latest codemods in configure command

21 Aug 12:06
Compare
Choose a tag to compare
  • ci: increase test timeout for ci f0f141d
  • feat: use latest codemods ed42e3f
  • chore: update dependencies 6feab06

Full Changelog: v5.0.0-2...v5.0.0-3

Fix config file stub

03 Aug 07:59
Compare
Choose a tag to compare
Fix config file stub Pre-release
Pre-release
  • fix: generate config files with default config 3d55c22

Full Changelog: v5.0.0-1...v5.0.0-2