issue_owner_repo listlengths 2 2 | issue_body stringlengths 0 262k ⌀ | issue_title stringlengths 1 1.02k | issue_comments_url stringlengths 53 116 | issue_comments_count int64 0 2.49k | issue_created_at stringdate 1999-03-17 02:06:42 2025-06-23 11:41:49 | issue_updated_at stringdate 2000-02-10 06:43:57 2025-06-23 11:43:00 | issue_html_url stringlengths 34 97 | issue_github_id int64 132 3.17B | issue_number int64 1 215k |
|---|---|---|---|---|---|---|---|---|---|
[
"nestjs",
"nest"
] | In my express applications, I often define a role check middleware factory.
It takes a role array as a parameter, so I can reuse it for different roles checking (admin, moderator, etc) without rewrite a specific middleware for each case.
Is it possible to do something similar with Nest middlewares? | Parametrizable middleware | https://api.github.com/repos/nestjs/nest/issues/61/comments | 3 | 2017-05-13T09:33:32Z | 2019-09-25T13:11:03Z | https://github.com/nestjs/nest/issues/61 | 228,461,675 | 61 |
[
"nestjs",
"nest"
] | Hi,
in order to make more reusable code, I would like to create a module which use a component which is not a part of this module, nor include in an imported module. The component will be inject by the ApplicationModule (main module). It seems that this is not supported?
Example:
AuthenticationModule has different... | Hierarchical injector | https://api.github.com/repos/nestjs/nest/issues/59/comments | 7 | 2017-05-12T15:40:59Z | 2019-09-25T13:10:50Z | https://github.com/nestjs/nest/issues/59 | 228,330,906 | 59 |
[
"nestjs",
"nest"
] | Repo should have some contributing guidelines for new people who would like to contribute , I would like to add initial CONTRIBUTING.md which can be modified later. | Contributing guidelines | https://api.github.com/repos/nestjs/nest/issues/57/comments | 5 | 2017-05-11T18:36:20Z | 2019-09-25T08:10:57Z | https://github.com/nestjs/nest/issues/57 | 228,083,124 | 57 |
[
"nestjs",
"nest"
] | I would like to recommend [iterare](http://iterare.surge.sh/) for tranform a collection over using array chain methods.
Regards. | Using Iterare instead of Array chain methods | https://api.github.com/repos/nestjs/nest/issues/55/comments | 4 | 2017-05-10T18:24:12Z | 2019-09-25T13:10:59Z | https://github.com/nestjs/nest/issues/55 | 227,768,976 | 55 |
[
"nestjs",
"nest"
] | Express is a very great Node server library, but some project also use Hapi or Koa.
Does it a good idea to integrate them into Nest as adapters and let people choose the one they want / need ? | Hapi and Koa integration | https://api.github.com/repos/nestjs/nest/issues/54/comments | 10 | 2017-05-10T17:25:45Z | 2019-09-25T09:11:51Z | https://github.com/nestjs/nest/issues/54 | 227,753,816 | 54 |
[
"nestjs",
"nest"
] | Error for client example from https://kamilmysliwiec.gitbooks.io/nest/content/real-time/microservices/basics.html
```ts
this.client.send(pattern, data)
.catch((err) => Observable.empty())
```
```
[ts] Property 'catch' does not exist on type 'Observable<{}>'.
```
this does not help
```ts
... | Move rxjs to peerDependencies to allow custom versions usage | https://api.github.com/repos/nestjs/nest/issues/53/comments | 22 | 2017-05-10T00:46:37Z | 2019-09-25T13:10:56Z | https://github.com/nestjs/nest/issues/53 | 227,537,621 | 53 |
[
"nestjs",
"nest"
] | Can we have application type that is web app (handle http/websocket requests) and microservice (has tcp server that used by other microservices) at the same time? It's common;y used microservice type. | Mixed web and microservice app | https://api.github.com/repos/nestjs/nest/issues/52/comments | 4 | 2017-05-10T00:30:07Z | 2019-09-25T12:11:57Z | https://github.com/nestjs/nest/issues/52 | 227,535,447 | 52 |
[
"nestjs",
"nest"
] | `Response` and `Request` are widely used existing types in `express` lib and cant be used in one file with appropriate `nest` decorators.
```
sendMessage(req: Request, res: Response): void
``` | Response and Request decorators intersect with express types | https://api.github.com/repos/nestjs/nest/issues/51/comments | 3 | 2017-05-10T00:21:39Z | 2019-09-25T13:11:06Z | https://github.com/nestjs/nest/issues/51 | 227,534,273 | 51 |
[
"nestjs",
"nest"
] | To prevent additional loggers usages make existing Logger service public available.
Also extend declaration for `INestMicroservice` with `logger` field to allow `app.logger.log(...)` usage on startup instead of `console.log('Microservice is listening on port 3000'))` from examples.
Also made `logMessage` method publi... | Make Logger service public available | https://api.github.com/repos/nestjs/nest/issues/50/comments | 4 | 2017-05-09T23:46:48Z | 2019-09-25T13:10:53Z | https://github.com/nestjs/nest/issues/50 | 227,529,464 | 50 |
[
"nestjs",
"nest"
] | Like Spring does it could be great to allow programatic configuration classes.
These classes are responsible to load configuration properties and can be injected.
For example theses classes could have access to file system property files (json, properties or what else) or remote ones like S3 bucket.
It could hel... | Programatic Configuration: @Configuration class decorator | https://api.github.com/repos/nestjs/nest/issues/48/comments | 6 | 2017-05-09T21:18:32Z | 2019-09-25T11:10:56Z | https://github.com/nestjs/nest/issues/48 | 227,501,171 | 48 |
[
"nestjs",
"nest"
] | What's the preferred method for defining a singleton?
An `@Singleton` decorator might be nice. | Singletons | https://api.github.com/repos/nestjs/nest/issues/47/comments | 9 | 2017-05-09T18:40:01Z | 2019-09-23T15:11:59Z | https://github.com/nestjs/nest/issues/47 | 227,459,511 | 47 |
[
"nestjs",
"nest"
] | Hello again,
I came across a problem where I am not sure if this is a wanted behavior regarding the injection via a factory.
I have the following module configuration:
### Problem Case
```typescript
@Module({
components: [
UserModelFactory,
{
provide: 'UserModel',
useFactory: (us... | [Question] Strange behavior with DI and factory | https://api.github.com/repos/nestjs/nest/issues/45/comments | 2 | 2017-05-09T13:13:08Z | 2019-09-25T13:11:12Z | https://github.com/nestjs/nest/issues/45 | 227,362,437 | 45 |
[
"nestjs",
"nest"
] | A message broker is one of the most used transport patterns in production microservices, being RabbitMQ the most popular of them.
It could be a great addition to Nest | [Feature Request] RabbitMQ transport for Microservices | https://api.github.com/repos/nestjs/nest/issues/44/comments | 5 | 2017-05-09T11:41:14Z | 2019-09-25T12:11:51Z | https://github.com/nestjs/nest/issues/44 | 227,337,421 | 44 |
[
"nestjs",
"nest"
] | Hi,
is it possible to inject a component based on its interface?
Let's assume the following component:
`class UserRepository implements IUserRepository`
This component is injected into the controller by interface from which is implemented:
```
export class UserController {
constructor(private user... | Typescript - Interface injecting | https://api.github.com/repos/nestjs/nest/issues/43/comments | 6 | 2017-05-08T18:25:01Z | 2019-09-25T13:11:09Z | https://github.com/nestjs/nest/issues/43 | 227,132,044 | 43 |
[
"nestjs",
"nest"
] | Hi, I'm loving nest framework! Great work!
I'd like to suggest this feature request. Not sure if it is in the plan but I think is something it provides extreme value for a higher level framework, since it is something basically all apps need. This would probably mean to adopt an ORM or make adapters for them.
A p... | Built-in authentication | https://api.github.com/repos/nestjs/nest/issues/42/comments | 8 | 2017-05-08T16:04:15Z | 2019-09-23T21:11:35Z | https://github.com/nestjs/nest/issues/42 | 227,094,816 | 42 |
[
"nestjs",
"nest"
] | With the given structure of Nest projects, where is the preferred place to put views? | Question: Views folder | https://api.github.com/repos/nestjs/nest/issues/41/comments | 2 | 2017-05-08T12:38:58Z | 2019-09-25T13:11:14Z | https://github.com/nestjs/nest/issues/41 | 227,032,734 | 41 |
[
"nestjs",
"nest"
] | Hi,
is there any suggested way how to set a "global" route for all controllers?
For example, I want to define this route:
`/api/`
for my controllers:
```
@Controller('user')
export class UserController
@Controller('customer')
export class CustomerController
```
with the following result:
```
... | Global route for all controllers | https://api.github.com/repos/nestjs/nest/issues/40/comments | 7 | 2017-05-08T07:41:46Z | 2019-09-23T15:11:47Z | https://github.com/nestjs/nest/issues/40 | 226,963,812 | 40 |
[
"nestjs",
"nest"
] | instances should be renamed UnknownException
| [Suggestion] Spelling mistake in UnkownException | https://api.github.com/repos/nestjs/nest/issues/39/comments | 2 | 2017-05-07T11:26:10Z | 2019-09-25T13:11:23Z | https://github.com/nestjs/nest/issues/39 | 226,851,391 | 39 |
[
"nestjs",
"nest"
] | Looking for an auth0 example since it's defacto authentication platform nowadays | Auth0 Example | https://api.github.com/repos/nestjs/nest/issues/38/comments | 9 | 2017-05-06T21:33:19Z | 2019-09-23T18:10:36Z | https://github.com/nestjs/nest/issues/38 | 226,805,688 | 38 |
[
"nestjs",
"nest"
] | If running reflect-metadata 0.1.10+, decorated components and modules don't seem to be picked up and routes aren't generated correctly.
| Incompatible with reflect-metadata release 0.1.10+ | https://api.github.com/repos/nestjs/nest/issues/37/comments | 6 | 2017-05-06T21:03:19Z | 2019-09-25T13:11:20Z | https://github.com/nestjs/nest/issues/37 | 226,803,861 | 37 |
[
"nestjs",
"nest"
] | Following along with the Setup Application instructions, when I add express I get the error upon typescript compilation:
`node_modules/nest.js/core/middlewares/interfaces/nest-middleware.interface.d.ts(1,1): error TS2688: Cannot find type definition file for 'express'.`
I used `npm install --save-dev @types/expres... | Problem with express typing | https://api.github.com/repos/nestjs/nest/issues/36/comments | 4 | 2017-05-06T19:59:23Z | 2019-09-25T13:11:26Z | https://github.com/nestjs/nest/issues/36 | 226,799,540 | 36 |
[
"nestjs",
"nest"
] | Hello everyone 😃
I was tried to testing my simple component with using Jest, but something was go wrong.
Configured Jest to working with TypeScript according to [official example](https://github.com/facebook/jest/tree/master/examples/typescript) and `tsconfig` copied from Nest repo.
The simplest tested compo... | Testing component with Jest | https://api.github.com/repos/nestjs/nest/issues/35/comments | 4 | 2017-05-06T09:46:57Z | 2019-09-25T13:11:17Z | https://github.com/nestjs/nest/issues/35 | 226,756,431 | 35 |
[
"nestjs",
"nest"
] | Are there any clear docs about how to connect and run crud operation with database, i.e mongodb, mysql, or postgree? | Documentation about CRUD with MongoDb and MySQL | https://api.github.com/repos/nestjs/nest/issues/34/comments | 14 | 2017-05-06T06:22:32Z | 2019-09-24T14:11:51Z | https://github.com/nestjs/nest/issues/34 | 226,743,604 | 34 |
[
"nestjs",
"nest"
] | Many frameworks have a preferred ORM integrated out of the box (ASP.NET with Entity Framework, Laravel with Eloquent, Sails with Waterline). Perhaps Nest should consider doing this as well? TypeORM seems to be picking up steam and perhaps could be a candidate https://github.com/typeorm/typeorm. | Suggestion: ORM integration | https://api.github.com/repos/nestjs/nest/issues/31/comments | 3 | 2017-05-05T13:53:07Z | 2019-09-25T13:11:32Z | https://github.com/nestjs/nest/issues/31 | 226,580,293 | 31 |
[
"nestjs",
"nest"
] | Hi,
it looks like I'm not able to inject a service into my module when I'm using the @Inject decorator.
Following code is throwing an resolve error:
```typescript
@Module({
controllers: [
AuthenticationController,
],
components: [
{provide: 'AuthenticationService', useClass: HttpBasicAuthen... | Can't inject services into module with @Inject | https://api.github.com/repos/nestjs/nest/issues/30/comments | 3 | 2017-05-05T13:50:17Z | 2019-09-25T13:11:29Z | https://github.com/nestjs/nest/issues/30 | 226,579,441 | 30 |
[
"nestjs",
"nest"
] | It would be great to extract the websocket functionality to use a proper adapter pattern.
Right now there's a stub of [an adapter](https://github.com/kamilmysliwiec/nest/blob/master/src/websockets/adapters/io-adapter.ts) which just returns a socket.io instance.
Ideally:
- Wrap any websocket functionality in an a... | WebSocket adapters | https://api.github.com/repos/nestjs/nest/issues/29/comments | 10 | 2017-05-05T12:26:31Z | 2019-09-25T12:11:42Z | https://github.com/nestjs/nest/issues/29 | 226,557,485 | 29 |
[
"nestjs",
"nest"
] | Hi,
is it possible to configure the dependency injector that I can map a typescript interface to a specific class?
Example:
```typescript
@Controller('registration')
export class RegistrationController {
private readonly registrationService: RegistrationService;
constructor(registrationService: IRe... | Question: Inject class by identifier for interfaces | https://api.github.com/repos/nestjs/nest/issues/28/comments | 3 | 2017-05-05T12:01:51Z | 2019-09-25T13:11:36Z | https://github.com/nestjs/nest/issues/28 | 226,552,230 | 28 |
[
"nestjs",
"nest"
] | I can't seem to get a second parameter to be picked up by the decorators, I've got the following code:
```js
@Controller('player-activity')
export class PlayerActivityController {
constructor(private playerActivityService: PlayerActivityService) {}
@Get('/:localeID/:memberID')
async activity (@Respo... | Multiple Params not found? | https://api.github.com/repos/nestjs/nest/issues/25/comments | 4 | 2017-05-04T22:42:01Z | 2019-09-25T13:11:39Z | https://github.com/nestjs/nest/issues/25 | 226,428,760 | 25 |
[
"nestjs",
"nest"
] | I am not the contributor, just a happy user of [pleerock/routing-controllers](https://github.com/pleerock/routing-controllers) but it's clearly visible both project want to solve the same goal. Wouldn't it make sense to co-operate the efforts?
cc @pleerock to see what does he think | Co-operation with pleerock/routing-controllers project | https://api.github.com/repos/nestjs/nest/issues/24/comments | 8 | 2017-05-04T20:29:33Z | 2019-09-25T05:11:08Z | https://github.com/nestjs/nest/issues/24 | 226,399,311 | 24 |
[
"nestjs",
"nest"
] | Compiling the project results in
<img width="655" alt="screen shot 2017-05-04 at 20 31 17" src="https://cloud.githubusercontent.com/assets/14816091/25721536/b1c9df64-3108-11e7-9215-d2cdcb90a7e8.png">
this error.
This seems to stem from the ```express_1.default();``` line. Removing ```.default``` seems to resolve t... | build error | https://api.github.com/repos/nestjs/nest/issues/23/comments | 3 | 2017-05-04T19:34:15Z | 2019-09-25T13:11:44Z | https://github.com/nestjs/nest/issues/23 | 226,385,713 | 23 |
[
"nestjs",
"nest"
] | Only the first `@Body` argument decorator returns the expected result.
Repeated uses return `undefined` results.
_Example:_
```
@Controller("auth")
export class AuthorizationController {
@Post()
authenticate(@Request() req: Req,
@Response() res: Res,
@Body("user") ... | @Body argument decorator fails with multiple named arguments | https://api.github.com/repos/nestjs/nest/issues/21/comments | 2 | 2017-05-03T18:29:19Z | 2019-09-25T13:11:41Z | https://github.com/nestjs/nest/issues/21 | 226,074,611 | 21 |
[
"nestjs",
"nest"
] | The current implementation of NestApplication.listen() does not support easily adding multiple Server backends, since it directly calls .listen() on the Express Application (which only creates an HTTP server).
At the very least, it would be helpful to add a public method on NestApplication that calls the setup funct... | Support for multiple simultaneous servers (e.g. HTTP and HTTPS) | https://api.github.com/repos/nestjs/nest/issues/20/comments | 2 | 2017-05-03T17:42:02Z | 2019-09-25T13:10:39Z | https://github.com/nestjs/nest/issues/20 | 226,062,218 | 20 |
[
"nestjs",
"nest"
] | I've completed the tutorial. But I don't know how the hell run it. And I've been looking in the docs and I found nothing. | How to run the project | https://api.github.com/repos/nestjs/nest/issues/18/comments | 3 | 2017-04-22T19:28:26Z | 2019-09-25T13:11:47Z | https://github.com/nestjs/nest/issues/18 | 223,587,102 | 18 |
[
"nestjs",
"nest"
] | In some cases, a middleware is applied to all routes of a controller, except some.
To avoid having to write all in forRoutes(), there may be a way to exclude: exceptRoutes().
It's just an idea | Suggestion: Exclude routes from MiddlewareBuilder | https://api.github.com/repos/nestjs/nest/issues/17/comments | 17 | 2017-04-15T15:35:29Z | 2019-09-24T06:10:44Z | https://github.com/nestjs/nest/issues/17 | 221,955,164 | 17 |
[
"nestjs",
"nest"
] | How can inject a B component directly into A component to use its methods without going through the shared module?
Eg:
```
import { Component } from 'nest.js';
@Component()
export class BComponent {
public bMethod() {
return "foo";
}
}
```
```
import { Component } from 'nest.js';
im... | Direct injection between components | https://api.github.com/repos/nestjs/nest/issues/16/comments | 3 | 2017-04-13T17:46:52Z | 2019-09-25T13:11:50Z | https://github.com/nestjs/nest/issues/16 | 221,634,908 | 16 |
[
"nestjs",
"nest"
] | As per subject, a CLI tool can:
- Make it easier for developers to start their new projects, with minimal entry barrier.
- Help scaffolding new projects.
- Help with building the project.
- Setup a development server.
- Might even help in deployment.
I can imagine that users of this project would have a backg... | Suggestion: CLI Tools | https://api.github.com/repos/nestjs/nest/issues/15/comments | 22 | 2017-04-12T20:01:11Z | 2019-09-25T13:10:47Z | https://github.com/nestjs/nest/issues/15 | 221,374,189 | 15 |
[
"nestjs",
"nest"
] | In [this page](https://kamilmysliwiec.gitbooks.io/nest/content/quick-start/middlewares.html) You're referencing a method name `getUsers`, unfortunately this method does not exist in the users service. Instead You should have used `getAllUsers`.
Again, I know it's just an example for demonstration purposes, but never... | [Documentation] Incorrect method name in the middlewares example | https://api.github.com/repos/nestjs/nest/issues/14/comments | 4 | 2017-04-11T12:04:05Z | 2019-09-25T13:11:59Z | https://github.com/nestjs/nest/issues/14 | 220,929,018 | 14 |
[
"nestjs",
"nest"
] | In the documentation you mentioned:
> It is incredibly easy to manage dependencies with TypeScript. If you are not TypeScript enthusiast and you work with plain JavaScript, you have to do it in this way:
This is slightly confusing since there's not mention of how to "manage dependencies with TypeScript" and the e... | [Documentation] TypeScript dependency management | https://api.github.com/repos/nestjs/nest/issues/13/comments | 12 | 2017-04-11T11:56:48Z | 2019-09-25T13:11:56Z | https://github.com/nestjs/nest/issues/13 | 220,927,171 | 13 |
[
"nestjs",
"nest"
] | It's really good to see a web framework that deals with TypeScript as a first class citizen! I'm really excited about this project because of this.
However, when turning the option: `noImplicitAny` in the `tsconfig.json` the compiler will produce warnings about a lot of the examples in the documentation.
I highly... | [Documentation] Express Typing | https://api.github.com/repos/nestjs/nest/issues/12/comments | 13 | 2017-04-11T11:22:34Z | 2019-11-25T05:56:37Z | https://github.com/nestjs/nest/issues/12 | 220,919,322 | 12 |
[
"nestjs",
"nest"
] | On [this page](https://kamilmysliwiec.gitbooks.io/nest/content/quick-start/components.html) You're looking for users using the `find` method, but the IDs are stored in the service as numbers and the received param will be a string. So here's a quick fix:
This:
```typescript
@RequestMapping({ path: '/:id' })
... | [Documentation] ID issue | https://api.github.com/repos/nestjs/nest/issues/11/comments | 3 | 2017-04-11T11:12:51Z | 2019-09-25T13:12:03Z | https://github.com/nestjs/nest/issues/11 | 220,917,138 | 11 |
[
"nestjs",
"nest"
] | I would like to participate in collaborating on the project, I suggest that it is important to create a roadmap and an organization for them. | Roadmap | https://api.github.com/repos/nestjs/nest/issues/7/comments | 2 | 2017-04-06T16:16:31Z | 2019-09-25T14:10:35Z | https://github.com/nestjs/nest/issues/7 | 219,952,711 | 7 |
[
"nestjs",
"nest"
] | @kamilmysliwiec
First of all I'd like to say I really like the idea and your work so far, secondly: what are you plans for the future of the project? Here are some questions I'd love to hear your answers to.
1. Do you plan to move it to it's own GitHub organization (eg. nest/nest)?
2. Do you intend to create a ... | Future of the framework, contributions, evangelism | https://api.github.com/repos/nestjs/nest/issues/6/comments | 45 | 2017-04-06T14:01:26Z | 2019-09-23T22:11:03Z | https://github.com/nestjs/nest/issues/6 | 219,909,075 | 6 |
[
"nestjs",
"nest"
] | Hello,
First of all congrats for the initiative !
I'm very enthusiastic about the project and I'd like to help you by contributing.
I cloned the repository and I started to fix sinon warnings in the unit tests.
Tell me if you need ! ;-) | Can I help you by contributing ? | https://api.github.com/repos/nestjs/nest/issues/4/comments | 3 | 2017-04-05T10:06:49Z | 2019-09-25T13:11:53Z | https://github.com/nestjs/nest/issues/4 | 219,531,826 | 4 |
[
"nestjs",
"nest"
] | Congratulations, it's a cool framework.
I'm need restrict access to route on role-based.
This works for me on express:
```
app.get('/dashboard', middleware.hasRole(['admin', 'creator', 'editor']), function(req,res){});
```
I have tried to implement a NestMiddleware, but I can not pass the parameters to it:
... | How pass params to the Middleware? | https://api.github.com/repos/nestjs/nest/issues/3/comments | 5 | 2017-04-04T01:25:50Z | 2019-09-25T12:10:45Z | https://github.com/nestjs/nest/issues/3 | 219,115,461 | 3 |
[
"nestjs",
"nest"
] | Hi @kamilmysliwiec ! Thanks for your framework, it looks very promising!
I just wanted to report this error with typescript typings. When I run tsc from the command line with the following tsconfig.json configuration I get the error below:
`node_modules/nest.js/nest-factory.d.ts(10,63): error TS2304: Cannot find ... | tsc error | https://api.github.com/repos/nestjs/nest/issues/2/comments | 3 | 2017-04-01T13:50:00Z | 2019-09-25T14:10:39Z | https://github.com/nestjs/nest/issues/2 | 218,697,024 | 2 |
[
"nestjs",
"nest"
] | hi,
i see that you have included by default socket.io.. i'm thinking about a cluster scenario where i have a load balancer that is splitting load between nodes in a round-robin fashion. in that case the HTTP fallback of socket.io it will fail because requests will hit everytime different nodes, that will require to ... | websocket cluster | https://api.github.com/repos/nestjs/nest/issues/1/comments | 4 | 2017-03-27T18:44:29Z | 2019-09-25T09:11:30Z | https://github.com/nestjs/nest/issues/1 | 217,338,287 | 1 |
[
"cybergarage",
"mupnp"
] | Note: this all based on latest master branch. I used default configure options except I built with ASAN when fuzzing
. Given that a basic HTTP server (which does not even consider the request) is affected, I assume anything that uses this HTTP library like the SOAP server for UPNP would also be affected.
I found ... | Crashes in HTTP server found with fuzzing | https://api.github.com/repos/cybergarage/mupnp/issues/21/comments | 1 | 2023-12-28T21:05:35Z | 2023-12-30T04:36:23Z | https://github.com/cybergarage/mupnp/issues/21 | 2,058,820,284 | 21 |
[
"cybergarage",
"mupnp"
] | We would like to develop UPnP Media Player on iOS.
Unfortunately, sample code in Objective-C has build issue.
- Development Environment
OS : macOS Mojave (Ver.10.14.6)
IDE : Xcode (Ver.10.3)
I retrieved your mupnp project from github.
And I successfully build mupnp library according to INSTALL documentation.... | Objective-C sample code build failed | https://api.github.com/repos/cybergarage/mupnp/issues/20/comments | 0 | 2020-02-19T04:57:34Z | 2020-02-19T04:57:34Z | https://github.com/cybergarage/mupnp/issues/20 | 567,316,451 | 20 |
[
"cybergarage",
"mupnp"
] | Hi,Is there a solution to this problem? It has affected the use.
<img width="711" alt="image" src="https://user-images.githubusercontent.com/12134648/69403460-97d57d00-0d35-11ea-9b73-624c3224c6ec.png">
| Crash Bug | https://api.github.com/repos/cybergarage/mupnp/issues/19/comments | 0 | 2019-11-22T06:38:09Z | 2019-11-22T06:38:09Z | https://github.com/cybergarage/mupnp/issues/19 | 527,016,715 | 19 |
[
"cybergarage",
"mupnp"
] | Hi Satoshi,
I am using your library for the ssdp component.
On startup the ssdp notify messages are being sent to port 1900.
However, when an msearch is sent from various browsers/routers, I can see the msearch on wireshark going out on port 1900. However the response is not recognised by wireshark as an SDP packet... | MSEARCH response | https://api.github.com/repos/cybergarage/mupnp/issues/18/comments | 0 | 2017-01-16T17:31:48Z | 2017-01-16T17:33:05Z | https://github.com/cybergarage/mupnp/issues/18 | 201,079,566 | 18 |
[
"cybergarage",
"mupnp"
] | Excurse me, what can I do To make the projet suport IPV6?
| Can suport IPV6? | https://api.github.com/repos/cybergarage/mupnp/issues/17/comments | 0 | 2016-06-01T09:14:26Z | 2016-06-01T09:14:26Z | https://github.com/cybergarage/mupnp/issues/17 | 157,859,017 | 17 |
[
"cybergarage",
"mupnp"
] | log:
``` log
(gdb) bt
#0 0x000000000041d234 in mupnp_action_post (action=0x7fffb8024b80) at /home/kevin/ClionProjects/mupnp-av/mupnp/control/action_ctrl.c:100
#1 0x000000000041cef3 in subdevicemanager_play_all (subDeviceManager=0x7a8a10) at /home/kevin/ClionProjects/mupnp-av/subdevicemanager/subdevicemanager.c:294
#... | When making a rootdevice and a controlpoint work together crashed | https://api.github.com/repos/cybergarage/mupnp/issues/16/comments | 0 | 2016-03-28T03:29:51Z | 2016-03-28T03:29:51Z | https://github.com/cybergarage/mupnp/issues/16 | 143,883,909 | 16 |
[
"cybergarage",
"mupnp"
] | After cloning the source code, open `examples/upnpbrowser/ios/upnpbrowser.xcodeproj`, build.
Whether I miss something important or not?
When I use the script `./configure_macosx`, then make, it shows following error:
> $ make
> CDPATH="${ZSH_VERSION+.}:" && cd . && aclocal-1.15
> /bin/sh: aclocal-1.15: command not ... | iOS example build with error: CyberLink/UPnp.h file not found | https://api.github.com/repos/cybergarage/mupnp/issues/14/comments | 3 | 2015-12-23T03:05:55Z | 2016-01-15T08:57:32Z | https://github.com/cybergarage/mupnp/issues/14 | 123,595,428 | 14 |
[
"cybergarage",
"mupnp"
] | Shows this error message: `ERR_CONNECT_FAIL`
| website www.cybergarage.org could not open | https://api.github.com/repos/cybergarage/mupnp/issues/13/comments | 1 | 2015-12-23T02:55:04Z | 2015-12-23T07:06:06Z | https://github.com/cybergarage/mupnp/issues/13 | 123,594,674 | 13 |
[
"cybergarage",
"mupnp"
] | I opened upnpbrowser example for ios and project doesn't build because there is no <CyberLink/UPnP.h>.
I found that included project ( ../../../lib/ios/xcode/clinkc.xcodeproj)is not in repository
| No project clinkc.xcodeproj in libs/ios | https://api.github.com/repos/cybergarage/mupnp/issues/12/comments | 3 | 2015-05-04T10:24:06Z | 2016-01-12T08:10:57Z | https://github.com/cybergarage/mupnp/issues/12 | 72,985,537 | 12 |
[
"cybergarage",
"mupnp"
] | For some reason `make install` fails on OSX (10.9.3):
```
Making install in include
make[2]: Nothing to be done for `install-exec-am'.
-d '/usr/local/include'
/bin/sh: -d: command not found
make[2]: *** [install-nobase_includeHEADERS] Error 1
make[1]: *** [install-am] Error 2
make: *** [install-recursive] Error 1
```... | make install fails on OSX | https://api.github.com/repos/cybergarage/mupnp/issues/11/comments | 1 | 2014-07-09T13:34:10Z | 2015-09-03T04:30:19Z | https://github.com/cybergarage/mupnp/issues/11 | 37,464,241 | 11 |
[
"cybergarage",
"mupnp"
] | Hi cybergarage,
I have been using cyberlink in iOS project for a while, and I noticed in some networks I have issue with device discovery.
I narrowed down an issues and found that after parsing SSD-header, when ssdp listener thread is trying to retrieve a device description it just blocks on connect, in the case when ... | csocket - connect() needs to have a timeout mechanism (for TCP-connection drop) | https://api.github.com/repos/cybergarage/mupnp/issues/10/comments | 0 | 2014-07-03T08:32:11Z | 2014-07-04T05:40:26Z | https://github.com/cybergarage/mupnp/issues/10 | 37,056,485 | 10 |
[
"cybergarage",
"mupnp"
] | Hi Satoshi,
following is my state variable.
When I try to get value using CGUPnpStateVariable it returns NULL.
<stateVariable sendEvents="no">
<name>HI_UPNP_VAR_VinpuServerURI</name>
<dataType>uri</dataType>
<defaultValue>Vinput://0.0.0.0:8822/</defaultValue>
</stateVariable>
Is there a way to get this ?
| When Trying to get StateVariable Value with DataType = uri the NULL is returned | https://api.github.com/repos/cybergarage/mupnp/issues/9/comments | 0 | 2014-06-02T10:17:43Z | 2014-06-02T10:17:43Z | https://github.com/cybergarage/mupnp/issues/9 | 34,760,321 | 9 |
[
"cybergarage",
"mupnp"
] | Hi Satoshi,
We can get services array from device but we are not able to get port of the service in objective-c wrapper.
Could you please update wrapper to get service port ?
| No method to get Service Port and address | https://api.github.com/repos/cybergarage/mupnp/issues/8/comments | 6 | 2014-05-15T09:23:45Z | 2014-05-21T08:48:29Z | https://github.com/cybergarage/mupnp/issues/8 | 33,568,304 | 8 |
[
"cybergarage",
"mupnp"
] | There is no sample code for how to send command to uPnp supported TV's
| No Sample for TV Remote Control | https://api.github.com/repos/cybergarage/mupnp/issues/7/comments | 0 | 2014-05-12T08:46:35Z | 2014-05-12T08:46:35Z | https://github.com/cybergarage/mupnp/issues/7 | 33,289,737 | 7 |
[
"cybergarage",
"mupnp"
] | Link https://github.com/cybergarage/CyberLink4C/blob/master/std/av/wrapper/objc/CyberLink/CGUpnpAvServer.m
Line : 164
if (![self browse:aObjectId browseFlag:@"BrowseDirectChildren" options:[NSArray array]])
New:
if (![self browse:aObjectId browseFlag:@"BrowseDirectChildren" options:[NSDictionary dictionary]])
Origin... | Have a error GUpnpAvServer.m | https://api.github.com/repos/cybergarage/mupnp/issues/4/comments | 1 | 2014-03-28T09:06:00Z | 2014-03-29T13:47:00Z | https://github.com/cybergarage/mupnp/issues/4 | 30,371,664 | 4 |
[
"cybergarage",
"mupnp"
] | include/cybergarage/upnp/std/av/cmd5.h:15:9: '_CG_CLINKCAV_MD5_H_' is used as a header guard here, followed by #define of a different macro
So, can i update here?
| Hey, how about this for clang? | https://api.github.com/repos/cybergarage/mupnp/issues/3/comments | 1 | 2014-03-25T14:04:10Z | 2014-03-26T21:37:49Z | https://github.com/cybergarage/mupnp/issues/3 | 30,125,583 | 3 |
[
"cybergarage",
"mupnp"
] | Hi,
I use clinkc + objective c wrapper within a iOS 5 project.
I browse items with the BrowseDirectChildren action.
```
CGUpnpAction* action = [contentDirectory getActionForName:@"Browse"];
if (action == nil)
{
res.resultState = UPnPBrowserResultState_NoAction;
return res;
}
[action setArgumentValue:objec... | Buffalo Link Station & EyeConnect items without res elements | https://api.github.com/repos/cybergarage/mupnp/issues/1/comments | 0 | 2012-08-29T08:31:49Z | 2012-08-29T08:31:49Z | https://github.com/cybergarage/mupnp/issues/1 | 6,521,263 | 1 |
[
"matomo-org",
"matomo"
] | ### What happened?
When setting a user-id (e.g. on login) a new session is started when the User-ID is already known.

### What should happen?
The ongoing session should not be discarded in favor of a new session for the known ... | [Bug] When setting a user-id (e.g. on login) a new session is started when the User-ID is already known | https://api.github.com/repos/matomo-org/matomo/issues/23379/comments | 0 | 2025-06-18T16:39:37Z | 2025-06-18T20:48:15Z | https://github.com/matomo-org/matomo/issues/23379 | 3,157,550,465 | 23,379 |
[
"matomo-org",
"matomo"
] | ## Summary
To make it easier to share links with colleagues, it would be nice to have compact, pretty URLs that are easier to read.
For example, currently the URL to view a site's search results for year 2024 looks like this:
> `https://matomo.example.com/index.php?module=CoreHome&action=index&date=2024-06-01&period=... | Use clean, concise URLs in the analytics UI | https://api.github.com/repos/matomo-org/matomo/issues/23376/comments | 1 | 2025-06-17T22:53:04Z | 2025-06-19T02:28:46Z | https://github.com/matomo-org/matomo/issues/23376 | 3,154,946,923 | 23,376 |
[
"matomo-org",
"matomo"
] | ### What happened?
Visitors with private ip (e.g. internal application, VPN...) are labeled from `United States`.
### What should happen?
Label visitors with private ip from `Intranet|Private|Local|Internal|...` + custom flag/icon instead of the us flag.
It does not make much sense, but may additionally reserved i... | [Bug] Private IP (e.g. intranet) labeled as "United States" | https://api.github.com/repos/matomo-org/matomo/issues/23375/comments | 3 | 2025-06-17T22:44:13Z | 2025-06-21T02:53:47Z | https://github.com/matomo-org/matomo/issues/23375 | 3,154,934,918 | 23,375 |
[
"matomo-org",
"matomo"
] | ### What happened?
When opening row evolution and trying to compare the evolution of two rows, the feature doesn't work (only shows the new row after clicking row comparison icon), if you changed to another page of the report (e.g. clicked "Next") before clicking on the other row to compare.
### What should happen?
... | [Bug] Row evolution comparison doesn't work, if other row on another page | https://api.github.com/repos/matomo-org/matomo/issues/23365/comments | 0 | 2025-06-12T13:56:26Z | 2025-06-13T03:37:08Z | https://github.com/matomo-org/matomo/issues/23365 | 3,140,410,605 | 23,365 |
[
"matomo-org",
"matomo"
] | Hello,
on my websites there are many vistors with a visit duration of 0-10 seconds. This visits are uninteresting for me. It needs a tool to start the tracking, but sending the data not until after x seconds. Like a timeout.
An own timeout is not so good, because it is only possible to set a timeout for the whole tra... | Start tracking but wait before sending data | https://api.github.com/repos/matomo-org/matomo/issues/23361/comments | 4 | 2025-06-11T17:24:25Z | 2025-06-20T10:12:07Z | https://github.com/matomo-org/matomo/issues/23361 | 3,137,594,635 | 23,361 |
[
"matomo-org",
"matomo"
] | Hello,
We encountered a technical issue yesterday, the 9th of June, after purchasing the "Advertising Conversion Export" plugin and would appreciate your assistance. The problem is twofold:
1. Disappeared Heatmap Plugin
We have been using your Heatmaps plugin for some time. After pasting in the new license key for th... | Issue with plugins | https://api.github.com/repos/matomo-org/matomo/issues/23360/comments | 3 | 2025-06-11T06:54:10Z | 2025-06-11T12:48:39Z | https://github.com/matomo-org/matomo/issues/23360 | 3,135,700,846 | 23,360 |
[
"matomo-org",
"matomo"
] | The Advertising Conversion Export plugin currently allows filtering exports based on **visit**-scoped custom dimensions, but does not support **action**-scoped custom dimensions.
This limitation prevents users from segmenting conversion exports based on metadata tied to specific ecommerce actions or hits—such as produ... | Advertising Conversion Export by action-scoped custom dimensions | https://api.github.com/repos/matomo-org/matomo/issues/23350/comments | 1 | 2025-06-06T03:19:33Z | 2025-06-15T21:40:40Z | https://github.com/matomo-org/matomo/issues/23350 | 3,123,503,302 | 23,350 |
[
"matomo-org",
"matomo"
] | The Advertising Conversion Export plugin currently exports fields such as _Google Click ID, Conversion Name, Time, Value, and Currency_. However, it does not include the _ecommerceOrderId_ (transaction ID), even though this ID is received by Matomo when ecommerce tracking is implemented.
Having the transaction ID in t... | Include OrderId in Advertising Conversion Export | https://api.github.com/repos/matomo-org/matomo/issues/23349/comments | 1 | 2025-06-06T03:02:54Z | 2025-06-15T21:40:41Z | https://github.com/matomo-org/matomo/issues/23349 | 3,123,480,882 | 23,349 |
[
"matomo-org",
"matomo"
] | ### What happened?
* Go to Users Manager
* Edit a user
* Click back button
It will take you back to the page you were before the users manager
### What should happen?
You should see the list of users again.
### How can this be reproduced?
see steps in what happened.
### Matomo version
5.3.2
### PHP version
_N... | [Bug] Back button in Users Manager doesn't work properly | https://api.github.com/repos/matomo-org/matomo/issues/23346/comments | 0 | 2025-06-05T05:23:46Z | 2025-06-06T02:36:15Z | https://github.com/matomo-org/matomo/issues/23346 | 3,119,885,532 | 23,346 |
[
"matomo-org",
"matomo"
] | ### What happened?
I accidentally activated the "TreeMap View" on the Operating system versions widget.
<img width="717" alt="Image" src="https://github.com/user-attachments/assets/e79a87c5-c93f-4696-b0b4-e7b9b24f5d06" />
The request to
https://XXXX/index.php?date=2025-05-15&module=DevicesDetection&format=html&actio... | [Bug] Activating TreeMap on Visitors/Software/Operating System Versions does not work | https://api.github.com/repos/matomo-org/matomo/issues/23345/comments | 2 | 2025-06-04T10:49:11Z | 2025-06-05T05:51:28Z | https://github.com/matomo-org/matomo/issues/23345 | 3,117,381,025 | 23,345 |
[
"matomo-org",
"matomo"
] | ### What happened?
I'm querying the Live.getLastVisitsDetails API with offset/limit, because it returns >100k results. For the selected period, 110.492 visits are expected (VisitSummary.getVisits for the same period and also a count(*) on the log_visit table for this period (including timezone) returns that exact numb... | [Bug] API Live.getLastVisitsDetails return incorrect results because dates are changed | https://api.github.com/repos/matomo-org/matomo/issues/23342/comments | 1 | 2025-06-03T17:00:34Z | 2025-06-13T14:33:44Z | https://github.com/matomo-org/matomo/issues/23342 | 3,114,758,243 | 23,342 |
[
"matomo-org",
"matomo"
] | Currently, in the "Goals > Multi Attribution" report, subtables (such as under Channels > Websites) are constrained by the row limit set in the dropdown at the bottom-right of the report view.

However, when the number of sub-ro... | Improve Subtable Visibility in Multi-Attribution Goals Report | https://api.github.com/repos/matomo-org/matomo/issues/23331/comments | 0 | 2025-05-30T01:27:14Z | 2025-06-01T21:38:15Z | https://github.com/matomo-org/matomo/issues/23331 | 3,101,844,110 | 23,331 |
[
"matomo-org",
"matomo"
] | We would like to ensure that the opt-out iframe (used to allow users to opt out of Matomo tracking) meets accessibility standards in accordance with:
[EN 301 549](https://www.wcag.com/compliance/en-301-549/) (harmonised EU standard)
[WCAG 2.1 AA](https://www.w3.org/TR/WCAG21/) (required by the European Accessibility ... | Accessibility Audit for Opt-Out Iframe to Ensure WCAG 2.1 AA / EN 301 549 Compliance | https://api.github.com/repos/matomo-org/matomo/issues/23327/comments | 0 | 2025-05-28T03:01:46Z | 2025-05-28T22:55:36Z | https://github.com/matomo-org/matomo/issues/23327 | 3,095,828,995 | 23,327 |
[
"matomo-org",
"matomo"
] | Matomo user has multiple premium plugins installed.
They want a feature that will disable plugins for a non Super User.
Example: They have Heatmap plugin intalled, when a non super user logged in, they don't want that user to see the Heatmap plugin on their dashboard.
| Able to hide plugins to none super user | https://api.github.com/repos/matomo-org/matomo/issues/23319/comments | 0 | 2025-05-27T00:03:19Z | 2025-05-27T20:58:57Z | https://github.com/matomo-org/matomo/issues/23319 | 3,092,227,906 | 23,319 |
[
"matomo-org",
"matomo"
] | ### What happened?
See screenshot

All metrics are showing in the mobile app but the graph isn't working for Unique visitor, Users metric and Max actions in one metric. The graph is showing for some other metrics.
This is eg ... | [Bug] ImageGraph not working for unique visitors, users and another metric | https://api.github.com/repos/matomo-org/matomo/issues/23306/comments | 0 | 2025-05-20T06:17:39Z | 2025-05-22T01:29:28Z | https://github.com/matomo-org/matomo/issues/23306 | 3,075,793,058 | 23,306 |
[
"matomo-org",
"matomo"
] | Hi Team,
Description:
In the Matomo UI, within a specific goal report, the word "and" is hardcoded and not available for translation.
Steps to Reproduce:
Open a Matomo instance in a non-English language (e.g., French or German).
, or deleted (los... | Allow archiving for a segment to be disabled | https://api.github.com/repos/matomo-org/matomo/issues/23288/comments | 0 | 2025-05-13T09:36:40Z | 2025-05-22T00:39:41Z | https://github.com/matomo-org/matomo/issues/23288 | 3,059,400,078 | 23,288 |
[
"matomo-org",
"matomo"
] | ### What happened?
I was trying to set `idgoal=1` on one of my Tracking-API requests. Matomo returns error 400, the event is not tracked and debug outputs an error.
### What should happen?
The event is tracked correctly and no error is produced.
### How can this be reproduced?
`?idsite=1&rec=1&apiv=1&send_image=0&... | [Bug] idGoal causes an error | https://api.github.com/repos/matomo-org/matomo/issues/23287/comments | 3 | 2025-05-12T18:48:03Z | 2025-05-15T07:03:06Z | https://github.com/matomo-org/matomo/issues/23287 | 3,057,839,831 | 23,287 |
[
"matomo-org",
"matomo"
] | ### What happened?
First of all, thanks for your great software and all of your work!
## Description
We use `plugin:list` to keep the non core plugins up to date, but i noticed 2 plugins which are not listed via the cli `plugin:list`, which seems not intiutive.
For example the `LogViewer` and `LoginLdap` plugins ar... | [Bug] `plugin:list` missing plugins | https://api.github.com/repos/matomo-org/matomo/issues/23286/comments | 1 | 2025-05-12T12:23:33Z | 2025-05-19T23:58:57Z | https://github.com/matomo-org/matomo/issues/23286 | 3,056,786,240 | 23,286 |
[
"matomo-org",
"matomo"
] | ### What happened?
According to this user: https://wordpress.org/support/topic/problem-with-open-visitor-profile-with-screen-reader/#post-18410699, iPhones do not read the export button's tooltip in reports.
Note: I do not have an iPhone so I could not reproduce, but I did find a fix and the user in question was able... | [Bug] report export button is not read out loud by screen readers | https://api.github.com/repos/matomo-org/matomo/issues/23285/comments | 0 | 2025-05-12T08:04:40Z | 2025-05-16T00:59:50Z | https://github.com/matomo-org/matomo/issues/23285 | 3,056,021,828 | 23,285 |
[
"matomo-org",
"matomo"
] | ### What happened?
ChatGPT visitors are inside "campaing" channel type filter.
### What should happen?
They should be in search engines or in the new category.
### How can this be reproduced?
Create segment with channel type "camaing" and get users with "ChatGPT.com" source.
### Matomo version
Matomo 5.3.2
### ... | [Bug] chatgpt users are in "compain" filter | https://api.github.com/repos/matomo-org/matomo/issues/23283/comments | 1 | 2025-05-10T19:55:19Z | 2025-06-05T02:30:58Z | https://github.com/matomo-org/matomo/issues/23283 | 3,054,493,182 | 23,283 |
[
"matomo-org",
"matomo"
] | ### What happened?
Right after upgrade to latest version 5.3.2 views are not counting.
After network inspection, it seems the script is blocked by the browser.
It's not about ad blockers because views are now 0 for all my websites.
```
POST | https://matomo.thevegcat.com/matomo.php?action_name=The Vegan Catalog&idsit... | [Bug] Not working after upgrade | https://api.github.com/repos/matomo-org/matomo/issues/23280/comments | 8 | 2025-05-09T10:47:36Z | 2025-05-12T11:56:29Z | https://github.com/matomo-org/matomo/issues/23280 | 3,051,775,949 | 23,280 |
[
"matomo-org",
"matomo"
] | Hello dear Matomo team 👋🏾
The issue title basically states already the full question. It seems very odd and we don't know how to interpret the data. The two metrics are actually quite far off. Like 20% difference for many of our events.
The issue is visible within the user interface at `Events` under `Behavior` in... | Number of unique visitors for an event is higher than number of visits | https://api.github.com/repos/matomo-org/matomo/issues/23272/comments | 0 | 2025-05-07T11:05:16Z | 2025-05-08T00:35:47Z | https://github.com/matomo-org/matomo/issues/23272 | 3,045,591,185 | 23,272 |
[
"matomo-org",
"matomo"
] | ### What happened?
Matomo user reported that the "Visits per hour in the site's time zone" chart inconsistently displays conversion data. Conversions are only shown for days that include at least one conversion during the first hour after midnight (00:00–01:00). If no conversions occur in that hour, the conversion met... | [Bug] Inconsistent Conversion Display in "Visits per Hour" Chart Based on Midnight Activity | https://api.github.com/repos/matomo-org/matomo/issues/23267/comments | 0 | 2025-05-05T06:03:59Z | 2025-05-05T22:15:59Z | https://github.com/matomo-org/matomo/issues/23267 | 3,038,680,612 | 23,267 |
[
"matomo-org",
"matomo"
] | **Background**
Matomo has a blue Info Alert
`Report does not support segmentation. The data displayed is your standard, unsegmented report data.`
**Scope of ticket**
The scope of this ticket is to make the blue alert appear in both of the cases below.
**Current Matomo behavior**
Good! If Google Search Console is en... | If a segment is applied then the referrers report should always show the blue information panel, even if GSC is not set up | https://api.github.com/repos/matomo-org/matomo/issues/23262/comments | 1 | 2025-05-01T16:18:07Z | 2025-05-01T23:38:41Z | https://github.com/matomo-org/matomo/issues/23262 | 3,034,197,410 | 23,262 |
[
"matomo-org",
"matomo"
] | <!-- Please provide a short summary of the issue in the *Title* above -->
<!-- Important: Please contact the Matomo community forum for questions: https://forum.matomo.org/ -->
## Summary
<!-- Please provide a detailed summary of the feature -->
Matomo offers quite a few widgets that can be added to the dashboard. In ... | Search bar in Add Widget dropdown | https://api.github.com/repos/matomo-org/matomo/issues/23254/comments | 0 | 2025-04-27T21:57:40Z | 2025-04-28T09:31:16Z | https://github.com/matomo-org/matomo/issues/23254 | 3,023,345,585 | 23,254 |
[
"matomo-org",
"matomo"
] | ### What happened?
User found that there are some issues with the funnel help button that helps matching patterns. First issue is the following error returned:

The step configuration is:
 does not work for Goal steps | https://api.github.com/repos/matomo-org/matomo/issues/23242/comments | 3 | 2025-04-22T07:38:58Z | 2025-04-24T08:24:36Z | https://github.com/matomo-org/matomo/issues/23242 | 3,010,213,964 | 23,242 |
[
"matomo-org",
"matomo"
] | There are several actions in the admin panel that require password confirmation due to security reasons.
The login process itself should be considered as an action that sets the password as confirmed. Right now, this is not the case, and we can have a bad UX when logging in to the platform, trying to execute a protect... | Authentication process should mark password as confirmed | https://api.github.com/repos/matomo-org/matomo/issues/23241/comments | 0 | 2025-04-21T18:14:50Z | 2025-04-22T05:31:47Z | https://github.com/matomo-org/matomo/issues/23241 | 3,009,003,057 | 23,241 |
[
"matomo-org",
"matomo"
] | ## Summary
Let us specify `MATOMO_SUPERUSER_USERNAME` and `MATOMO_SUPERUSER_PASSWORD` as environment variable, and let it pre-fill the setup wizard, like we can [database settings](https://github.com/matomo-org/matomo/pull/13676).
## Justification
I am writing an [ansible role](https://github.com/acterglobal/ansible-r... | Read username and password from environment variables | https://api.github.com/repos/matomo-org/matomo/issues/23240/comments | 2 | 2025-04-19T11:26:24Z | 2025-04-22T07:25:35Z | https://github.com/matomo-org/matomo/issues/23240 | 3,006,378,612 | 23,240 |
[
"matomo-org",
"matomo"
] | <!-- Please provide a short summary of the issue in the *Title* above -->
Considering the recent importence given to AI, with GEO and so on, it would be useful to consider trafic from AIs as a new acquisition channel.
<!-- Important: Please contact the Matomo community forum for questions: https://forum.matomo.org/ --... | [Feature request] New acquisition chanel type for AI trafic | https://api.github.com/repos/matomo-org/matomo/issues/23236/comments | 1 | 2025-04-17T08:13:36Z | 2025-04-17T09:02:11Z | https://github.com/matomo-org/matomo/issues/23236 | 3,001,774,396 | 23,236 |
[
"matomo-org",
"matomo"
] | It would be nice if matomo offered a GA4-like ecommerce "transaction" report.
I'm sure this could be done using the Custom Reports plugin, but something as simple as a basic transaction report should not require custom reporting.
| [Feature Request] GA4-like ecommerce transaction report | https://api.github.com/repos/matomo-org/matomo/issues/23233/comments | 1 | 2025-04-16T13:05:16Z | 2025-04-21T03:14:17Z | https://github.com/matomo-org/matomo/issues/23233 | 2,999,600,812 | 23,233 |
[
"matomo-org",
"matomo"
] | ### What happened?
I didn't know where else to submit this issue, feel free to move it where it should be.
I'm one of the translators for the Greek language for Matomo. It's been 3 weeks now that the weblate project is frozen, since the repository cannot accept commits, it is shown that it's in a locked state.
Is th... | [Bug] Translation repository at weblate is locked | https://api.github.com/repos/matomo-org/matomo/issues/23232/comments | 4 | 2025-04-15T18:10:15Z | 2025-04-21T21:28:55Z | https://github.com/matomo-org/matomo/issues/23232 | 2,997,223,104 | 23,232 |
[
"matomo-org",
"matomo"
] | If you open this report:
Acquisition > All Channels > Referrers
you will see a blue informational panel that says "Segment will not be applied in this report".
Why not?
What would it take to apply a segment to this report?
Here is that report in Matomo demo:
.
**Suggested improvement**
When https://matomo.org/changelog/mato... | Add a way for users to retrieve info about changed/added columns of the database | https://api.github.com/repos/matomo-org/matomo/issues/23218/comments | 0 | 2025-04-10T16:38:21Z | 2025-04-10T20:44:14Z | https://github.com/matomo-org/matomo/issues/23218 | 2,986,263,757 | 23,218 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.